
        :root {
            /* Brand Colors - 2025 Modern Palette */
            --navy: #0F172A;
            --teal: #00D9FF;
            --gold: #FFA500;
            --mint: #E8F5F0;
            --charcoal: #1A1F2E;
            --white: #FFFFFF;
            --text-light: #6d6d6d;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #0F172A 0%, #00D9FF 100%);
            --gradient-gold: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
            --gradient-accent: linear-gradient(135deg, #00D9FF 0%, #E8F5F0 100%);
            --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1A3A52 50%, #00D9FF 100%);
            
            /* Typography */
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            /* Spacing */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 3rem;
            --spacing-xl: 4rem;
            
            /* Transitions */
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px; /* Adjust this value based on your header height */
        }
        
        body {
            font-family: var(--font-body);
            color: var(--navy);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
            transition: background 0.3s ease, color 0.3s ease;
        }
        
        body.dark-mode {
            background: var(--charcoal);
            color: var(--text-light);
        }
        
        /* Header Styles - Glassmorphic Floating */
        .header {
            background: transparent;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .header.scrolled {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        body.dark-mode .header.scrolled {
            background: rgba(26, 31, 46, 0.85);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--navy);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 900;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
            transition: transform 0.3s ease;
        }
        
        .logo-icon:hover {
            transform: rotate(-5deg) scale(1.05);
        }
        
        .nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-link {
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--teal);
        }
        
        body.dark-mode .nav-link {
            color: var(--text-light);
        }
        
        .nav-link.has-dropdown {
            cursor: pointer;
        }
        
        .call-btn {
            background: var(--gradient-gold);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .call-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .call-btn:hover::before {
            left: 100%;
        }
        
        .call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 165, 0, 0.4);
        }
        
        .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--navy);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(20deg);
        }
        
        body.dark-mode .theme-toggle {
            background: rgba(0, 217, 255, 0.2);
            border-color: rgba(0, 217, 255, 0.3);
            color: var(--teal);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--navy);
            cursor: pointer;
        }
        
        /* Hero Section - Glassmorphic Layered */
        .hero {
            background: url('image/vaccination-doctor-protective-mask-gloves-injects-vaccine-into-patient-s-hand.bak.jpg');
            padding: 10rem 2rem 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: gradientShift 10s ease infinite;
            background-size: 150% 150%;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.6;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-50px, 50px) scale(1.1); }
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 3rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
            border-color: rgba(0, 217, 255, 0.3);
        }
        
        body.dark-mode .glass-card {
            background: rgba(26, 31, 46, 0.6);
            border-color: rgba(0, 217, 255, 0.2);
        }
        
        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background: var(--gradient-gold);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 165, 0, 0.5);
        }
        
        .btn-secondary {
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-secondary:hover::before {
            left: 100%;
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
        }
        
        .btn-outlined {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outlined:hover {
            background: var(--white);
            color: var(--navy);
            transform: translateY(-3px);
        }
        
        .trust-badges {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        
        .badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--white);
            font-weight: 500;
            padding: 0.75rem 1.5rem;
            background: rgba(49, 48, 48, 0.555);
            border-radius: 50px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .badge:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
        }
        
        .badge-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Sections */
        .section {
            padding: 5rem 2rem;
        }
        
        .section-light {
            background: var(--white);
        }
        
        .section-gray {
            background: var(--light-gray);
        }
        
        .section-blue {
            background: linear-gradient(135deg, var(--light-blue) 0%, #5FCCE8 100%);
            color: var(--white);
        }
        
        .section-navy {
            background: var(--navy);
            color: var(--white);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--teal);
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-label::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--navy);
        }
        
        .section-blue .section-title,
        .section-navy .section-title {
            color: var(--white);
        }
        
        .section-description {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text h2 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        
        .about-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        
        .about-image {
            background: linear-gradient(135deg, var(--light-blue), var(--navy));
            border-radius: 20px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 4rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .service-height{
            height: 430px;
        }
        .service-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 16px 48px rgba(0, 217, 255, 0.25);
            border-color: rgba(0, 217, 255, 0.5);
            background: rgba(255, 255, 255, 0.85);
        }
        
        body.dark-mode .service-card {
            background: rgba(26, 31, 46, 0.7);
            border-color: rgba(0, 217, 255, 0.2);
        }
        
        body.dark-mode .service-card:hover {
            background: rgba(26, 31, 46, 0.85);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
            transition: all 0.4s ease;
            animation: iconPulse 3s ease-in-out infinite;
        }
        
        @keyframes iconPulse {
            0%, 100% { box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3); }
            50% { box-shadow: 0 8px 32px rgba(0, 217, 255, 0.5); }
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 36px rgba(0, 217, 255, 0.5);
        }
        
        .service-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            color: var(--teal);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .service-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }
        
        .service-link:hover::after {
            transform: translateX(5px);
        }
        
        /* Coverage Area */
        .coverage-content {
            text-align: center;
        }
        
        .counties-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .county-card {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: var(--transition);
        }
        
        .county-card:hover {
            background: var(--light-blue);
            color: var(--white);
            transform: translateY(-5px);
        }
        
        /* Testimonials */
        .testimonials-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .testimonial {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .testimonial.active {
            display: block;
        }
        
        .testimonial-quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--navy);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-info h4 {
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        
        .testimonial-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .testimonial-rating {
            color: var(--gold);
            font-size: 1.2rem;
            margin-left: auto;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .dot.active {
            background: var(--white);
            width: 30px;
            border-radius: 6px;
        }
        
        /* CRM Lead Form Section */
        .form-section {
            background: linear-gradient(135deg, #F8F9FA 0%, var(--light-gray) 100%);
        }
        
        .form-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        
        .form-wrapper {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .form-header {
            margin-bottom: 2rem;
        }
        
        .form-header h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        
        .form-header p {
            color: var(--text-light);
            font-size: 1rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
            background: var(--white);
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--light-blue);
            box-shadow: 0 0 0 3px rgba(74, 184, 227, 0.1);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .form-checkbox {
            display: flex;
            align-items: start;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .form-checkbox input {
            margin-top: 0.25rem;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .form-checkbox label {
            font-size: 0.9rem;
            color: var(--text-light);
            cursor: pointer;
        }
        
        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--gold);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .form-submit:hover {
            background: #C19A2F;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }
        
        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .form-privacy {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .form-success {
            display: none;
            background: #D4EDDA;
            color: #155724;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            border: 1px solid #C3E6CB;
        }
        
        .form-success.show {
            display: block;
        }
        
        /* Why Choose Us */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .benefit-item {
            display: flex;
            gap: 1rem;
            align-items: start;
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold), #E8C860);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            flex-shrink: 0;
        }
        
        .benefit-content h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        
        .benefit-content p {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* Provider CTA Banner */
        .provider-cta {
            text-align: center;
        }
        
        .provider-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .provider-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .provider-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 900;
        }
        
        .footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--light-blue);
            transform: translateY(-3px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: var(--light-blue);
            padding-left: 5px;
        }
        
        .footer-contact p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .footer-legal a:hover {
            color: var(--light-blue);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* AI Chatbot Widget */
        .ai-chat-widget {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
        }
        
        .chat-bubble {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
            transition: all 0.3s ease;
            animation: breathe 3s ease-in-out infinite;
            color: var(--white);
            font-size: 1.8rem;
        }
        
        @keyframes breathe {
            0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(0, 217, 255, 0.6); }
        }
        
        .chat-bubble:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 36px rgba(0, 217, 255, 0.6);
        }
        
        .chat-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid rgba(0, 217, 255, 0.3);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
            display: none;
            overflow: hidden;
        }
        
        body.dark-mode .chat-window {
            background: rgba(26, 31, 46, 0.95);
        }
        
        .chat-window.active {
            display: block;
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .chat-header {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .chat-header h4 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
        }
        
        .chat-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
        }
        
        .chat-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .chat-body {
            padding: 1.5rem;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .chat-message {
            background: rgba(0, 217, 255, 0.1);
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            border-left: 3px solid var(--teal);
        }
        
        .chat-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-top: 1rem;
        }
        
        .chat-option {
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(0, 217, 255, 0.3);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--navy);
        }
        
        body.dark-mode .chat-option {
            background: rgba(15, 23, 42, 0.8);
            color: var(--text-light);
        }
        
        .chat-option:hover {
            background: var(--teal);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
        }
        
        .chat-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--white);
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }
        
        /* Responsive Design - Mobile-First 2025 */
        @media (max-width: 1024px) {
            .nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .glass-card {
                padding: 2rem;
            }
            
            .chat-window {
                width: 320px;
                right: -10px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 8rem 1.5rem 4rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .trust-badges {
                grid-template-columns: repeat(2, 1fr);
                display: grid;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .form-container {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .section {
                padding: 3rem 1.5rem;
            }
            
            .glass-card {
                padding: 1.5rem;
            }
            
            .chat-window {
                width: calc(100vw - 2rem);
                left: 1rem;
                right: 1rem;
                bottom: 90px;
            }
            
            .ai-chat-widget {
                bottom: 1.5rem;
                right: 1.5rem;
            }
            
            .chat-bubble {
                width: 55px;
                height: 55px;
                font-size: 1.5rem;
            }
            
            .service-card:hover {
                transform: translateY(-5px) scale(1);
            }
            
            .logo span {
                display: none;
            }
            
            .header-container {
                padding: 0 1rem;
            }
            
            .provider-buttons {
                flex-direction: column;
            }
        }
        
        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Focus visible for keyboard navigation */
        *:focus-visible {
            outline: 3px solid var(--teal);
            outline-offset: 2px;
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .glass-card {
                border-width: 2px;
            }
            
            .service-card {
                border-width: 2px;
            }
        }
   