/* ===== CSS CUSTOM PROPERTIES ===== */
        :root {
            /* Desert Color Palette */
            --sandstone: #E8D5C4;
            --warm-tan: #D4B896;
            --sky-blue: #A8CDEC;
            --sage-green: #B8C5A8;
            --burnt-orange: #D4764E;
            --rust-red: #B85C3E;
            --charcoal: #3A3A3A;
            --off-white: #FAF8F5;
            --light-sand: #F5EDE3;
            --desert-gold: #DAA520;
            --canyon-red: #C1440E;
            
            /* Typography */
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Open Sans', sans-serif;
            
            /* Spacing */
            --section-padding: 80px 20px;
            --container-max: 1200px;
            
            /* Transitions */
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--charcoal);
            background-color: var(--off-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.98) 0%, 
                rgba(250, 248, 245, 0.98) 50%,
                rgba(245, 237, 227, 0.98) 100%);
            backdrop-filter: blur(15px);
            z-index: 1000;
            box-shadow: 
                0 4px 30px rgba(0, 0, 0, 0.08),
                0 2px 10px rgba(212, 118, 78, 0.05),
                inset 0 -1px 0 rgba(212, 118, 78, 0.1);
            transition: var(--transition-smooth);
            overflow: visible;
            border-bottom: 2px solid transparent;
            background-image: 
                linear-gradient(135deg, 
                    rgba(255, 255, 255, 0.98) 0%, 
                    rgba(250, 248, 245, 0.98) 50%,
                    rgba(245, 237, 227, 0.98) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><filter id="noise"><feTurbulence baseFrequency="0.8" numOctaves="3" type="fractalNoise"/></filter></defs><rect width="100" height="100" filter="url(%23noise)" opacity="0.02"/></svg>');
        }
        
        .navbar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--burnt-orange) 20%, 
                var(--desert-gold) 50%, 
                var(--burnt-orange) 80%, 
                transparent 100%);
            opacity: 0.6;
        }
        
        .nav-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 8px 20px 8px 380px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 60px;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--burnt-orange);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            position: absolute;
            left: 20px;
            top: 0;
            z-index: 1001;
        }
        
        .logo img {
            height: 350px;
            width: auto;
            transition: var(--transition-smooth);
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
            position: relative;
        }
        
        .logo:hover img {
            transform: scale(1.05) rotate(-2deg);
            filter: drop-shadow(0 20px 50px rgba(212, 118, 78, 0.6));
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        
        .nav-menu a {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--charcoal);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            text-decoration: none;
            padding: 8px 4px;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--burnt-orange), var(--desert-gold));
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }
        
        .nav-menu a:hover {
            color: var(--burnt-orange);
            transform: translateY(-2px);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-phone {
            color: var(--burnt-orange) !important;
            font-weight: 700 !important;
            font-size: 1.05rem;
            padding: 10px 20px;
            background: linear-gradient(135deg, 
                rgba(212, 118, 78, 0.12) 0%, 
                rgba(218, 165, 32, 0.12) 100%);
            border-radius: 10px;
            transition: var(--transition-smooth);
            border: 2px solid rgba(212, 118, 78, 0.2);
            box-shadow: 0 4px 15px rgba(212, 118, 78, 0.1);
        }
        
        .nav-phone:hover {
            background: linear-gradient(135deg, 
                rgba(212, 118, 78, 0.18) 0%, 
                rgba(218, 165, 32, 0.18) 100%);
            transform: translateY(-2px);
            border-color: rgba(212, 118, 78, 0.4);
            box-shadow: 0 6px 20px rgba(212, 118, 78, 0.2);
        }
        
        .nav-phone::after {
            display: none;
        }
        
        .nav-book-btn {
            background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust-red) 100%);
            color: white !important;
            padding: 12px 28px;
            border-radius: 30px;
            transition: var(--transition-smooth);
            font-weight: 700;
            box-shadow: 
                0 6px 20px rgba(212, 118, 78, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .nav-book-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.3), 
                transparent);
            transition: left 0.5s;
        }
        
        .nav-book-btn:hover::before {
            left: 100%;
        }
        
        .nav-book-btn:hover {
            background: linear-gradient(135deg, var(--rust-red) 0%, var(--canyon-red) 100%);
            transform: translateY(-3px);
            box-shadow: 
                0 10px 30px rgba(212, 118, 78, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .nav-book-btn::after {
            display: none;
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        
        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--charcoal);
            margin: 5px 0;
            transition: var(--transition-smooth);
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #87CEEB 0%, #F4A460 50%, #D2691E 100%);
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/14.webp');
            background-size: cover;
            background-position: center;
            z-index: 1;
            transform: translateZ(0);
        }
        
        .hero-background::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg, 
                rgba(0, 0, 0, 0.05) 0%, 
                rgba(0, 0, 0, 0.1) 100%
            );
        }
        
        .hero-background::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.01) 2px,
                rgba(0, 0, 0, 0.01) 4px
            );
            opacity: 0.2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.15) 100%);
            z-index: 2;
        }
        
        /* Floating dust particles */
        .hero-overlay::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
                radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
                radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
            background-size: 50px 50px, 80px 80px, 130px 130px;
            background-position: 0 0, 40px 60px, 130px 270px;
            animation: floatParticles 30s linear infinite;
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 900px;
            padding: 20px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 
                3px 3px 8px rgba(0, 0, 0, 0.8),
                -1px -1px 3px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(0, 0, 0, 0.5);
            letter-spacing: -1px;
            position: relative;
        }
        
        .hero h1::before {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 0;
            z-index: -1;
            background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: white;
            margin-bottom: 40px;
            font-weight: 600;
            opacity: 1;
            text-shadow: 
                2px 2px 6px rgba(0, 0, 0, 0.9),
                0 0 20px rgba(0, 0, 0, 0.7);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            font-family: var(--font-heading);
            font-weight: 700;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust-red) 100%);
            color: white;
            box-shadow: 
                0 10px 40px rgba(212, 118, 78, 0.4),
                inset 0 -3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--rust-red) 0%, var(--canyon-red) 100%);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 20px 50px rgba(212, 118, 78, 0.5),
                inset 0 -3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary:active {
            transform: translateY(-2px) scale(0.98);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.95);
            color: var(--burnt-orange);
            border: 3px solid var(--burnt-orange);
            box-shadow: 
                0 10px 30px rgba(255, 255, 255, 0.3),
                inset 0 2px 5px rgba(212, 118, 78, 0.1);
        }
        
        .btn-secondary:hover {
            background: var(--burnt-orange);
            color: white;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(212, 118, 78, 0.4),
                inset 0 2px 5px rgba(255, 255, 255, 0.2);
        }
        
        .btn-secondary:active {
            transform: translateY(-2px) scale(0.98);
        }
        
        /* ===== SCROLL INDICATOR ===== */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid var(--charcoal);
            border-radius: 20px;
            position: relative;
        }
        
        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: var(--charcoal);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: scrollDown 2s infinite;
        }
        
        /* ===== SECTIONS BASE ===== */
        section {
            padding: var(--section-padding);
            position: relative;
        }
        
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--burnt-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            letter-spacing: -1px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, transparent, var(--burnt-orange), transparent);
            border-radius: 3px;
            animation: shimmer 3s ease-in-out infinite;
        }
        
        .section-subtitle {
            font-size: 1.15rem;
            color: var(--charcoal);
            opacity: 0.85;
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.8;
        }
        
        /* ===== TOURS SECTION ===== */
        #tours {
            background: 
                linear-gradient(135deg, rgba(245, 237, 227, 0.8) 0%, rgba(248, 244, 240, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><filter id="grain"><feTurbulence type="fractalNoise" baseFrequency="1.2" numOctaves="3" result="noise"/><feColorMatrix in="noise" type="saturate" values="0"/></filter></defs><rect width="100" height="100" filter="url(%23grain)" opacity="0.03"/></svg>');
        }
        
        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin-top: 40px;
        }
        
        .tour-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 
                0 15px 40px rgba(0, 0, 0, 0.08),
                0 5px 15px rgba(212, 118, 78, 0.05);
            transition: var(--transition-smooth);
            position: relative;
            border: 2px solid transparent;
        }
        
        .tour-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--burnt-orange), var(--desert-gold));
            opacity: 0;
            transition: opacity 0.4s;
            border-radius: 25px;
            z-index: -1;
        }
        
        .tour-card:hover::before {
            opacity: 0.05;
        }
        
        .tour-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 25px 60px rgba(212, 118, 78, 0.2),
                0 10px 30px rgba(0, 0, 0, 0.12);
            border-color: rgba(212, 118, 78, 0.2);
        }
        
        .tour-image {
            height: 240px;
            position: relative;
            overflow: hidden;
            background-color: #000;
            background-size: cover;
            background-position: center;
        }
        
        .tour-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, transparent 0%, rgba(58, 58, 58, 0.1) 100%);
        }
        
        .difficulty-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--burnt-orange);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            z-index: 10;
        }
        
        .tour-content {
            padding: 30px;
        }
        
        .tour-title {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        
        .tour-description {
            color: var(--charcoal);
            opacity: 0.8;
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        .tour-details {
            display: flex;
            gap: 25px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .tour-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .tour-detail-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            box-shadow: 0 3px 10px rgba(212, 118, 78, 0.3);
        }
        
        .tour-price {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--burnt-orange), var(--desert-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .price-suffix {
            font-size: 1rem;
            opacity: 0.7;
        }
        
        .tour-book-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
            color: white;
            padding: 16px;
            border-radius: 15px;
            font-family: var(--font-heading);
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-size: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 20px rgba(212, 118, 78, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .tour-book-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        
        .tour-book-btn:hover::before {
            left: 100%;
        }
        
        .tour-book-btn:hover {
            background: linear-gradient(135deg, var(--rust-red), var(--canyon-red));
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(212, 118, 78, 0.4);
        }
        
        /* ===== 3D VIDEO FRAME ===== */
        .video-container-wrapper {
            max-width: 1200px;
            margin: 50px auto 60px;
            perspective: 1500px;
        }
        
        .video-frame-3d {
            position: relative;
            padding: 40px;
            background: 
                linear-gradient(135deg, #D4A574 0%, #C19A6B 25%, #B8956A 50%, #A8865F 75%, #8B7355 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4" type="fractalNoise"/></filter><rect width="200" height="200" filter="url(%23noise)" opacity="0.15"/></svg>');
            background-blend-mode: overlay;
            border-radius: 20px;
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.4),
                inset 0 2px 10px rgba(255, 255, 255, 0.3),
                inset 0 -10px 30px rgba(0, 0, 0, 0.3);
            transform: rotateX(5deg);
            transition: var(--transition-smooth);
            border: 3px solid #8B7355;
        }
        
        .video-frame-3d::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            pointer-events: none;
        }
        
        .video-frame-3d::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: 
                linear-gradient(135deg, rgba(139, 115, 85, 0.4) 0%, transparent 50%, rgba(184, 149, 106, 0.4) 100%);
            border-radius: 25px;
            z-index: -1;
            filter: blur(15px);
        }
        
        .video-frame-3d:hover {
            transform: rotateX(0deg) scale(1.02);
            box-shadow: 
                0 40px 100px rgba(0, 0, 0, 0.5),
                inset 0 2px 10px rgba(255, 255, 255, 0.3),
                inset 0 -10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .video-frame-inner {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background: #000;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.6),
                inset 0 0 20px rgba(0, 0, 0, 0.4);
        }
        
        .video-frame-inner iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }
        
        /* Rock texture accents on corners */
        .video-frame-3d::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            width: 60px;
            height: 60px;
            background: 
                radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.6) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(139, 115, 85, 0.4) 0%, transparent 70%);
            border-radius: 50% 0 0 0;
            opacity: 0.5;
        }
        
        /* ===== WHY VERNAL SECTION ===== */
        #why-vernal {
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }
        
        #why-vernal::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 40%;
            height: 100%;
            background: radial-gradient(ellipse, rgba(212, 118, 78, 0.05) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }
        
        #why-vernal::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -10%;
            width: 40%;
            height: 100%;
            background: radial-gradient(ellipse, rgba(168, 205, 236, 0.05) 0%, transparent 70%);
            animation: float 25s ease-in-out infinite reverse;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: var(--transition-smooth);
            border: 1px solid rgba(212, 118, 78, 0.1);
            position: relative;
        }
        
        .feature-card::before {
            content: none;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(212, 118, 78, 0.15);
        }
        
        .feature-card:hover .feature-image {
            transform: scale(1.05);
        }
        
        .feature-image {
            height: 200px;
            position: relative;
            overflow: hidden;
            background-color: #000;
            background-size: cover;
            background-position: center;
            transition: var(--transition-smooth);
        }
        
        .feature-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        }
        
        .feature-content {
            padding: 25px;
            text-align: center;
        }
        
        .feature-icon {
            display: none;
        }
        
        .feature-title {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 15px;
            letter-spacing: -0.3px;
        }
        
        .feature-description {
            color: var(--charcoal);
            opacity: 0.8;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        /* ===== VEHICLES SECTION ===== */
        #vehicles {
            background: 
                linear-gradient(135deg, rgba(245, 237, 227, 0.7) 0%, rgba(248, 244, 240, 0.8) 100%),
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 118, 78, 0.02) 10px, rgba(212, 118, 78, 0.02) 20px);
        }
        
        .vehicles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin-top: 40px;
        }
        
        .vehicle-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.08),
                0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition-smooth);
            position: relative;
            border: 2px solid transparent;
        }
        
        .vehicle-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--sky-blue), var(--burnt-orange));
            opacity: 0;
            transition: opacity 0.4s;
            border-radius: 20px;
            z-index: -1;
        }
        
        .vehicle-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 25px 55px rgba(168, 205, 236, 0.2),
                0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: rgba(168, 205, 236, 0.3);
        }
        
        .vehicle-card:hover::after {
            opacity: 0.04;
        }
        
        .vehicle-image {
            height: 220px;
            position: relative;
            overflow: hidden;
            background-color: #000;
            background-size: cover;
            background-position: center;
        }
        
        .vehicle-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
        }
        
        .vehicle-content {
            padding: 30px;
        }
        
        .vehicle-name {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 20px;
            letter-spacing: -0.3px;
        }
        
        .vehicle-specs {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .vehicle-specs li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-between;
            font-size: 0.95rem;
            transition: padding-left 0.3s;
        }
        
        .vehicle-card:hover .vehicle-specs li {
            padding-left: 5px;
        }
        
        .vehicle-specs li:last-child {
            border-bottom: none;
        }
        
        .spec-label {
            font-weight: 700;
            color: var(--charcoal);
        }
        
        .spec-value {
            color: var(--burnt-orange);
            font-weight: 600;
        }
        
        /* ===== GALLERY SECTION - CAROUSEL ===== */
        #gallery {
            background: 
                linear-gradient(to bottom, rgba(250, 248, 245, 0.9), rgba(245, 237, 227, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23E8D5C4" stroke-width="0.5"/></pattern></defs><rect width="200" height="200" fill="url(%23grid)"/></svg>');
            padding: 80px 20px 100px;
        }
        
        .carousel-container {
            max-width: 1100px;
            margin: 40px auto 0;
        }
        
        .carousel-main {
            position: relative;
            width: 100%;
            height: 600px;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(212, 118, 78, 0.1);
        }
        
        .carousel-track-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--warm-tan), var(--sage-green));
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(58, 58, 58, 0.95) 0%, rgba(58, 58, 58, 0.8) 50%, transparent 100%);
            color: white;
            padding: 40px 30px 25px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        
        .carousel-slide.active .carousel-caption {
            transform: translateY(0);
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition-smooth);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-btn span {
            font-size: 2.5rem;
            line-height: 1;
            color: var(--burnt-orange);
            font-weight: 300;
        }
        
        .carousel-btn:hover {
            background: var(--burnt-orange);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(212, 118, 78, 0.4);
        }
        
        .carousel-btn:hover span {
            color: white;
        }
        
        .carousel-btn:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        .carousel-prev {
            left: 20px;
        }
        
        .carousel-next {
            right: 20px;
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(212, 118, 78, 0.3);
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            padding: 0;
        }
        
        .carousel-indicator:hover {
            background: rgba(212, 118, 78, 0.6);
            transform: scale(1.2);
        }
        
        .carousel-indicator.active {
            background: var(--burnt-orange);
            width: 30px;
            border-radius: 6px;
        }
        
        .carousel-thumbnails {
            display: none; /* Hidden by default, can be enabled */
        }
        
        /* ===== BOOKING SECTION ===== */
        #booking {
            background: 
                linear-gradient(135deg, rgba(245, 237, 227, 0.5), rgba(232, 213, 196, 0.6)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3"/><feColorMatrix values="0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 0 0.7 0 0 0 1 0"/></filter></defs><rect width="400" height="400" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
            position: relative;
        }
        
        #booking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, rgba(250, 248, 245, 0.8), transparent);
        }
        
        .booking-container {
            max-width: 850px;
            margin: 40px auto 0;
            background: white;
            padding: 60px 50px;
            border-radius: 30px;
            box-shadow: 
                0 25px 70px rgba(0, 0, 0, 0.12),
                0 10px 30px rgba(212, 118, 78, 0.08);
            position: relative;
            border: 1px solid rgba(212, 118, 78, 0.1);
        }
        
        .booking-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--burnt-orange), var(--desert-gold), var(--burnt-orange));
            border-radius: 30px 30px 0 0;
        }
        
        .phone-cta-wrapper {
            text-align: center;
        }
        
        .phone-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .phone-cta-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 30px;
            letter-spacing: -0.5px;
        }
        
        .phone-number-display {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--burnt-orange), var(--desert-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -2px;
            transition: var(--transition-smooth);
            text-decoration: none;
            position: relative;
        }
        
        .phone-number-display:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 5px 15px rgba(212, 118, 78, 0.3));
        }
        
        .phone-number-display::after {
            content: 'Click to call';
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--burnt-orange);
            opacity: 0;
            transition: var(--transition-smooth);
        }
        
        .phone-number-display:hover::after {
            opacity: 1;
            bottom: -30px;
        }
        
        .phone-cta-subtitle {
            font-size: 1.2rem;
            color: var(--charcoal);
            opacity: 0.8;
            margin-bottom: 40px;
            font-weight: 600;
        }
        
        .phone-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 2px solid rgba(212, 118, 78, 0.1);
        }
        
        .phone-benefit {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--charcoal);
        }
        
        .benefit-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        /* ===== ABOUT SECTION ===== */
        #about {
            background: var(--off-white);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: start;
            margin-top: 40px;
        }
        
        .about-text h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 20px;
            margin-top: 40px;
        }
        
        .about-text h3:first-child {
            margin-top: 0;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--charcoal);
            opacity: 0.85;
            font-size: 1.05rem;
        }
        
        .about-features {
            display: grid;
            gap: 20px;
            margin-top: 40px;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        
        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .about-feature-text {
            font-weight: 600;
            color: var(--charcoal);
            font-size: 0.95rem;
        }
        
        .about-image {
            display: none;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--charcoal);
            color: var(--off-white);
            padding: 60px 20px 30px;
        }
        
        .footer-logo img {
            height: 80px;
            margin-bottom: 15px;
            filter: brightness(1.1);
            transition: var(--transition-smooth);
        }
        
        .footer-logo img:hover {
            transform: scale(1.05);
        }
        
        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--burnt-orange);
        }
        
        .footer-section p,
        .footer-section a {
            margin-bottom: 10px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }
        
        .footer-section a:hover {
            opacity: 1;
            color: var(--burnt-orange);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: var(--burnt-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
        }
        
        .social-link:hover {
            transform: translateY(-3px);
            background: var(--rust-red);
        }
        
        .footer-phone-highlight {
            margin: 15px 0;
        }
        
        .footer-phone-link {
            color: var(--burnt-orange) !important;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition-smooth);
            display: inline-block;
        }
        
        .footer-phone-link:hover {
            color: var(--desert-gold) !important;
            transform: scale(1.05);
        }
        
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.7;
        }
        
        /* ===== MOBILE STICKY CTA ===== */
        .mobile-sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--burnt-orange);
            padding: 15px 20px;
            display: none;
            z-index: 999;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-sticky-cta button {
            width: 100%;
            background: white;
            color: var(--burnt-orange);
            border: none;
            padding: 16px;
            border-radius: 30px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
        }
        
        /* ===== FLOATING VIDEO PLAYER ===== */
        .floating-video {
            position: fixed;
            top: 80px;
            right: 20px;
            width: 420px;
            background: white;
            border-radius: 15px;
            box-shadow: 
                0 15px 50px rgba(0, 0, 0, 0.3),
                0 5px 20px rgba(212, 118, 78, 0.2);
            z-index: 998;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }
        
        .floating-video.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }
        
        .floating-video-header {
            background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .floating-video-title {
            color: white;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .floating-video-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }
        
        .floating-video-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .floating-video-container {
            background: #000;
        }

        .vimeo-embed-wrapper {
            padding: 56.25% 0 0 0;
            position: relative;
        }

        .vimeo-embed-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .floating-video-container iframe {
            display: block;
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        @keyframes scrollDown {
            0% {
                opacity: 0;
                top: 10px;
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                top: 30px;
            }
        }
        
        @keyframes breathe {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }
        
        @keyframes floatParticles {
            0% {
                transform: translateY(0) translateX(0);
            }
            100% {
                transform: translateY(-100vh) translateX(50px);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            50% {
                transform: translateY(20px) translateX(10px);
            }
        }
        
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .logo {
                left: 15px;
            }
            
            .logo img {
               height: 120px;
            }
   
            .nav-container {
               padding: 8px 20px 8px 140px;
            }
            
            .hero {
                min-height: 450px;
            }
            
            .tours-grid,
            .features-grid,
            .vehicles-grid {
                grid-template-columns: 1fr;
            }
            
            .booking-container {
                padding: 30px 20px;
            }
            
            .phone-cta-title {
                font-size: 1.5rem;
            }
            
            .phone-number-display {
                font-size: 2.5rem;
            }
            
            .phone-benefits {
                grid-template-columns: 1fr;
            }
            
            .mobile-sticky-cta {
                display: block;
            }
            
            /* Floating video responsive */
            .floating-video {
                width: 340px;
                top: 70px;
                right: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            /* Carousel Mobile Styles */
            .carousel-main {
                height: 400px;
                border-radius: 15px;
            }
            
            .carousel-btn {
                width: 45px;
                height: 45px;
            }
            
            .carousel-btn span {
                font-size: 2rem;
            }
            
            .carousel-prev {
                left: 10px;
            }
            
            .carousel-next {
                right: 10px;
            }
            
            .carousel-caption {
                font-size: 1.1rem;
                padding: 30px 20px 20px;
            }
            
            .carousel-indicators {
                gap: 8px;
                margin-top: 20px;
            }
            
            .carousel-indicator {
                width: 10px;
                height: 10px;
            }
            
            .carousel-indicator.active {
                width: 24px;
            }
            
            /* Video frame responsive */
            .video-frame-3d {
                padding: 25px;
                transform: rotateX(3deg);
            }
            
            .video-container-wrapper {
                margin: 40px auto 50px;
            }
            
            :root {
                --section-padding: 60px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .logo {
                left: 10px;
            }
            
            .logo img {
              height: 80px;
            }
   
           .nav-container {
             padding: 6px 15px 6px 95px;
            }
            
            /* Video frame mobile */
            .video-frame-3d {
                padding: 15px;
                transform: rotateX(2deg);
            }
            
            .video-container-wrapper {
                margin: 30px auto 40px;
            }
            
            .footer-logo img {
                height: 60px !important;
            }
            
            /* Phone CTA mobile */
            .phone-icon {
                font-size: 3.5rem;
            }
            
            .phone-cta-title {
                font-size: 1.3rem;
            }
            
            .phone-number-display {
                font-size: 2rem;
                letter-spacing: -1px;
            }
            
            .phone-cta-subtitle {
                font-size: 1rem;
            }
            
            .phone-benefit {
                font-size: 0.95rem;
            }
            
            /* Floating video on small mobile */
            .floating-video {
                width: 280px;
                top: 65px;
                right: 10px;
            }
            
            .floating-video-title {
                font-size: 0.85rem;
            }
            
            .carousel-main {
                height: 320px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .carousel-btn span {
                font-size: 1.8rem;
            }
            
            .carousel-caption {
                font-size: 1rem;
                padding: 25px 15px 15px;
            }
        }