        :root {
            --bg: #fafaf9;
            --fg: #102a43;
            --accent: #0ea5e9;
            --navy: #102a43;
        }

        * {
            scroll-behavior: smooth;
        }

        html,
        body {
            overflow-x: hidden;
            max-width: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #0ea5e9;
            border-radius: 4px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
            }
            50% {
                box-shadow: 0 0 30px rgba(14, 165, 233, 0.7);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .animate-float {
            animation: float 4s ease-in-out infinite;
        }

        .pulse-glow {
            animation: pulseGlow 3s infinite;
        }

        .animation-delay-100 { animation-delay: 0.1s; }
        .animation-delay-200 { animation-delay: 0.2s; }
        .animation-delay-300 { animation-delay: 0.3s; }
        .animation-delay-400 { animation-delay: 0.4s; }

        .hero-gradient {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #eef2ff 100%);
        }

        .sky-gradient {
            background: linear-gradient(135deg, #0ea5e9 0%, #4f46e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .btn-primary {
            background: linear-gradient(135deg, #0ea5e9 0%, #4f46e5 100%);
            color: #ffffff;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background-size: 200% auto;
        }

        .btn-primary:hover {
            background-position: right center;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.4);
            color: #ffffff;
        }

        .btn-secondary {
            border: 2px solid #0ea5e9;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background: transparent;
        }

        .btn-secondary:hover {
            background: rgba(14, 165, 233, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px -3px rgba(14, 165, 233, 0.2);
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .focus-ring:focus-visible {
            outline: 2px solid #0ea5e9;
            outline-offset: 2px;
        }

        .nav-blur {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .pattern-overlay {
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        /* Fullscreen Mobile Menu Animations */
        .mobile-menu-enter {
            opacity: 0;
            transform: translateY(-100%);
            pointer-events: none;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .mobile-menu-enter.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .mobile-link {
            display: block;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .mobile-menu-enter.active .mobile-link {
            opacity: 1;
            transform: translateY(0);
        }

        .social-icon {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .mobile-menu-enter.active .social-icon {
            opacity: 1;
            transform: scale(1);
        }

        /* Staggered Delays */
        .delay-100 { transition-delay: 100ms; }
        .delay-150 { transition-delay: 150ms; }
        .delay-200 { transition-delay: 200ms; }
        .delay-250 { transition-delay: 250ms; }
        .delay-300 { transition-delay: 300ms; }
        .delay-400 { transition-delay: 400ms; }

        .form-input {
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            background: rgba(255, 255, 255, 0.8);
        }

        .form-input:focus {
            border-color: #0ea5e9;
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
            background: #ffffff;
            transform: translateY(-1px);
        }

        .loader {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        /* Contact Cards */
        .contact-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.5rem;
            border: 1px solid rgba(14, 165, 233, 0.1);
            transition: all 0.3s ease;
        }
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.15);
            border-color: rgba(14, 165, 233, 0.3);
        }

        /* Business Hours Table */
        .hours-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 8px;
        }
        .hours-table tr {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }
        .hours-table td {
            padding: 12px 16px;
            font-size: 0.875rem;
        }
        .hours-table td:first-child {
            font-weight: 700;
            color: #1e293b;
            border-radius: 12px 0 0 12px;
        }
        .hours-table td:last-child {
            text-align: right;
            border-radius: 0 12px 12px 0;
        }

        /* FAQ Styling (Matching Service Page) */
        .faq-item {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            border-color: #0ea5e9;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
        }
        .faq-trigger.active i {
            transform: rotate(180deg);
        }

        .answer-box {
            background: linear-gradient(to right, #f0f9ff, #e0f2fe);
            border: 1px solid #bae6fd;
            position: relative;
        }
        .answer-box::before {
            content: 'ANS';
            position: absolute;
            top: -10px;
            left: 20px;
            background: #0ea5e9;
            color: white;
            font-size: 10px;
            font-weight: 900;
            padding: 2px 8px;
            border-radius: 4px;
        }

        .landmark-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: #f1f5f9;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: #475569;
        }
