
        /* ========================================
           CSS VARIABLES
        ======================================== */
        :root {
            --bg: #fefdfb;
            --fg: #0f2744;
            --muted: #64748b;
            --accent: #0d9488;
            --accent-light: #14b8a6;
            --card: #ffffff;
            --border: #e2e8f0;
            --navy: #1e3a5f;
            --coral: #f97316;
            --gradient-1: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
            --gradient-2: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
            --gradient-hero: linear-gradient(180deg, rgba(15,39,68,0.85) 0%, rgba(30,58,95,0.7) 100%);
            --shadow-sm: 0 2px 8px rgba(15,39,68,0.06);
            --shadow-md: 0 8px 30px rgba(15,39,68,0.1);
            --shadow-lg: 0 20px 50px rgba(15,39,68,0.15);
            --shadow-glow: 0 0 40px rgba(13,148,136,0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--fg);
            overflow-x: hidden;
        }
        
        /* ========================================
           LOADER STYLES
        ======================================== */
        .loader-container {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: linear-gradient(135deg, var(--navy) 0%, #0f2744 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        
        .loader-container.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-logo {
            margin-bottom: 3rem;
        }
        
        .loader-logo svg {
            width: 80px;
            height: 80px;
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        .loader-text {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: white;
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
        }
        
        .paw-trail {
            display: flex;
            gap: 1rem;
        }
        
        .paw {
            width: 24px;
            height: 24px;
            opacity: 0.3;
            animation: paw-step 1.5s ease-in-out infinite;
        }
        
        .paw:nth-child(1) { animation-delay: 0s; }
        .paw:nth-child(2) { animation-delay: 0.2s; }
        .paw:nth-child(3) { animation-delay: 0.4s; }
        .paw:nth-child(4) { animation-delay: 0.6s; }
        .paw:nth-child(5) { animation-delay: 0.8s; }
        
        @keyframes paw-step {
            0%, 100% { opacity: 0.2; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.1); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(13,148,136,0.5)); }
            50% { filter: drop-shadow(0 0 25px rgba(13,148,136,0.8)); }
        }
        
        /* ========================================
           SCROLL REVEAL ANIMATIONS
        ======================================== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        
        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
            .paw { animation: none; opacity: 0.5; }
        }
        
        /* ========================================
           NAVBAR
        ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-sm);
            padding: 0.75rem 0;
        }
        
        .navbar.scrolled .nav-link {
            color: var(--fg);
        }
        
        .navbar.scrolled .logo-text {
            color: var(--fg);
        }
        
        .nav-link {
            color: white;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* ========================================
           HERO SECTION
        ======================================== */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1920&q=80') center/cover;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: var(--gradient-hero);
        }
        
        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 80%, rgba(13,148,136,0.15) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(249,115,22,0.1) 0%, transparent 40%);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
        }
        
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .hero-title span {
            color: var(--accent-light);
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255,255,255,0.85);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.7;
        }
        
        .btn-primary {
            background: var(--gradient-1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 100px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(13,148,136,0.4);
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(13,148,136,0.5);
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        .btn-secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 100px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
            cursor: pointer;
        }
        
        .btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-3px);
        }
        
        /* Floating Paw Animation */
        .floating-paws {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-paw {
            position: absolute;
            opacity: 0.1;
            animation: float-up 15s linear infinite;
        }
        
        @keyframes float-up {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* ========================================
           STATS SECTION
        ======================================== */
        .stats-section {
            background: var(--gradient-2);
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        /* ========================================
           SERVICES SECTION
        ======================================== */
        .services-section {
            background: var(--bg);
            position: relative;
        }
        
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 30% 70%, rgba(13,148,136,0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--fg);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }
        
        .service-card {
            background: var(--card);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(13,148,136,0.1) 0%, rgba(13,148,136,0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background: var(--gradient-1);
            transform: scale(1.1);
        }
        
        .service-card:hover .service-icon svg {
            color: white;
        }
        
        .service-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent);
            transition: color 0.3s ease;
        }
        
        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--fg);
            margin-bottom: 0.75rem;
        }
        
        .service-desc {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* ========================================
           GALLERY SECTION
        ======================================== */
        .gallery-section {
            background: linear-gradient(180deg, var(--bg) 0%, #f8fafc 100%);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 280px);
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(15,39,68,0.8) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-caption {
            color: white;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }
            .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 1;
            }
            .gallery-item {
                height: 200px;
            }
            .gallery-item:nth-child(1) {
                height: 280px;
            }
        }
        
        /* ========================================
           TESTIMONIALS
        ======================================== */
        .testimonials-section {
            background: var(--gradient-2);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 80% 20%, rgba(13,148,136,0.2) 0%, transparent 40%);
        }
        
        .testimonial-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
        }
        
        .testimonial-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .testimonial-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }
        
        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: #fbbf24;
            color: #fbbf24;
        }
        
        .testimonial-text {
            color: rgba(255,255,255,0.9);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
        }
        
        .testimonial-name {
            color: white;
            font-weight: 600;
        }
        
        .testimonial-pet {
            color: rgba(255,255,255,0.6);
            font-size: 0.875rem;
        }
        
        /* ========================================
           CONTACT FORM
        ======================================== */
        .contact-section {
            background: var(--bg);
            position: relative;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 70% 30%, rgba(13,148,136,0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .form-container {
            background: var(--card);
            border-radius: 32px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-weight: 500;
            color: var(--fg);
            margin-bottom: 0.5rem;
        }
        
        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--bg);
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(13,148,136,0.1);
        }
        
        .form-input::placeholder {
            color: var(--muted);
        }
        
        select.form-input {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 20px;
        }
        
        textarea.form-input {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-submit {
            width: 100%;
            padding: 1.25rem 2rem;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }
        
        .btn-submit:active {
            transform: translateY(0);
        }
        
        /* ========================================
           MAP SECTION
        ======================================== */
        .map-section {
            background: #f8fafc;
        }
        
        .map-container {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            background: var(--gradient-2);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 10% 90%, rgba(13,148,136,0.2) 0%, transparent 40%);
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-desc {
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .footer-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1.25rem;
        }
        
        .footer-link {
            display: block;
            color: rgba(255,255,255,0.7);
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--accent-light);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .social-link svg {
            width: 20px;
            height: 20px;
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255,255,255,0.5);
        }
        
        /* ========================================
           WHATSAPP BUTTON
        ======================================== */
        .whatsapp-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse-whatsapp 2s ease-in-out infinite;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37,211,102,0.5);
        }
        
        .whatsapp-btn svg {
            width: 32px;
            height: 32px;
            color: white;
        }
        
        @keyframes pulse-whatsapp {
            0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
        }
        
        /* ========================================
           CHATBOT
        ======================================== */
        .chatbot-container {
            position: fixed;
            bottom: 6rem;
            right: 2rem;
            width: 350px;
            max-height: 500px;
            background: var(--card);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            z-index: 998;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .chatbot-container.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .chatbot-header {
            background: var(--gradient-1);
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .chatbot-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .chatbot-avatar svg {
            width: 24px;
            height: 24px;
            color: white;
        }
        
        .chatbot-info h4 {
            color: white;
            font-weight: 600;
        }
        
        .chatbot-info span {
            color: rgba(255,255,255,0.7);
            font-size: 0.8rem;
        }
        
        .chatbot-messages {
            padding: 1rem;
            max-height: 300px;
            overflow-y: auto;
        }
        
        .chat-message {
            padding: 0.75rem 1rem;
            border-radius: 12px;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .chat-message.bot {
            background: #f1f5f9;
            color: var(--fg);
            border-bottom-left-radius: 4px;
        }
        
        .chat-message.user {
            background: var(--gradient-1);
            color: white;
            margin-left: auto;
            max-width: 80%;
            border-bottom-right-radius: 4px;
        }
        
        .chatbot-input {
            padding: 1rem;
            border-top: 1px solid var(--border);
            display: flex;
            gap: 0.5rem;
        }
        
        .chatbot-input input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 0.9rem;
        }
        
        .chatbot-input input:focus {
            outline: none;
            border-color: var(--accent);
        }
        
        .chatbot-send {
            width: 44px;
            height: 44px;
            background: var(--gradient-1);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .chatbot-send:hover {
            transform: scale(1.05);
        }
        
        .chatbot-send svg {
            width: 20px;
            height: 20px;
            color: white;
        }
        
        .quick-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            padding: 0 1rem 1rem;
        }
        
        .quick-option {
            padding: 0.5rem 1rem;
            background: rgba(13,148,136,0.1);
            border: 1px solid rgba(13,148,136,0.2);
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--accent);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quick-option:hover {
            background: var(--accent);
            color: white;
        }
        
        .chat-toggle {
            position: fixed;
            bottom: 6.5rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            box-shadow: var(--shadow-md);
        }
        
        .chat-toggle:hover {
            transform: scale(1.1);
        }
        
        .chat-toggle svg {
            width: 24px;
            height: 24px;
            color: white;
        }
        
        /* ========================================
           MOBILE NAV
        ======================================== */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .mobile-menu-btn svg {
            width: 28px;
            height: 28px;
            color: white;
        }
        
        .navbar.scrolled .mobile-menu-btn svg {
            color: var(--fg);
        }
        
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        
        .mobile-nav {
            position: fixed;
            inset: 0;
            background: rgba(15,39,68,0.98);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            transform: translateX(100%);
            transition: transform 0.4s ease;
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav-link {
            color: white;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            transition: color 0.3s ease;
        }
        
        .mobile-nav-link:hover {
            color: var(--accent-light);
        }
        
        .mobile-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .mobile-close svg {
            width: 32px;
            height: 32px;
            color: white;
        }
        
        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 768px) {
            .form-container {
                padding: 1.5rem;
                border-radius: 24px;
            }
            
            .stat-item {
                padding: 1.5rem 1rem;
            }
            
            .chatbot-container {
                width: calc(100% - 2rem);
                right: 1rem;
                bottom: 7rem;
            }
            
            .whatsapp-btn {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 54px;
                height: 54px;
            }
            
            .chat-toggle {
                bottom: 5.5rem;
                right: 1.5rem;
            }
        }
        
        /* ========================================
           FOCUS STATES (Accessibility)
        ======================================== */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
    