/* Mobile Dropdown Styles */
.mobile-nav-dropdown {
    position: relative;
}

.mobile-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav-dropdown-toggle.active .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.mobile-nav-dropdown-content.active {
    max-height: 400px; /* Fixed height */
    overflow-y: auto; /* Enable scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.mobile-nav-dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.mobile-nav-dropdown-content a:hover {
    background: #007bff;
    color: white;
}

.mobile-nav-dropdown-content a:last-child {
    border-bottom: none;
}

/* Mobile menu container with proper scrolling */
.mobile-menu {
    max-height: calc(100vh - 100px); /* Ensure mobile menu doesn't exceed viewport */
    overflow-y: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 1rem;
        background: #f8f9fa;
        display: none;
        max-height: 300px; /* Fixed height for desktop mega menu on mobile */
        overflow-y: auto; /* Enable scrolling */
    }

    .mega-menu.active {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mega-menu-column a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e9ecef;
    }

    .mega-menu-column a:hover {
        padding-left: 1.5rem;
    }

    .nav-dropdown-toggle .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .nav-dropdown-toggle.active .fa-chevron-down {
        transform: rotate(180deg);
    }
}
/* Mega Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-toggle .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 2rem;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-menu-column a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mega-menu-column a:hover {
    color: #007bff;
    padding-left: 0.5rem;
    border-color: #007bff;
}

.mega-menu-column a:last-child {
    border-bottom: none;
}
 /* CSS Variables for Design System */
        :root {
            --primary-blue: #2563eb;
            --primary-blue-hover: #1d4ed8;
            --blue-light: #93c5fd;
            --blue-dark: #1e3a8a;
            --blue-gradient: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            --green-success: #16a34a;
            --gray-dark: #111827;
            --gray-medium: #6b7280;
            --gray-light: #f9fafb;
            --white: #ffffff;
            
            --font-inter: 'Inter', sans-serif;
            --font-poppins: 'Poppins', sans-serif;
            
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-inter);
            line-height: 1.6;
            color: var(--gray-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-poppins);
            font-weight: 700;
            line-height: 1.2;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-family: var(--font-inter);
        }

        .btn-primary {
            background: var(--blue-gradient);
            color: var(--white);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
            background: var(--primary-blue-hover);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-outline:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out;
        }

        .animate-slideInRight {
            animation: slideInRight 0.8s ease-out;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        /* Header */
        .header {
            background: var(--white);
            box-shadow: var(--shadow-lg);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: var(--shadow-xl);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
.hero-content {margin-top: 60px;}  

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            background: var(--blue-gradient);
            padding: 0.5rem;
            border-radius: 0.5rem;
            color: var(--white);
            font-size: 2rem;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin: 0;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--gray-medium);
            margin: 0;
        }

        .nav {
            display: flex;
            gap: 2rem;
        }

        .nav a {
            color: var(--gray-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: var(--primary-blue);
        }

        .nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-dark);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
            padding: 30px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%233b82f6" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></g></svg>');
            opacity: 0.3;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary-blue);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--gray-dark);
        }

        .hero h1 .highlight {
            color: var(--primary-blue);
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--gray-medium);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .trust-indicators {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 2rem 0;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            margin: 2rem 0;
        }

        .trust-item {
            text-align: center;
        }

        .trust-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .trust-value {
            font-weight: 700;
            color: var(--gray-dark);
            margin-bottom: 0.25rem;
        }

        .trust-label {
            font-size: 0.875rem;
            color: var(--gray-medium);
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .phone-display {
            background: var(--gray-light);
            border-radius: 1rem;
            padding: 1.5rem;
            border-left: 4px solid var(--primary-blue);
        }

        .phone-label {
            font-size: 0.875rem;
            color: var(--gray-medium);
            margin-bottom: 0.25rem;
        }

        .phone-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .phone-number:hover {
            color: var(--primary-blue);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 0.8s ease-out;
        }

        .hero-image-container {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: var(--shadow-2xl);
            position: relative;
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: 20rem;
            object-fit: cover;
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
        }

        .floating-badge {
            position: absolute;
            top: -1rem;
            right: -1rem;
            background: var(--green-success);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 700;
            box-shadow: var(--shadow-lg);
            animation: float 3s ease-in-out infinite;
        }

        .stats-overlay {
            position: absolute;
            bottom: -1.5rem;
            left: 1.5rem;
            right: 1.5rem;
            background: var(--white);
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid #e5e7eb;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            text-align: center;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--gray-medium);
        }
/* Mobile Dropdown Styles */
.mobile-nav-dropdown {
    position: relative;
}

.mobile-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav-dropdown-toggle.active .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.mobile-nav-dropdown-content.active {
    max-height: 400px; /* Fixed height */
    overflow-y: auto; /* Enable scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.mobile-nav-dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.mobile-nav-dropdown-content a:hover {
    background: #007bff;
    color: white;
}

.mobile-nav-dropdown-content a:last-child {
    border-bottom: none;
}

/* Mobile menu container with proper scrolling */
.mobile-menu {
    max-height: calc(100vh - 100px); /* Ensure mobile menu doesn't exceed viewport */
    overflow-y: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 1rem;
        background: #f8f9fa;
        display: none;
        max-height: 300px; /* Fixed height for desktop mega menu on mobile */
        overflow-y: auto; /* Enable scrolling */
    }

    .mega-menu.active {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mega-menu-column a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e9ecef;
    }

    .mega-menu-column a:hover {
        padding-left: 1.5rem;
    }

    .nav-dropdown-toggle .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .nav-dropdown-toggle.active .fa-chevron-down {
        transform: rotate(180deg);
    }
}
        /* Services Section */
        .services {
            padding: 5rem 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary-blue);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            color: var(--gray-dark);
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.25rem;
            color: var(--gray-medium);
            max-width: 48rem;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--blue-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
        }

        .service-icon {
            background: var(--blue-gradient);
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.25rem;
            color: var(--gray-dark);
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--gray-medium);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
            color: var(--gray-dark);
        }

        .service-features li::before {
            content: '';
            width: 0.5rem;
            height: 0.5rem;
            background: var(--green-success);
            border-radius: 50%;
        }

        /* Cleaning Types Section */
        .cleaning-types {
            padding: 5rem 0;
            background: var(--gray-light);
        }

        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .type-card {
            background: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
        }

        .type-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .type-image {
            height: 12rem;
            overflow: hidden;
        }

        .type-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .type-card:hover .type-image img {
            transform: scale(1.1);
        }

        .type-content {
            padding: 1.5rem;
        }

        .type-title {
            font-size: 1.25rem;
            color: var(--gray-dark);
            margin-bottom: 1rem;
        }

        .type-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .type-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
            color: var(--gray-medium);
        }

        .type-list li i {
            color: var(--primary-blue);
            font-size: 0.75rem;
        }

        /* Cleaning Issues Section */
        .cleaning-issues {
            padding: 5rem 0;
            background: var(--white);
        }

        .issues-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .issue-card {
            background: var(--gray-light);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .issue-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .issue-icon {
            width: 3rem;
            height: 3rem;
            background: var(--blue-gradient);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .issue-title {
            font-size: 1.25rem;
            color: var(--gray-dark);
            margin-bottom: 1rem;
        }

        .issue-description {
            color: var(--gray-medium);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: var(--gray-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-container {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: var(--shadow-2xl);
        }

        .about-image img {
            width: 100%;
            height: 24rem;
            object-fit: cover;
            border-radius: 1rem;
        }

        .floating-stat {
            position: absolute;
            background: var(--white);
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: var(--shadow-xl);
            text-align: center;
        }

        .floating-stat-1 {
            top: -1.5rem;
            left: -1.5rem;
        }

        .floating-stat-2 {
            bottom: -1.5rem;
            right: -1.5rem;
        }

        .floating-stat-value {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .floating-stat-label {
            font-size: 0.875rem;
            color: var(--gray-medium);
        }

        .about-text h2 {
            font-size: 2.25rem;
            color: var(--gray-dark);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--gray-medium);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature-card {
            background: var(--white);
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-title {
            font-weight: 700;
            color: var(--gray-dark);
            margin-bottom: 0.5rem;
        }

        .feature-description {
            font-size: 0.875rem;
            color: var(--gray-medium);
        }

        .promise-card {
            background: var(--blue-gradient);
            border-radius: 1rem;
            padding: 2rem;
            color: var(--white);
            margin-top: 2rem;
        }

        .promise-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .promise-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: var(--blue-gradient);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="white" fill-opacity="0.1"><path d="M20 20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20zM0 0h40v40H0V0z"/></g></svg>');
            opacity: 0.1;
        }

        .cta-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-title .highlight {
            color: var(--white);
            font-weight: 800;
        }

        .cta-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 48rem;
            margin: 0 auto;
        }

        .cta-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 64rem;
            margin: 0 auto 4rem;
            position: relative;
            z-index: 1;
        }

        .cta-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            text-align: center;
        }

        .cta-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        .cta-card-icon {
            width: 5rem;
            height: 5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
        }

        .cta-card h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .cta-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.125rem;
            padding: 1rem 1.5rem;
            border-radius: 9999px;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
        }

        .btn-white:hover {
            background: #f3f4f6;
            transform: translateY(-2px) scale(1.05);
            box-shadow: var(--shadow-2xl);
        }

        .btn-white-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            font-weight: 700;
            font-size: 1.125rem;
            padding: 1rem 1.5rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
        }

        .btn-white-outline:hover {
            background: var(--white);
            color: var(--primary-blue);
            transform: translateY(-2px) scale(1.05);
        }

        .bottom-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .bottom-stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .bottom-stat-label {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 0;
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .testimonial-card {
            background: var(--gray-light);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 4rem;
            color: rgba(37, 99, 235, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
            padding-top: 1rem;
        }

        .star {
            color: #fbbf24;
            font-size: 1.25rem;
        }

        .testimonial-text {
            color: var(--gray-dark);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-name {
            font-weight: 600;
            color: var(--gray-dark);
            margin-bottom: 0.25rem;
        }

        .author-location {
            font-size: 0.875rem;
            color: var(--gray-medium);
        }

        .trust-badges {
            background: linear-gradient(135deg, var(--gray-light), #f3f4f6);
            border-radius: 1rem;
            padding: 2rem;
        }

        .trust-badges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .trust-badge-value {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .trust-badge-label {
            color: var(--gray-medium);
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: var(--gray-light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.25rem;
            color: var(--gray-dark);
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: var(--gray-medium);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .contact-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.125rem;
        }

        .contact-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--gray-dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-family: var(--font-inter);
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

      

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: var(--white);
            border-top: 1px solid #e5e7eb;
            padding: 1rem 0;
            animation: fadeInUp 0.3s ease-out;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav a {
            color: var(--gray-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem 1rem;
            transition: background-color 0.3s ease;
        }

        .mobile-nav a:hover {
            background-color: var(--gray-light);
            color: var(--primary-blue);
        }

        .mobile-cta {
            padding: 0 1rem;
            margin-top: 0.5rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content,
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-options {
                grid-template-columns: 1fr;
            }

            .hero h1,
            .cta-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.25rem;
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 6rem 0 3rem;
                text-align: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.875rem;
            }

            .trust-indicators,
            .features-grid,
            .bottom-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 5rem 0 2rem;
            }

            .services,
            .about,
            .cta-section,
            .testimonials,
            .contact {
                padding: 3rem 0;
            }

            .service-card,
            .testimonial-card {
                padding: 1.5rem;
            }

            .btn-lg {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }
        }