        /* ============================================
           COLOR SCHEME - Warmer, friendlier palette
           ============================================ */
        :root {
            /* Primary - Brighter, friendlier teal */
            --primary: #3BBEB3;
            --primary-light: #7DD3CD;
            --primary-dark: #2A8F87;
            
            /* Accent colors from logo */
            --accent: #F4A54A;          /* Warm orange from the dog */
            --accent-light: #FFE4C4;
            --accent-coral: #F09B8C;
            --accent-yellow: #FFE066;   /* From the bird */
            --accent-green: #7BC67B;    /* From the turtle */
            --accent-blue: #5BC0DE;     /* From the cat */
            
            /* Backgrounds - Warmer tones */
            --cream: #FFF9F3;
            --warm-white: #FFFCF7;
            --text: #3A4D52;
            --text-muted: #6B7B82;
            --border: #E8E2DC;
            --shadow: rgba(59, 190, 179, 0.08);
            --shadow-strong: rgba(59, 190, 179, 0.15);
            
            /* Section backgrounds */
            --section-color-1: #E8F7F5;
            --section-color-2: #FFF5F0;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        body { 
            font-family: 'DM Sans', sans-serif; 
            background: var(--warm-white); 
            color: var(--text); 
            line-height: 1.7;
            /* Add padding for mobile contact bar */
            padding-bottom: 0;
        }
        @media (max-width: 968px) {
            body { padding-bottom: 70px; }
        }
        h1, h2, h3, h4, h5 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.3; }
        a { color: var(--primary); }
        
        /* Navigation */
        .nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 252, 247, 0.97); backdrop-filter: blur(20px); z-index: 1000; border-bottom: 1px solid var(--border); }
        .nav.scrolled { box-shadow: 0 4px 30px var(--shadow); }
        .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--primary); transition: all 0.3s; }
        .logo:hover { opacity: 0.8; }
        .logo img { transition: all 0.3s; }
        .nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
        .nav-links a { color: var(--text); text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
        .nav-links a:hover { background: var(--cream); color: var(--primary); }
        .nav-cta { background: linear-gradient(135deg, var(--accent) 0%, #E8943E 100%) !important; color: white !important; }
        .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(244, 165, 74, 0.4) !important; }
        .nav-phone { font-weight: 600; color: var(--primary) !important; }
        .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px 0; transition: all 0.3s; }

        /* Hero */
        .hero { 
            padding: 130px 24px 80px; 
            background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
            position: relative; 
            overflow: hidden; 
        }
        .hero::before { 
            content: ''; 
            position: absolute; 
            top: -100px; 
            right: -200px; 
            width: 600px; 
            height: 600px; 
            background: radial-gradient(circle, rgba(59, 190, 179, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero::after { 
            content: ''; 
            position: absolute; 
            bottom: -150px; 
            left: -100px; 
            width: 400px; 
            height: 400px; 
            background: radial-gradient(circle, rgba(244, 165, 74, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-content { position: relative; z-index: 1; }
        .hero-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            background: white; 
            padding: 8px 16px; 
            border-radius: 100px; 
            font-size: 0.85rem; 
            font-weight: 500; 
            color: var(--primary); 
            margin-bottom: 20px; 
            box-shadow: 0 2px 12px var(--shadow);
            animation: fadeInUp 0.6s ease-out;
        }
        .hero-badge span { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero h1 { 
            font-size: clamp(2.2rem, 5vw, 3.2rem); 
            color: var(--primary-dark); 
            margin-bottom: 16px;
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }
        .hero p { 
            font-size: 1.1rem; 
            color: var(--text-muted); 
            margin-bottom: 28px; 
            max-width: 480px;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }
        .hero-btns { 
            display: flex; 
            gap: 12px; 
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }
        .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: all 0.3s; font-size: 0.95rem; border: none; cursor: pointer; }
        .btn-primary { 
            background: linear-gradient(135deg, var(--accent) 0%, #E8943E 100%); 
            color: white; 
            box-shadow: 0 4px 15px rgba(244, 165, 74, 0.3);
        }
        .btn-primary:hover { 
            transform: translateY(-2px); 
            box-shadow: 0 8px 25px rgba(244, 165, 74, 0.4); 
        }
        .btn-secondary { background: white; color: var(--primary); border: 2px solid var(--border); }
        .btn-secondary:hover { border-color: var(--primary); background: var(--cream); }
        
        /* Trust Badges - NEW */
        .trust-badges {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .trust-badge-icon {
            width: 32px;
            height: 32px;
            background: var(--cream);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        .trust-badge strong {
            color: var(--primary-dark);
        }
        
        .hero-image { display: flex; justify-content: center; position: relative; z-index: 1; }
        .hero-image picture { display: flex; justify-content: center; width: 100%; }
        .hero-image img { width: 100%; max-width: 500px; height: auto; }
        .hero-stats { display: flex; gap: 32px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); animation: fadeInUp 0.6s ease-out 0.5s both; }
        .stat-number { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--primary); }
        .stat-label { font-size: 0.85rem; color: var(--text-muted); }

        /* Sections */
        section { padding: 90px 24px; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
        .section-header h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--primary-dark); margin-bottom: 12px; }
        .section-header p { color: var(--text-muted); font-size: 1.05rem; }

        /* Pricing Cards on Main Page */
        .pricing-cards-section { padding: 70px 24px; background: white; }
        .pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
        .pricing-card { 
            background: var(--cream); 
            border: 2px solid var(--border); 
            border-radius: 20px; 
            overflow: hidden; 
            transition: all 0.3s; 
            cursor: pointer;
            position: relative;
        }
        .pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px var(--shadow-strong); border-color: var(--primary); }
        .pricing-card-image { 
            width: 100%; 
            height: 160px; 
            object-fit: cover; 
            background: var(--accent-light); 
            transition: transform 0.5s ease;
        }
        .pricing-card:hover .pricing-card-image { transform: scale(1.05); }
        .pricing-card-content { padding: 24px 28px 28px; overflow: hidden; }
        .pricing-card h3 { font-size: 1.25rem; color: var(--primary-dark); margin-bottom: 8px; }
        .pricing-card .price-from { 
            font-size: 1.6rem; 
            font-weight: 700; 
            color: var(--primary); 
            margin-bottom: 8px; 
        }
        .pricing-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.5; }
        
        /* Card Actions - NEW */
        .card-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .pricing-card .view-details { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; }
        .quick-call {
            background: var(--primary);
            color: white !important;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .quick-call:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }
        
        /* Popular Badge - NEW */
        .popular-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, var(--accent) 0%, #E8943E 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(244, 165, 74, 0.4);
        }

        /* Modal Styles */
        .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
        .modal.active { display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .modal-content { background: white; border-radius: 24px; max-width: 800px; width: 90%; max-height: 85vh; overflow-y: auto; position: relative; box-shadow: 0 25px 70px rgba(0,0,0,0.3); animation: slideUp 0.3s; }
        @keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        .modal-header { position: sticky; top: 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 28px 36px; border-radius: 24px 24px 0 0; z-index: 10; }
        .modal-header h2 { font-size: 1.8rem; display: flex; align-items: center; gap: 12px; }
        .close-modal { position: absolute; top: 24px; right: 24px; color: white; font-size: 32px; font-weight: 300; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
        .close-modal:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
        .modal-body { padding: 36px; }
        .modal-body .desc { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; line-height: 1.7; }
        
        /* Pricing table in modal */
        .pricing-table { background: var(--cream); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px var(--shadow); margin-bottom: 24px; }
        .pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
        .pricing-row:last-child { border-bottom: none; }
        .pricing-row.header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; font-weight: 600; }
        .pricing-row.holiday-surcharge { background: #FFF4E6; border-top: 2px solid var(--accent); }
        .pricing-price { font-weight: 600; color: var(--primary); }
        .pricing-price.holiday-price { color: var(--accent); }
        .pricing-row.header .pricing-price { color: white; }
        .pricing-category { background: white; padding: 10px 20px; font-weight: 600; color: var(--primary-dark); border-bottom: 1px solid var(--border); font-size: 0.9rem; }
        .pricing-note { background: var(--accent-light); border-radius: 10px; padding: 18px 20px; margin-top: 20px; }
        .pricing-note h4 { color: var(--primary-dark); margin-bottom: 6px; font-size: 0.95rem; }
        .pricing-note ul { color: var(--text-muted); font-size: 0.85rem; margin: 0; margin-left: 18px; }
        .pricing-note li { margin-bottom: 3px; }
        .contact-scroll-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .contact-scroll-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow-strong);
        }
        
        /* Size info tooltip */
        .size-info {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            background: var(--primary-light);
            color: var(--primary-dark);
            border-radius: 50%;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 6px;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
        }
        .size-info::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 130%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--text);
            color: white;
            font-size: 0.75rem;
            font-weight: 400;
            padding: 8px 12px;
            border-radius: 8px;
            white-space: nowrap;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s;
            pointer-events: none;
        }
        .size-info:hover::after,
        .size-info.active::after {
            opacity: 1;
            visibility: visible;
        }

        /* About */
        #about { background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-image { position: relative; }
        .about-image img { width: 100%; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .about-content h2 { font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 16px; }
        .about-content p { color: var(--text-muted); margin-bottom: 14px; }
        .about-features { margin-top: 28px; display: grid; gap: 14px; }
        .about-feature { display: flex; align-items: flex-start; gap: 14px; }
        .about-feature-icon { width: 38px; height: 38px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
        .about-feature h4 { font-size: 0.95rem; margin-bottom: 2px; }
        .about-feature p { font-size: 0.85rem; margin: 0; }

        /* Why Choose Us Section */
        .why-choose-section {
            background: linear-gradient(180deg, var(--warm-white) 0%, var(--section-color-2) 100%);
            padding: 80px 24px;
        }
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 20px;
        }
        .why-choose-card {
            background: white;
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .why-choose-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px var(--shadow-strong);
            border-color: var(--primary-light);
        }
        .why-choose-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
            display: block;
        }
        .why-choose-card h3 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        .why-choose-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }
        @media (max-width: 968px) {
            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .why-choose-grid {
                grid-template-columns: 1fr;
            }
            .why-choose-section {
                padding: 60px 20px;
            }
            /* Modal improvements for small screens */
            .modal-content {
                width: 95%;
                max-height: 90vh;
                border-radius: 16px;
            }
            .modal-header {
                padding: 20px 24px;
                border-radius: 16px 16px 0 0;
            }
            .modal-header h2 {
                font-size: 1.3rem;
                padding-right: 30px;
            }
            .modal-body {
                padding: 24px 20px;
            }
            .close-modal {
                top: 16px;
                right: 16px;
                font-size: 28px;
                width: 36px;
                height: 36px;
            }
        }

        /* Testimonials */
        #testimonials { background: var(--section-color-1); color: var(--text); }
        #testimonials .section-header h2 { color: var(--primary-dark); }
        #testimonials .section-header p { color: var(--text-muted); }
        
        /* Testimonials Carousel Container - NEW */
        .testimonials-container {
            position: relative;
            overflow: hidden;
        }
        .testimonials-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 24px;
        }
        .testimonial-card { 
            background: white; 
            border-radius: 16px; 
            padding: 26px; 
            border: 1px solid var(--border); 
            transition: all 0.3s;
        }
        .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow-strong); }
        
        /* Star Rating - NEW */
        .testimonial-rating {
            color: #FFB800;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        
        /* Service Tag - NEW */
        .testimonial-service {
            display: inline-block;
            background: var(--accent-light);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        
        .testimonial-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; color: var(--text); }
        .testimonial-author { display: flex; align-items: center; gap: 10px; }
        .testimonial-avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-coral) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; color: white; font-size: 0.85rem; }
        .testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
        
        /* See All Reviews Link - NEW */
        .reviews-link {
            text-align: center;
            margin-top: 36px;
        }
        .reviews-link a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            padding: 12px 24px;
            border: 2px solid var(--primary);
            border-radius: 12px;
            transition: all 0.3s;
        }
        .reviews-link a:hover {
            background: var(--primary);
            color: white;
        }

        /* FAQ */
        #faq { background: white; }
        .faq-grid { max-width: 750px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-question { width: 100%; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--primary-dark); }
        .faq-question:hover { color: var(--primary); }
        .faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; font-size: 14px; }
        .faq-item.active .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
        .faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }
        .faq-answer p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

        /* Emergency Banner - NEW */
        .emergency-banner {
            background: linear-gradient(135deg, #FFF0ED 0%, #FFE4E0 100%);
            border: 2px solid var(--accent-coral);
            border-radius: 16px;
            padding: 20px 28px;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            text-align: center;
        }
        .emergency-banner-icon {
            font-size: 1.5rem;
            animation: emergencyPulse 1.5s infinite;
        }
        @keyframes emergencyPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .emergency-banner strong {
            color: var(--primary-dark);
            font-size: 1.1rem;
        }
        .emergency-banner a {
            background: var(--accent-coral);
            color: white;
            padding: 10px 20px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        .emergency-banner a:hover {
            background: #E8857A;
            transform: translateY(-2px);
        }

        /* Contact - No Form */
        #contact { background: var(--section-color-2); }
        .contact-content { max-width: 900px; margin: 0 auto; text-align: center; }
        .contact-content h2 { font-size: 2.2rem; color: var(--primary-dark); margin-bottom: 16px; }
        .contact-content > p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
        
        /* Hours Display - NEW */
        .hours-display {
            background: white;
            border-radius: 16px;
            padding: 24px 32px;
            margin-bottom: 32px;
            display: inline-flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            box-shadow: 0 4px 20px var(--shadow);
        }
        .hours-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hours-icon {
            font-size: 1.5rem;
        }
        .hours-text {
            text-align: left;
        }
        .hours-label {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .hours-value {
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .contact-methods { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 24px; 
            margin-bottom: 32px; 
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .contact-method { background: white; border-radius: 16px; padding: 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: all 0.3s; border: 2px solid var(--border); }
        .contact-method:hover { transform: translateY(-4px); box-shadow: 0 12px 30px var(--shadow-strong); border-color: var(--primary); }
        .contact-method-icon { width: 60px; height: 60px; background: var(--accent-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
        .contact-method h4 { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin: 0; font-family: 'DM Sans', sans-serif; }
        .contact-method p { font-weight: 600; margin: 0; font-size: 1.05rem; }
        .contact-method a { color: var(--primary); text-decoration: none; font-weight: 600; }
        .contact-method a:hover { text-decoration: underline; }
        .social-link { display: inline-flex; align-items: center; gap: 10px; background: white; padding: 14px 24px; border-radius: 12px; color: var(--primary); text-decoration: none; font-weight: 600; border: 2px solid var(--border); transition: all 0.3s; margin: 6px; }
        .social-link:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px var(--shadow); }

        /* Footer */
        footer { background: linear-gradient(135deg, var(--primary-dark) 0%, #1E6B65 100%); color: white; padding: 50px 24px 20px; }
        .footer-inner { max-width: 1200px; margin: 0 auto; }
        .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
        .footer-brand p { opacity: 0.8; margin-top: 14px; max-width: 280px; font-size: 0.9rem; line-height: 1.6; }
        .footer-links h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 8px; }
        .footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { color: white; }
        .footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); display: flex; justify-content: space-between; font-size: 0.85rem; opacity: 0.8; }

        /* WhatsApp Floating Button - NEW */
        .whatsapp-float {
            position: fixed;
            bottom: 90px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 998;
            transition: all 0.3s;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }
        .whatsapp-float svg {
            width: 32px;
            height: 32px;
        }
        @media (min-width: 969px) {
            .whatsapp-float {
                bottom: 30px;
            }
        }

        /* Mobile Contact Bar - NEW */
        .mobile-contact-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 8px 12px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            z-index: 999;
            gap: 8px;
            flex-wrap: wrap;
        }
        .mobile-contact-bar a {
            flex: 1;
            min-width: calc(33.33% - 6px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 12px 8px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.85rem;
        }
        .mobile-contact-bar .call-btn {
            background: linear-gradient(135deg, var(--accent) 0%, #E8943E 100%);
            color: white;
        }
        .mobile-contact-bar .call-btn-alt {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
        }
        .mobile-contact-bar .whatsapp-btn {
            background: #25D366;
            color: white;
        }
        @media (max-width: 968px) {
            .mobile-contact-bar {
                display: flex;
            }
        }
        @media (max-width: 400px) {
            .mobile-contact-bar {
                padding: 6px 8px;
                gap: 6px;
            }
            .mobile-contact-bar a {
                font-size: 0.8rem;
                padding: 10px 6px;
                gap: 4px;
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: 0 20px 40px var(--shadow); }
            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .logo img { height: 45px !important; }
            .hero-inner, .about-grid { grid-template-columns: 1fr; }
            .hero { text-align: center; }
            .hero p { margin: 0 auto 28px; }
            .hero-btns { justify-content: center; }
            .trust-badges { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-image { order: -1; max-width: 420px; height: auto; margin: 0 auto; }
            .footer-top { grid-template-columns: 1fr 1fr; }
            .pricing-row { flex-direction: column; align-items: flex-start; gap: 6px; }
            .pricing-price { text-align: left; }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
            .hours-display { gap: 24px; padding: 20px 24px; }
        }
        @media (max-width: 640px) {
            .testimonials-grid { grid-template-columns: 1fr; }
            .trust-badges { flex-direction: column; align-items: center; gap: 12px; }
        }
        @media (max-width: 640px) {
            .logo img { height: 40px !important; }
            section, .pricing-cards-section { padding: 60px 20px; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .pricing-cards { grid-template-columns: 1fr; }
            .contact-methods { grid-template-columns: 1fr; }
            .card-actions { flex-direction: column; align-items: stretch; }
            .quick-call { text-align: center; }
            .hours-display { flex-direction: column; gap: 16px; }
            /* Prevent mobile contact bar from overlapping content */
            body { padding-bottom: 80px; }
        }

        /* ============================================
           ACCESSIBILITY IMPROVEMENTS
           ============================================ */
        
        /* Skip Link for Keyboard Navigation */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 10000;
            font-weight: 600;
            border-radius: 0 0 8px 0;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Better Focus Indicators for Accessibility */
        *:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Remove default outline but keep focus-visible */
        *:focus:not(:focus-visible) {
            outline: none;
        }

        /* Special focus for buttons */
        button:focus-visible,
        .btn:focus-visible,
        a.btn:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
            box-shadow: 0 0 0 3px rgba(244, 165, 74, 0.2);
        }

        /* Focus for navigation links */
        .nav-links a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 4px;
        }

        /* Focus for pricing cards */
        .pricing-card:focus-within {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px var(--shadow-strong);
        }

