 /* ============================================
           ROOT & RESET
           ============================================ */
        :root {
            --ease-apple: cubic-bezier(0.22, 1, 0.36, 1);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
            --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --primary: #0ea5e9;
            --primary-dark: #0284c7;
            --gold: #d4af37;
            --gold-light: #f0e68c;
            --navy: #0f172a;
            --gray: #64748b;
            --light: #f8fafc;
            --border: #e2e8f0;
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: auto; /* Lenis handles this */
        }

        html.lenis, html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--navy);
            background: #ffffff;
            overflow-x: hidden;
        }

        /* ============================================
           LAYOUT UTILITIES
           ============================================ */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ============================================
           CURSOR (Desktop Only)
           ============================================ */
        .cursor {
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s var(--ease-smooth), background 0.15s;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%) translateZ(0);
            will-change: transform;
            display: none; /* Shown via JS on non-touch */
        }

        .cursor.hover {
            transform: translate(-50%, -50%) scale(3);
            background: var(--gold);
        }

        /* ============================================
           WELCOME OVERLAY
           ============================================ */
        #welcome-overlay {
            position: fixed;
            inset: 0;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.8s var(--ease-apple), transform 0.8s var(--ease-apple);
            will-change: opacity, transform;
        }

        .welcome-container {
            transform: translateZ(0);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 0;
            z-index: 1000;
            transition: all 0.4s var(--ease-smooth);
            background: transparent;
            transform: translateZ(0);
        }

        .navbar.visible {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }

        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--navy);
            text-decoration: none;
        }

        .brand img {
            height: 45px;
            width: auto;
            transition: transform 0.3s var(--ease-smooth);
        }

        .brand:hover img {
            transform: rotate(5deg) scale(1.1);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s var(--ease-smooth);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            transition: width 0.3s var(--ease-smooth);
        }

        .nav-links a:hover::before { width: 100%; }
        .nav-links a:hover { color: var(--primary); }

        .nav-cta {
            background: linear-gradient(135deg, var(--navy), #1e293b);
            color: white;
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s var(--ease-apple);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            transition: left 0.5s var(--ease-smooth);
            z-index: -1;
        }

        .nav-cta:hover::before { left: 0; }
        .nav-cta:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }
        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--navy);
            transition: 0.3s;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #fffbeb 100%);
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            will-change: transform;
            transform: translateZ(0);
        }

        .shape-1 { width: 600px; height: 600px; background: var(--primary); top: -150px; right: -150px; }
        .shape-2 { width: 400px; height: 400px; background: var(--gold); bottom: 10%; left: -100px; }
        .shape-3 { width: 300px; height: 300px; background: var(--primary); top: 40%; right: 20%; opacity: 0.05; }

        .hero-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-content {
            opacity: 0; /* Animated in */
            transform: translateY(30px);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(14, 165, 233, 0.1);
            border: 1px solid rgba(14, 165, 233, 0.2);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 25px;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(14, 165, 233, 0); }
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--navy);
            letter-spacing: -0.02em;
        }

        .hero-content h1 .line { display: block; overflow: hidden; }
        .hero-content h1 span { display: inline-block; }

        .text-accent {
            color: var(--primary);
            position: relative;
        }

        .text-accent::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: linear-gradient(120deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
            z-index: -1;
            transform: skewX(-10deg);
        }

        .hero-desc {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 35px;
            max-width: 90%;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .stat { text-align: left; }
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 5px;
        }
        .stat-label { font-size: 0.9rem; color: var(--gray); font-weight: 500; }

        .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

        .btn {
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s var(--ease-apple);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            cursor: pointer;
            transform: translateZ(0);
        }

        .btn-primary {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
        }
        .btn-primary:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
        }

        .btn-secondary {
            background: transparent;
            color: var(--navy);
            border-color: var(--border);
        }
        .btn-secondary:hover {
            border-color: var(--navy);
            background: var(--navy);
            color: white;
            transform: translateY(-3px);
        }

        .hero-lottie-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateZ(0);
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        .services {
            padding: 120px 40px;
            max-width: 1280px;
            margin: auto;
            background: white;
        }

        .offer-heading {
            text-align: center;
            margin-bottom: 120px;
            opacity: 0; /* Animated */
            transform: translateY(40px);
        }

        .offer-heading h1 {
            font-size: clamp(2rem, 4vw, 52px);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #0ea5e9, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .offer-heading .underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0ea5e9, #d4af37);
            margin: 15px auto 0;
            border-radius: 4px;
        }

        .feature {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 80px;
            margin-bottom: 140px;
            opacity: 0; /* Animated */
            transform: translateX(-100px);
            will-change: transform, opacity;
        }

        .feature.reverse {
            flex-direction: row-reverse;
            transform: translateX(100px);
        }

        .wrapper {
            position: relative;
            width: 400px;
            height: 400px;
            flex-shrink: 0;
            transform: translateZ(0);
        }

        .ring {
            position: absolute;
            border: 2px dashed #e0e0e0;
            border-radius: 50%;
            top: 0; left: 0; width: 100%; height: 100%;
            animation: spin 20s linear infinite;
            will-change: transform;
        }
        .ring:nth-child(2) { width: 90%; height: 90%; top: 5%; left: 5%; animation-direction: reverse; }

        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        .circle-image {
            width: 70%;
            height: 70%;
            top: 15%; left: 15%;
            border-radius: 50%;
            overflow: hidden;
            border: 6px solid #09aaff;
            box-shadow: 0 0 50px rgba(0, 170, 255, 0.3);
            position: absolute;
            transition: transform 0.4s var(--ease-smooth);
            background: #fff;
        }
        .circle-image:hover { transform: scale(1.05); }
        .circle-image img { width: 100%; height: 100%; object-fit: cover; }

        .text-container { max-width: 500px; flex: 1; }
        .text-container .number { color: #c1a850; font-weight: bold; font-size: 20px; margin-bottom: 5px; }
        .text-container h2 { font-size: 32px; margin: 0 0 15px; color: #111111; }
        .text-container p { font-size: 16px; line-height: 1.6; color: #555555; }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        .about {
            padding: 120px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-visual { position: relative; transform: translateZ(0); }
        
        .image-main {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #e0f2fe, #fef9c3);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
        }

        .stats-float {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            padding: 35px 40px;
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            text-align: center;
            min-width: 200px;
            border: 1px solid var(--border);
            z-index: 10;
        }

        .stats-number {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .stats-label { color: var(--gray); font-weight: 600; font-size: 1rem; }

        .about-content { padding-left: 20px; }
        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(14, 165, 233, 0.1);
            border: 1px solid rgba(14, 165, 233, 0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3vw, 3.2rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--navy);
        }
        .about-content h2 span { color: var(--primary); }

        .about-desc { color: var(--gray); font-size: 1.2rem; line-height: 1.8; margin-bottom: 40px; }

        .feature-list { display: flex; flex-direction: column; gap: 20px; }
        .feature-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(248, 250, 252, 0.8);
            border-radius: 16px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease-apple);
            cursor: pointer;
        }
        .feature-item:hover {
            transform: translateX(10px);
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-color: var(--primary);
        }

        .feature-icon {
            width: 50px; height: 50px;
            background: linear-gradient(135deg, var(--gold), #d97706);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.3rem; flex-shrink: 0;
            transition: transform 0.3s var(--ease-smooth);
        }
        .feature-item:hover .feature-icon { transform: scale(1.1) rotate(5deg); }

        .feature-content h4 { font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
        .feature-content p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }
        /* Location Section - Optimized */
        .location {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 120px 0;
            background: linear-gradient(135deg, var(--navy), #1e293b);
            color: white;
            overflow: hidden;
            contain: layout style paint;
        }

        .location::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
            border-radius: 50%;
            animation: pulse-bg 10s ease-in-out infinite;
            will-change: transform, opacity;
            transform: translateZ(0);
            pointer-events: none;
        }

        @keyframes pulse-bg {
            0%, 100% { transform: scale(1) translateZ(0); opacity: 0.5; }
            50% { transform: scale(1.1) translateZ(0); opacity: 0.8; }
        }

        .location-grid {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .location-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .location-content > p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .location-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .loc-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s var(--ease-apple);
            will-change: transform;
            transform: translateZ(0);
            cursor: pointer;
        }

        .loc-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
            border-color: var(--primary);
        }

        .loc-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            transition: transform 0.3s var(--ease-smooth);
        }

        .loc-item:hover .loc-icon {
            transform: scale(1.1);
        }

        .loc-text h4 {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .loc-text p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Map Container - Optimized */
        .map-container {
            position: relative;
            width: 100%;
            height: 500px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            will-change: transform;
            transform: translateZ(0);
        }

        .map-svg {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .map-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(14, 165, 233, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(14, 165, 233, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: grid-move 20s linear infinite;
            will-change: transform;
        }

        @keyframes grid-move {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(30px, 30px, 0); }
        }

        .location-marker {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateZ(0);
            text-align: center;
            z-index: 10;
            will-change: transform;
        }

        .marker-pulse {
            width: 30px;
            height: 30px;
            background: var(--primary);
            border-radius: 50%;
            margin: 0 auto 15px;
            position: relative;
            cursor: pointer;
            will-change: transform;
            transform: translateZ(0);
        }

        .marker-pulse::before,
        .marker-pulse::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--primary);
            animation: ripple 2s infinite;
            will-change: transform, opacity;
        }

        .marker-pulse::after {
            animation-delay: 0.5s;
        }

        @keyframes ripple {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
            100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
        }

        .marker-label {
            font-weight: 600;
            font-size: 1.1rem;
            background: rgba(0, 0, 0, 0.8);
            padding: 10px 20px;
            border-radius: 8px;
            border: 1px solid var(--primary);
            white-space: nowrap;
        }

        .map-route {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .route-line {
            stroke: var(--primary);
            stroke-width: 2;
            fill: none;
            stroke-dasharray: 10;
            animation: dash 30s linear infinite;
            will-change: stroke-dashoffset;
        }

        @keyframes dash {
            to { stroke-dashoffset: -1000; }
        }

        .floating-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            animation: dot-float 4s infinite;
            will-change: transform, opacity;
        }

        .dot:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
        .dot:nth-child(2) { top: 30%; left: 60%; animation-delay: 1s; }
        .dot:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
        .dot:nth-child(4) { top: 70%; left: 70%; animation-delay: 3s; }

        @keyframes dot-float {
            0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0); }
            50% { opacity: 1; transform: translate3d(0, -20px, 0) scale(1); }
            100% { opacity: 0; transform: translate3d(0, -40px, 0) scale(0); }
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact-3d {
            padding: 150px 0;
            background: #ffffff;
            position: relative;
        }

        .contact-grid-3d {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            position: relative;
            z-index: 2;
        }

        .contact-left-3d h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--navy);
            line-height: 1.2;
        }
        .contact-left-3d h2 span { color: var(--primary); }
        .contact-left-3d > p { color: var(--gray); font-size: 1.2rem; line-height: 1.8; }

        .contact-features {
            margin-top: 50px;
            display: flex;
            gap: 30px;
        }
        .contact-feature { text-align: center; transition: transform 0.4s var(--ease-smooth); cursor: pointer; }
        .contact-feature:hover { transform: translateY(-5px); }
        .contact-feature-icon { font-size: 3rem; margin-bottom: 10px; transition: transform 0.3s var(--ease-smooth); }
        .contact-feature:hover .contact-feature-icon { transform: scale(1.1); }
        .contact-feature-title { font-weight: 700; color: var(--navy); margin-bottom: 5px; }
        .contact-feature-subtitle { color: var(--gray); font-size: 0.9rem; }

        .contact-form-3d {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            padding: 60px;
            border-radius: 40px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg) translateZ(0);
            transition: transform 0.5s var(--ease-apple);
            will-change: transform;
        }
        .contact-form-3d:hover { transform: perspective(1000px) rotateY(0deg) translateZ(0); }

        .input-group-3d { margin-bottom: 30px; position: relative; }
        .input-group-3d label { display: block; margin-bottom: 12px; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
        .input-group-3d input, .input-group-3d select, .input-group-3d textarea {
            width: 100%; padding: 18px 25px;
            border: 2px solid var(--border);
            border-radius: 15px;
            font-family: inherit; font-size: 1.05rem;
            transition: all 0.3s var(--ease-smooth);
            background: white; color: var(--navy);
        }
        .input-group-3d input:focus, .input-group-3d select:focus, .input-group-3d textarea:focus {
            outline: none; border-color: var(--primary);
            box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.1);
            transform: scale(1.02);
        }

        .btn-submit-3d {
            width: 100%; padding: 22px;
            background: linear-gradient(135deg, var(--navy), #1e293b);
            color: white; border: none; border-radius: 15px;
            font-weight: 700; font-size: 1.2rem;
            cursor: pointer; transition: all 0.4s var(--ease-apple);
            position: relative; overflow: hidden;
            transform: translateZ(0);
        }
        .btn-submit-3d:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
        }
        .btn-submit-3d::before {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }
        .btn-submit-3d:hover::before { left: 100%; }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
            padding: 50px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ============================================
           RESPONSIVE STYLES
           ============================================ */
        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .menu-toggle { display: flex; }
            
            .hero-inner, .about-grid, .location-grid, .contact-grid-3d {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hero { padding-top: 100px; text-align: center; }
            .hero-desc { max-width: 100%; }
            .hero-stats { justify-content: center; }
            .hero-buttons { justify-content: center; }
            
            .hero-lottie-wrapper { order: -1; height: 400px; }
            
            .feature, .feature.reverse { flex-direction: column; gap: 40px; text-align: center; }
            .wrapper { width: 300px; height: 300px; }
            
            .stats-float { right: 10px; bottom: -20px; padding: 20px; }
            .stats-number { font-size: 2.5rem; }
            
            .contact-form-3d { transform: none; padding: 40px; }
            .contact-form-3d:hover { transform: none; }
        }

        @media (max-width: 768px) {
            .container, .nav-inner, .hero-inner, .location-grid, .contact-grid-3d { padding: 0 20px; }
            .services { padding: 80px 20px; }
            .feature { margin-bottom: 80px; }
            
            .cursor { display: none !important; }
            
            .hero-content h1 { font-size: 2.2rem; }
            .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
            
            .wrapper { width: 280px; height: 280px; }
            .text-container h2 { font-size: 1.8rem; }
            
            .contact-features { flex-direction: column; gap: 30px; }
            
            /* Reduce motion for performance */
            .shape, .ring, .map-grid { animation: none !important; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }