/**
 * Main Stylesheet for elprofesionaldelhogar.com
 * Premium, Modern, SEO-optimized design
 */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
:root {
    /* Brand Colors - Premium Palette */
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #e6f0fa;
    --secondary-color: #ff6b35;
    --secondary-dark: #e55a2b;
    --accent-color: #00d2d3;

    /* Neutral Colors */
    --dark: #1a1a1a;
    --text-color: #2c3e50;
    --text-light: #636e72;
    --light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e1e8ed;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    /* UI Elements */
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --box-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header Height */
    --header-height: 80px;
    --topbar-height: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--white);
    height: var(--topbar-height);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.top-bar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: var(--spacing-md);
}

.top-info a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-info a:hover {
    color: var(--white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.site-header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav>ul>li>a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav>ul>li>a:hover::after,
.main-nav>ul>li>a.active::after {
    width: 100%;
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li>a.active {
    color: var(--primary-color);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 260px;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.dropdown i {
    width: 24px;
    text-align: center;
    color: var(--primary-color);
}

/* Header CTA */
.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding-top: var(--spacing-xl);
    margin-top: auto;
}

.footer-top {
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
}

/* Footer Logo - Same as Header */
.footer-brand .logo a {
    color: var(--white);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand .brand-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    max-width: 300px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Links Footer */
.social-links-footer {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links-footer a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-links-footer a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info strong {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-contact-info a:hover {
    color: var(--white);
}

.footer-contact-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    padding: var(--spacing-md) 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-lg);
}

.footer-bottom p {
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
        /* Hide desktop nav */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .top-bar {
        display: none;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.mobile-nav a:hover {
    color: var(--primary-color);
    background: var(--light);
}

/* Additions to style.css for Home Page improvements */

/* Service Cards Premium Look */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top-width: 4px;
    /* Color set inline */
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 0.75rem;
}

/* Hero Improvements */
.hero {
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Trust Badges Premium */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.badge {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.badge span {
    font-weight: 600;
    color: var(--dark);
}

/* Stats Section Premium */
.stats-section {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Features/Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--light);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--dark);
    display: block;
}

.testimonial-service {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px);
}

/* Inner Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-icon-large {
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.2);
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-features i {
    color: var(--accent-color);
}

.page-header-cta {
    margin-top: 2rem;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.breadcrumbs span:not(.separator) {
    color: var(--text-color);
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--text-light);
    user-select: none;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

/* Main Content Styling */
/* SEO Text Content - Unique, personalized SEO text with HTML enrichment */
.seo-text-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05rem;
}

.seo-text-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.seo-text-content p:first-child {
    font-size: 1.1rem;
    color: var(--text-color);
}

.seo-text-content p:last-child {
    margin-bottom: 0;
}

.seo-text-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.seo-text-content h2:first-child {
    margin-top: 0;
}

.seo-text-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.seo-text-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.seo-text-content em {
    font-style: italic;
    color: var(--text-light);
}

/* Responsive adjustments for SEO text */
@media (max-width: 768px) {
    .seo-text-content {
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .seo-text-content p {
        text-align: left;
    }
    
    .seo-text-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .seo-text-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
}

.intro-box {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2.5rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.benefits-list i {
    color: var(--success-color, #28a745);
    margin-top: 0.25rem;
}

/* Cities Grid */
.cities-by-province h3 {
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.city-link {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.city-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.city-link i {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.city-link small {
    color: var(--text-light);
    margin-top: auto;
}

/* Sidebar */
.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.sidebar-card h3,
.sidebar-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-form-card {
    border-top: 4px solid var(--primary-color);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Trust List in Sidebar */
.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Nearby Cities */
.nearby-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.nearby-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.nearby-city {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nearby-city:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Inner Pages */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
        /* Show sidebar (contact form) first on mobile? Maybe not, usually content first */
    }

    .page-header {
        padding: 3rem 0;
        text-align: center;
    }

    .page-header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .service-features {
        justify-content: center;
    }

    .page-header::after {
        display: none;
    }
}

/* 404 Error Page Styles */
.error-404 {
    padding: 6rem 0;
    text-align: center;
    background: var(--light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.error-icon {
    font-size: 4rem;
    color: var(--warning-color, #ffc107);
    margin-bottom: 1.5rem;
}

.error-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.error-actions {
    margin-bottom: 3rem;
}

.error-suggestions h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.services-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.service-quick-link {
    background: var(--light);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-quick-link:hover {
    background: var(--white);
    box-shadow: var(--box-shadow);
    transform: translateY(-2px);
}

.error-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.phone-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================================
   PREMIUM MOBILE & UX ENHANCEMENTS
   ============================================ */

/* 1. Sticky Mobile CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 9999;
    justify-content: space-between;
    gap: 1rem;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.mobile-sticky-cta .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 8px;
}

/* 2. Enhanced Card Hover Effects */
.service-card,
.feature,
.testimonial-card,
.sidebar-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease;
}

.service-card:hover,
.feature:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

/* 3. Typography Refinements */
h1 {
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-weight: 300;
    letter-spacing: -0.01em;
}

/* 4. Micro-animations */
@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 102, 204, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
}

.pulse {
    animation: pulse-soft 2s infinite;
}

/* 5. Mobile Optimizations */
@media (max-width: 768px) {

    /* Show Sticky CTA */
    .mobile-sticky-cta {
        display: flex;
    }

    /* Adjust spacing to prevent content being hidden behind sticky bar */
    body {
        padding-bottom: 80px;
    }

    /* Typography adjustments */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Hero adjustments */
    .hero {
        padding: 4rem 0 2rem;
        text-align: center;
    }

    .hero-content {
        padding: 0 1rem;
    }

    /* Stack buttons in hero */
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Improved Grid Spacing */
    .services-grid,
    .testimonials-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Features Grid - 2 columns on tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Card adjustments */
    .service-card {
        padding: 1.5rem;
    }

    /* Hide top bar on mobile to save space */
    .top-bar {
        display: none;
    }

    /* Adjust header height */
    :root {
        --header-height: 60px;
    }

    .site-header {
        height: var(--header-height);
    }

    .logo a {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* 6. Form Enhancements */
.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 102, 204, 0.1);
}

/* 7. Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Money Page (Service + City) Styles */

/* 1. City Hero Section */
.city-hero {
    padding: 4rem 0 6rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    /* Optional texture */
    opacity: 0.1;
}

.city-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.city-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.city-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* 2. Floating Form */
.city-hero-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

.city-hero-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.city-hero-form p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.compact-form .form-row {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* 3. Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-weight: 600;
    color: var(--text-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item i {
    color: #ffc107;
    font-size: 1.2rem;
}

/* 4. Content Improvements */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.coverage-box {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

/* Coverage Section Professional */
.coverage-section-professional {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    margin: 3rem 0;
}

.coverage-header-professional {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.coverage-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.coverage-header-professional h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coverage-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.coverage-content-professional {
    color: var(--text-color);
    line-height: 1.7;
}

.coverage-content-professional p {
    margin: 0;
}

/* Coverage Map */
.coverage-map-container {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.coverage-map {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--light);
    z-index: 0;
}

/* Leaflet custom marker */
.city-marker-custom {
    background: transparent;
    border: none;
}

.city-marker-inner {
    width: 24px;
    height: 24px;
    background: #0f3460;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #0f3460, 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        box-shadow: 0 0 0 2px #0f3460, 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(15, 52, 96, 0.3), 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 0 2px #0f3460, 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    border-radius: 4px;
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-family: var(--font-primary);
}

.leaflet-popup-content strong {
    color: var(--primary-color);
}

.coverage-map-info {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 4px;
}

.coverage-map-legend {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.legend-marker {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--primary-color);
    flex-shrink: 0;
}

.legend-circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: rgba(15, 52, 96, 0.12);
    flex-shrink: 0;
    display: inline-block;
}

/* Price Range Section */
.price-range-section {
    margin: 3rem 0;
}

.price-range-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 12px rgba(15, 52, 96, 0.2);
}

.price-range-icon {
    font-size: 3rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.price-range-content {
    flex: 1;
}

.price-range-content h3 {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.price-range-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--white);
}

.price-range-note {
    margin: 0.75rem 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--white);
}

/* Unique Facts Section */
.unique-facts-section {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
}

.unique-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.unique-fact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.unique-fact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.unique-fact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.unique-fact-text {
    flex: 1;
}

.unique-fact-text p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* Emergency Numbers Section */
.emergency-numbers-section {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
}

.emergency-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.emergency-number-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.emergency-number-card:hover {
    box-shadow: 0 4px 12px rgba(15, 52, 96, 0.15);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.emergency-number-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.emergency-number-content {
    flex: 1;
}

.emergency-number-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-family: 'Courier New', monospace;
}

.emergency-number-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-range-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .price-range-icon {
        font-size: 2.5rem;
    }
    
    .price-range-value {
        font-size: 1.75rem;
    }
    
    .unique-facts-grid,
    .emergency-numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-numbers-section {
        padding: 1.5rem;
    }
}

/* Local Info Section Professional */
.local-info-section-professional {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.local-facts-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.local-fact-item-professional {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.local-fact-item-professional:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.local-fact-item-professional i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.local-fact-item-professional span {
    color: var(--text-color);
    line-height: 1.6;
    flex: 1;
}

/* Testimonials Section City Professional */
.testimonials-section-city-professional {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
}

.testimonials-section-city-professional .section-header-professional {
    margin-bottom: 2rem;
}

.testimonials-section-city-professional .section-header-professional h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

/* Nearby Section Professional */
.nearby-section-professional {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
}

.nearby-section-professional .section-header-professional {
    margin-bottom: 2rem;
}

.nearby-section-professional .section-header-professional h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.nearby-cities-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.nearby-city-card-professional {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nearby-city-card-professional:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nearby-city-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.nearby-city-card-professional:hover .nearby-city-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.nearby-city-name {
    flex: 1;
    font-size: 1rem;
}

.nearby-city-card-professional i.fa-chevron-right {
    font-size: 0.875rem;
    opacity: 0.6;
    transition: var(--transition);
}

.nearby-city-card-professional:hover i.fa-chevron-right {
    opacity: 1;
}

/* 5. Testimonials Redesign */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.verified-badge {
    font-size: 0.8rem;
    color: #28a745;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* 6. Nearby Cities Grid */
.nearby-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.nearby-city-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.nearby-city-card:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* 7. Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-features {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

/* Mobile Optimizations for Money Page */
@media (max-width: 968px) {
    .city-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .city-hero-form-wrapper {
        display: none;
        /* Hide form on mobile hero, use sticky CTA instead */
    }

    .city-hero {
        padding: 3rem 0;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .trust-items {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .desktop-only {
        display: none;
    }
}

/* ============================================
   PROFESSIONAL & SERIOUS THEME OVERRIDES
   ============================================ */

:root {
    /* Refined Professional Palette */
    --primary-color: #0f3460;
    /* Deep Navy Blue */
    --primary-dark: #0a2342;
    --primary-light: #f0f4f8;

    /* Secondary used sparingly for CTAs */
    --secondary-color: #e94560;
    /* Muted Red/Pink for contrast */
    --secondary-dark: #d63447;

    /* Removed bright accent color */
    --accent-color: #536dfe;
    /* Professional Blue-Purple */

    /* Neutral Colors - Higher Contrast */
    --dark: #16213e;
    --text-color: #333333;
    --text-light: #666666;
    --light: #f5f6fa;
    --white: #ffffff;
    --border-color: #dcdde1;

    /* Tighter UI */
    --border-radius: 4px;
    /* Less rounded, more corporate */
    --border-radius-sm: 2px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Typography Refinements */
body {
    color: #2d3436;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0f3460;
    letter-spacing: -0.01em;
}

/* Header - Clean & White */
.site-header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: none;
}

.top-bar {
    background: #0a2342;
}

/* Buttons - Solid & Serious */
.btn {
    border-radius: 4px;
    /* Square corners */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
}

.btn-primary {
    background: var(--primary-color);
    /* Solid color, no gradient */
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

/* Hero Section - Clean */
.hero,
.city-hero {
    background: #ededed !important;
    /* Force light gray background */
    color: var(--dark);
}

.city-hero::before {
    display: none;
    /* Remove pattern */
}

.hero h1,
.city-hero h1 {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--primary-color);
}

.city-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.city-hero p,
.hero p {
    color: var(--text-color);
}

/* Service Cards - Minimalist */
.service-card {
    border-top-width: 1px;
    /* Remove thick colored top border */
    border-top-color: var(--border-color) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    background-color: var(--light) !important;
    color: var(--primary-color) !important;
    border-radius: 4px;
}

/* Icons - Unified Color */
.fa-check-circle,
.fa-check {
    color: var(--primary-color) !important;
}

/* Trust Badges - Clean */
.badge {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: none;
}

.badge i {
    color: var(--primary-color);
}

/* Footer - Corporate */
.site-footer {
    background: #0f3460;
}

.footer-title::after {
    background: var(--white);
    opacity: 0.3;
}

/* Footer Improvements */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 350px;
}

.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-links a:hover i {
    opacity: 1;
}

/* Mobile Sticky CTA - Clean */
.mobile-sticky-cta {
    padding: 0.75rem;
    background: #fff;
    border-top: 1px solid #eee;
}

.mobile-sticky-cta .btn {
    border-radius: 4px;
    box-shadow: none;
}

/* Forms - Clean */
.form-control {
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(15, 52, 96, 0.1);
}

/* Remove Pulse Animation */
.pulse {
    animation: none;
}

/* City Hero Specific Overrides */
.city-hero .hero-badge {
    background: rgba(15, 52, 96, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(15, 52, 96, 0.1);
}

.city-hero .hero-feature {
    color: var(--text-color);
}

.city-hero .hero-feature i {
    color: var(--primary-color);
}

.btn-white {
    background: var(--primary-color);
    color: #fff;
}

.btn-white:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-outline-white {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-white:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Sidebar Cards */
.sidebar-card {
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.contact-form-card {
    border-top: 4px solid var(--primary-color);
}

/* Trust Bar */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.trust-item i {
    color: var(--primary-color);
}

/* Header & Mega Menu Upgrade */

/* Logo Refinement */
.logo a {
    gap: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    width: 900px;
    /* Fixed width for mega menu - increased for 3 columns */
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1001;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.mega-menu-item:hover {
    background: var(--light);
    border-color: var(--border-color);
    transform: translateX(5px);
}

.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mega-text {
    display: flex;
    flex-direction: column;
}

.mega-text strong {
    color: var(--dark);
    font-size: 1rem;
}

.mega-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.mega-menu-footer {
    background: var(--light);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    text-align: center;
}

.mega-menu-footer i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Mobile Menu Upgrade */
.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 300px;
    /* Drawer style */
    right: 0;
    /* Slide from right */
    left: auto;
    top: 0;
    transform: translateX(100%);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
}

.mobile-nav-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav ul {
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-section-title {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: none !important;
}

.mobile-nav li {
    border-bottom: none;
}

.mobile-nav a {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.mobile-nav a i {
    width: 20px;
    text-align: center;
    color: var(--text-light);
}

.mobile-nav a:hover {
    background: var(--light);
    color: var(--primary-color);
}

.mobile-nav a:hover i {
    color: var(--primary-color);
}

/* Overlay for Mobile Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Top Bar Refinements */
.top-bar .divider {
    color: rgba(255, 255, 255, 0.3);
}

.top-info strong {
    color: var(--white);
}/* ============================================
   HOMEPAGE REFINEMENTS
   ============================================ */

/* 1. Spacing & Air Adjustments */
.hero {
    padding: 5rem 0 3rem;
    /* Reduced bottom padding */
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-cta {
    margin-bottom: 3rem;
}

.trust-badges {
    margin-top: 2rem;
    gap: 1rem;
}

.badge {
    padding: 1rem;
    /* Reduced padding for cleaner look */
}

/* 2. Section Sizing & Contrast */
.services-section,
.why-choose-section,
.testimonials-section {
    padding: 4rem 0;
    /* Consistent padding */
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 3. Service Cards Refinement */
.services-grid {
    gap: 1.5rem;
    /* Tighter grid */
}

.service-card {
    padding: 1.5rem;
    /* Reduced padding */
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* 4. Stats Section Contrast */
.stats-section {
    background: var(--primary-color);
    /* Use primary color instead of dark */
    padding: 3rem 0;
}

.stat-number {
    color: var(--white);
    /* Better contrast on primary color */
    font-size: 2.5rem;
    /* Slightly smaller */
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* 5. Features Section */
.features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    padding: 1.5rem;
    text-align: center;
    /* Center align features for better balance */
}

.feature-icon {
    margin: 0 auto 1rem;
    /* Center icon */
}

/* 6. Testimonials */
.testimonials-section {
    background: #f8f9fa;
    /* Ensure light gray background */
}

.testimonial-card {
    padding: 1.5rem;
}

/* 7. CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--dark);
    /* Dark background for contrast */
}

.cta-section h2 {
    font-size: 2rem;
}

/* 8. Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on mobile */
    }

    .badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Features Grid - 1 column on mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }
}/* Premium Service Cards */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0;
    /* Reset padding for internal layout */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.service-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--dark);
}

.service-card-body {
    padding: 0 2rem 1.5rem;
    flex-grow: 1;
}

.service-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list i {
    color: var(--success-color, #28a745);
    /* Green checkmarks */
    font-size: 0.8rem;
}

.service-card-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.service-card .btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card:hover .btn-link {
    color: var(--primary-dark);
}/* Service Page Redesign Styles */

/* Service Hero */
.service-hero {
    padding: 4rem 0 6rem;
    color: var(--white);
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-hero {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hero-search-box {
    margin-top: 2.5rem;
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search-box .form-control {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Top Cities Grid */
.top-cities-section {
    margin-bottom: 4rem;
}

.top-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.top-city-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
}

.top-city-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.top-city-card .city-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-city-card .city-info h3 {
    font-size: 1.1rem;
    margin: 0;
}

.top-city-card .city-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.top-city-card .arrow {
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Locations Section */
.all-locations-section {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.provinces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.province-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.province-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.province-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.badge-count {
    background: var(--light);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.city-list li {
    margin-bottom: 0.5rem;
}

.city-list a {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    padding: 0.25rem 0;
}

.city-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Service Info Grid */
.service-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.benefits-list-large {
    list-style: none;
    padding: 0;
}

.benefits-list-large li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefit-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-tag {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

/* FAQ Clean */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Compact */
.cta-section-compact {
    background: var(--primary-color);
    padding: 3rem 0;
    color: var(--white);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .service-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .section-header-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}/* Toned Down Service Page Styles */

/* Hero Refinement */
.service-hero {
    background: #0f3460 !important;
    /* Force corporate navy */
    position: relative;
}

/* Add a subtle glow effect instead of full background */
.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-icon-hero {
    background: rgba(255, 255, 255, 0.05);
    /* More subtle background */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Top Cities - Cleaner */
.top-city-card {
    border: 1px solid #e1e8ed;
    /* Standard border */
    box-shadow: none;
}

.top-city-card:hover {
    border-color: var(--primary-color);
    /* Corporate blue on hover, not service color */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.top-city-card .city-icon {
    background: #f8f9fa;
    color: var(--dark);
    /* Dark icon instead of colored */
}

/* Benefit Icons - Less Intense */
.benefit-icon-circle {
    background: #f0f4f8 !important;
    /* Light gray background */
    color: var(--primary-color) !important;
    /* Corporate blue icon */
}

/* Feature Tags - Professional */
.feature-tag {
    background: #fff;
    border: 1px solid #e1e8ed;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* FAQ - Clean */
.faq-card h4 {
    color: var(--primary-color);
    /* Corporate blue */
}

/* CTA - Corporate */
.cta-section-compact {
    background: #0f3460;
    /* Corporate navy */
}

/* Search Box */
.hero-search-box .btn-primary {
    background: var(--secondary-color);
    /* Use secondary (red/pink) for action button only */
    border: none;
}/* High-End Corporate Theme */

/* Corporate Hero */
.corporate-hero {
    background-color: #0a192f;
    /* Deepest Navy */
    padding: 6rem 0;
    position: relative;
    color: #fff;
    text-align: center;
}

.corporate-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 1.5rem;
}

.corporate-hero h1 {
    font-family: 'Inter', serif;
    /* Or a serif if available */
    font-weight: 300;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Elegant Search */
.corporate-search {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input-group {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.search-input-group i {
    color: #ccc;
    margin-right: 1rem;
}

.form-control-clean {
    border: none;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    outline: none;
    color: #333;
}

/* Value Strip */
.value-strip {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 4rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-item div {
    display: flex;
    flex-direction: column;
}

.value-item strong {
    font-size: 0.9rem;
    color: #333;
}

.value-item span {
    font-size: 0.8rem;
    color: #777;
}

/* Layout Grid */
.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

/* Typography & Content */
.content-block h2 {
    font-size: 1.8rem;
    color: #0a192f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.text-justify {
    text-align: justify;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.feature-row i {
    color: var(--primary-color);
}

/* Locations Minimal */
.locations-block {
    margin-top: 4rem;
}

.block-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.cities-minimal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.city-minimal-link {
    padding: 0.5rem 1.5rem;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    color: #555;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.city-minimal-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f0f4f8;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.locations-directory {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.province-group h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.province-cities {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.province-cities a {
    color: #555;
    font-size: 0.9rem;
}

.province-cities a:hover {
    color: var(--primary-color);
}

/* Sidebar Corporate */
.sidebar-corporate {
    position: sticky;
    top: 100px;
}

.service-card-corporate {
    background: #0a192f;
    color: #fff;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 2rem;
}

.service-card-corporate h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card-corporate p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn-corporate-primary {
    display: block;
    background: #fff;
    color: #0a192f;
    padding: 1rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.btn-corporate-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.support-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.text-success {
    color: #4cd137;
}

.service-specs {
    background: #fff;
    border: 1px solid #eee;
    padding: 2rem;
}

.service-specs h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.service-specs ul {
    list-style: none;
    padding: 0;
}

.service-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-size: 0.9rem;
}

/* FAQ Minimal */
.faq-minimal {
    margin-top: 4rem;
}

.faq-row {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-q {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.faq-a {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .value-strip {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .value-item {
        flex-direction: column;
    }

    .corporate-hero h1 {
        font-size: 2.5rem;
    }
}

/* ============================================
   SERVICE PAGE PROFESSIONAL STYLES
   ============================================ */

/* Service Hero Professional */
.service-hero-professional {
    background: #ededed;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-hero-content-professional {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-icon-wrapper-hero {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
}

.service-hero-professional h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

.hero-cta-professional {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Bar Professional */
.trust-bar-professional {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-items-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-item-professional {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-right: 1px solid var(--border-color);
}

.trust-item-professional:last-child {
    border-right: none;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-content strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.trust-content span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Benefits Section Professional */
.benefits-section-professional {
    padding: 4rem 0;
}

.section-header-professional {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-professional h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid-professional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card-professional {
    background: var(--white);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
}

.benefit-card-professional:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.benefit-icon-professional {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-text-professional {
    flex: 1;
}

.benefit-text-professional strong {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Cities Section Professional */
.cities-section-professional {
    padding: 4rem 0;
    background: var(--light);
}

.provinces-accordion {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.province-accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.province-accordion-item:hover {
    border-color: var(--primary-color);
}

.province-accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.province-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.province-accordion-header:hover {
    background: var(--light);
}

.province-accordion-item.active .province-accordion-header {
    background: var(--primary-light);
    border-bottom: 1px solid var(--border-color);
}

.province-accordion-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.province-accordion-item.active .province-accordion-icon {
    background: var(--primary-color);
    color: var(--white);
}

.province-accordion-name {
    flex: 1;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-color);
}

.province-accordion-count {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
    padding: 0.25rem 0.75rem;
    background: var(--light);
    border-radius: 12px;
}

.province-accordion-item.active .province-accordion-count {
    background: var(--white);
    color: var(--primary-color);
}

.province-accordion-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.province-accordion-arrow i {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.province-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.province-accordion-item.active .province-accordion-content {
    max-height: 10000px;
    padding: 1.5rem;
}

.cities-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.city-card-professional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.city-card-professional:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.city-card-professional .city-name-professional {
    flex: 1;
}

.city-card-professional i {
    font-size: 0.875rem;
    opacity: 0.6;
    transition: var(--transition);
}

.city-card-professional:hover i {
    opacity: 1;
}

/* Testimonials Section Professional */
.testimonials-section-professional {
    padding: 4rem 0;
}

.testimonials-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-professional {
    background: #fff;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.testimonial-card-professional:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.testimonial-header-professional {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author-info strong {
    color: var(--text-color);
    font-size: 1rem;
}

.testimonial-location-professional {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-rating-professional {
    margin-bottom: 1rem;
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text-professional {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-verified {
    font-size: 0.875rem;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Section Professional */
.faq-section-professional {
    padding: 4rem 0;
    background: var(--light);
}

.faq-item-professional {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question-professional {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: var(--light);
    border-bottom: 1px solid var(--border-color);
}

.faq-question-professional i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faq-question-professional strong {
    color: var(--text-color);
    font-size: 1.125rem;
    flex: 1;
}

.faq-answer-professional {
    padding: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Sidebar Professional */
.sidebar-card-professional {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sidebar-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.sidebar-features-professional {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.sidebar-feature-item i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.service-info-list-professional {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-info-list-professional li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-info-list-professional li i {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.service-info-list-professional li div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-info-list-professional li strong {
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-info-list-professional li span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section Professional */
.cta-section-professional {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content-professional h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-content-professional p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-professional {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section-professional .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section-professional .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

.cta-section-professional .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section-professional .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .service-hero-professional {
        padding: 3rem 0 2rem;
    }

    .service-hero-professional h1 {
        font-size: 2rem;
    }

    .hero-features-professional {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-items-professional {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item-professional {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
    }

    .trust-item-professional:last-child {
        border-bottom: none;
    }

    .benefits-grid-professional {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-grid-professional {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .testimonials-grid-professional {
        grid-template-columns: 1fr;
    }

    .hero-cta-professional,
    .cta-buttons-professional {
        flex-direction: column;
    }

    .hero-cta-professional .btn,
    .cta-buttons-professional .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-features-professional {
        grid-template-columns: 1fr;
    }

    .trust-items-professional {
        grid-template-columns: 1fr;
    }

    .province-title-professional {
        flex-wrap: wrap;
    }

    .province-count {
        width: 100%;
        margin-top: 0.5rem;
    }

    .coverage-header-professional {
        flex-direction: column;
        text-align: center;
    }

    .coverage-icon-wrapper {
        margin: 0 auto;
    }

    .local-facts-grid-professional {
        grid-template-columns: 1fr;
    }

    .nearby-cities-grid-professional {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* ============================================
   NEW PAGES STYLES
   ============================================ */

/* Page Hero */
.page-hero {
    background: var(--light);
    padding: 3rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* How It Works Hero */
.how-it-works-hero {
    background: var(--light);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
}

.how-it-works-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.how-it-works-hero h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.how-it-works-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.how-it-works-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.how-it-works-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.how-it-works-feature span {
    font-weight: 600;
    color: var(--text-color);
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
    background: var(--white);
}

.steps-container-improved {
    
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}



.step-card-improved {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step-card-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.step-card-improved:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.step-card-improved:hover::before {
    transform: scaleY(1);
}

.step-header-improved {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.step-number-improved {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-icon-improved {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-body-improved h3 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-body-improved p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.step-body-improved strong {
    color: var(--primary-color);
    font-weight: 600;
}

.why-choose-how-it-works {
    padding: 4rem 0;
    background: var(--light);
}

/* Testimonials Page */
.testimonials-stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
}

.stats-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item-professional {
    text-align: center;
}

.stat-number-professional {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label-professional {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-page-section {
    padding: 4rem 0;
}

.testimonials-service-group {
    margin-bottom: 4rem;
}

.service-group-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.service-group-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-date {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Hero */
.contact-hero {
    background: var(--light);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.contact-hero h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.contact-hero-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-hero-feature span {
    font-weight: 600;
    color: var(--text-color);
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem;
}

.contact-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Improved Contact Form */
.contact-form-improved .form-row-improved {
    margin-bottom: 1.5rem;
}

.contact-form-improved .form-row-improved:last-child {
    margin-bottom: 0;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-improved {
    margin-bottom: 0;
}

.form-group-improved label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group-improved label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-input-improved,
.form-textarea-improved {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light);
}

.form-input-improved:focus,
.form-textarea-improved:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.1);
}

.form-textarea-improved {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group-improved {
    margin-top: 0.5rem;
}

.checkbox-label-improved {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkbox-label-improved input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label-improved a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-block {
    width: 100%;
}

.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid;
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert div {
    flex: 1;
}

.alert strong {
    display: block;
    margin-bottom: 0.25rem;
}

.alert p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

.alert-error i {
    color: #dc3545;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card-improved {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    transition: var(--transition);
}

.contact-info-card-improved:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-list-improved {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item-improved {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon-improved {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-info-content-improved {
    flex: 1;
}

.contact-info-content-improved strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-link-highlight {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

.contact-link-highlight:hover {
    color: var(--primary-dark);
}

.contact-info-note {
    color: var(--text-light);
    font-size: 0.875rem;
    display: block;
}

.contact-urgent-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
}

.contact-urgent-card h3,
.contact-urgent-card p {
    color: var(--white);
}

.contact-urgent-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-urgent-header i {
    font-size: 1.5rem;
    color: #ffc107;
}

.contact-urgent-card .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    margin-top: 1rem;
}

.contact-urgent-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

.contact-alternatives {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-alternative-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-alternative-item:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateX(5px);
}

.contact-alternative-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-alternative-item strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact-alternative-item span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0 4rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
}

.cookies-table td {
    background: var(--white);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-settings-content {
    background: var(--white);
    border-radius: 4px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-settings-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-switch input:disabled + .cookie-slider {
    background-color: var(--primary-color);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category-header > div {
    flex: 1;
}

.cookie-category-header strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.cookie-category-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.cookie-settings-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-hero-feature {
        width: 100%;
        justify-content: center;
    }

    .form-row-split {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .coverage-map {
        height: 350px;
    }

    .coverage-map-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent-buttons .btn {
        width: 100%;
    }

    .steps-container {
        gap: 2rem;
    }

    .how-it-works-features {
        flex-direction: column;
        gap: 1rem;
    }

    .how-it-works-feature {
        width: 100%;
        justify-content: center;
    }

    .steps-container-improved {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-header-improved {
        justify-content: center;
    }

    .stats-grid-professional {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid-professional {
        grid-template-columns: 1fr;
    }

    .cookie-settings-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .benefits-grid-professional {
        grid-template-columns: 1fr;
    }
}

/* Presupuesto Note */
.presupuesto-note {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.presupuesto-note sup {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumbs sup,
h3 sup,
strong sup,
span sup,
p sup {
    color: var(--primary-color);
    font-size: 0.7em;
    vertical-align: super;
    font-weight: 600;
    cursor: help;
}