:root {
            --sunset-deep: #1a0a05;
            --sunset-red: #C0392B;
            --sunset-orange: #E8621A;
            --sunset-amber: #F5A623;
            --sunset-gold: #F7C948;
            --sunset-coral: #E8734A;
            --sunset-sky: #5B2333;
            --teal: #00897B;
            --teal-light: #26A69A;
            --white: #FFFDF8;
            --off-white: #FFF8F0;
            --dark: #1A0E08;
            --text-mid: #7A5C4A;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--white);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* ─── NAV ─────────────────────────────────────── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 18px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(26, 10, 5, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(247, 201, 72, 0.15);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo img {
            height: 44px;
            width: auto;
            
        }

        .nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--sunset-gold);
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .nav-logo-text span {
            display: block;
            font-size: 0.65rem;
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
            color: rgba(255,255,255,0.55);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--sunset-gold); }

        .btn-reserve-nav {
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            color: var(--dark) !important;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600 !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 26px; height: 2px;
            background: var(--sunset-gold);
            transition: 0.3s;
        }

        /* ─── HERO ─────────────────────────────────────── */
        #home {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 620px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600');
            background-size: cover;
            background-position: center;
            /* We'll use the hero image from uploaded files */
        }

        /* Overlay gradient */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(26, 10, 5, 0.92) 0%,
                rgba(26, 10, 5, 0.6) 50%,
                rgba(26, 10, 5, 0.2) 100%
            ),
            linear-gradient(
                to top,
                rgba(26, 10, 5, 0.8) 0%,
                transparent 60%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 60px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: end;
            gap: 40px;
        }

        .hero-left .tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(247, 201, 72, 0.15);
            border: 1px solid rgba(247, 201, 72, 0.3);
            color: var(--sunset-gold);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .hero-left .tag::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--sunset-gold);
            border-radius: 50%;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 6vw, 5.5rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.05;
            margin-bottom: 16px;
        }

        .hero-title .accent {
            color: var(--sunset-amber);
            display: block;
        }

        .hero-sub {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.65);
            font-weight: 300;
            margin-bottom: 36px;
            max-width: 420px;
            line-height: 1.7;
        }

        .hero-cta-row {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-amber) 100%);
            color: var(--dark);
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 30px rgba(232, 98, 26, 0.4);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(232, 98, 26, 0.55);
        }

        .btn-ghost {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .btn-ghost:hover { color: var(--sunset-gold); }

        .hero-stats {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-self: flex-end;
            align-items: flex-end;
        }

        .stat-pill {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            padding: 16px 24px;
            border-radius: 16px;
            text-align: right;
            min-width: 180px;
        }

        .stat-pill .num {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--sunset-gold);
        }

        .stat-pill .label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* Location map strip */
        .location-strip {
            background: var(--dark);
            padding: 0;
            overflow: hidden;
        }

        .location-inner {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            min-height: 340px;
        }

        .location-info {
            background: linear-gradient(135deg, #1a0a05 0%, #2d1108 100%);
            padding: 50px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 24px;
            border-right: 1px solid rgba(247, 201, 72, 0.12);
        }

        .location-info .section-eyebrow {
            color: var(--sunset-amber);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .location-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--white);
            line-height: 1.2;
        }

        .location-info h3 span { color: var(--sunset-gold); }

        .location-details {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .loc-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.65);
            font-size: 0.9rem;
        }

        .loc-item i {
            width: 34px; height: 34px;
            background: rgba(247, 201, 72, 0.12);
            border: 1px solid rgba(247, 201, 72, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sunset-amber);
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .map-container {
            position: relative;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: saturate(0.6) sepia(0.4) hue-rotate(-20deg) brightness(0.85);
            min-height: 340px;
        }

        .map-overlay-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            color: var(--dark);
            padding: 10px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.78rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 20px rgba(232, 98, 26, 0.5);
        }

        /* ─── OUR FLEET ──────────────────────────────── */
        #fleet {
            padding: 100px 40px;
            background: var(--off-white);
        }

        .section-eyebrow {
            text-align: center;
            color: var(--sunset-coral);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            text-align: center;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .section-sub {
            text-align: center;
            color: var(--text-mid);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 60px;
            line-height: 1.7;
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .fleet-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 480px;
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .fleet-card:hover { transform: translateY(-8px) scale(1.01); }

        .fleet-card.featured {
            transform: translateY(-16px) scale(1.02);
            box-shadow: 0 30px 80px rgba(232, 98, 26, 0.3);
        }

        .fleet-card.featured:hover { transform: translateY(-22px) scale(1.03); }

        .fleet-card-img {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s;
        }

        .fleet-card:hover .fleet-card-img { transform: scale(1.05); }

        .fleet-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(26, 10, 5, 0.97) 0%,
                rgba(26, 10, 5, 0.5) 40%,
                rgba(26, 10, 5, 0.05) 100%
            );
        }

        .fleet-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            color: var(--dark);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .fleet-content {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 28px;
        }

        .fleet-duration {
            color: var(--sunset-gold);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .fleet-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--white);
            font-weight: 700;
            margin-bottom: 4px;
        }

        .fleet-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--sunset-amber);
            margin-bottom: 16px;
        }

        .fleet-price span {
            font-size: 0.8rem;
            font-weight: 400;
            color: rgba(255,255,255,0.5);
        }

        .fleet-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 7px;
            margin-bottom: 20px;
        }

        .fleet-bullets li {
            color: rgba(255,255,255,0.8);
            font-size: 0.82rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .fleet-bullets li::before {
            content: '';
            width: 5px; height: 5px;
            border-radius: 50%;
            background: var(--sunset-amber);
            flex-shrink: 0;
        }

        .btn-fleet {
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 12px 0;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.82rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: 0.3s;
            border: 1.5px solid rgba(255,255,255,0.3);
            color: white;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(6px);
        }

        .fleet-card.featured .btn-fleet {
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            border-color: transparent;
            color: var(--dark);
        }

        .btn-fleet:hover {
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            border-color: transparent;
            color: var(--dark);
        }

        /* ─── WHY CHOOSE US ──────────────────────────── */
        #why {
            padding: 100px 40px;
            background: linear-gradient(160deg, var(--dark) 0%, #2a0f07 50%, #1a0a05 100%);
            position: relative;
            overflow: hidden;
        }

        #why::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(232, 98, 26, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        #why .section-eyebrow { color: var(--sunset-gold); }
        #why .section-title { color: var(--white); }
        #why .section-sub { color: rgba(255,255,255,0.5); }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .why-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(247, 201, 72, 0.1);
            border-radius: 20px;
            padding: 40px 32px;
            transition: border-color 0.3s, background 0.3s;
            position: relative;
            overflow: hidden;
        }

        .why-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-amber));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .why-card:hover {
            border-color: rgba(247, 201, 72, 0.25);
            background: rgba(255,255,255,0.07);
        }

        .why-card:hover::after { transform: scaleX(1); }

        .why-icon {
            width: 56px; height: 56px;
            background: linear-gradient(135deg, rgba(232,98,26,0.2), rgba(247,201,72,0.1));
            border: 1px solid rgba(247, 201, 72, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--sunset-gold);
            margin-bottom: 24px;
        }

        .why-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 14px;
            font-weight: 700;
        }

        .why-card p {
            color: rgba(255,255,255,0.55);
            font-size: 0.9rem;
            line-height: 1.75;
        }

        /* ─── CONTACT ────────────────────────────────── */
        #contact {
            padding: 100px 40px;
            background: var(--off-white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: start;
        }

        /* Contact form side */
        .contact-form-wrap {
            background: white;
            border-radius: 24px;
            padding: 44px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.07);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .contact-form-wrap h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .contact-form-wrap p {
            color: var(--text-mid);
            font-size: 0.9rem;
            margin-bottom: 28px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-mid);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid #e8e0d8;
            border-radius: 12px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            color: var(--dark);
            background: #faf7f4;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--sunset-orange);
            box-shadow: 0 0 0 3px rgba(232, 98, 26, 0.1);
            background: white;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        /* CTA / Reserve side */
        .reserve-cta {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .reserve-box {
            background: linear-gradient(140deg, var(--dark) 0%, #2d1108 100%);
            border-radius: 24px;
            padding: 44px;
            border: 1px solid rgba(247, 201, 72, 0.15);
            position: relative;
            overflow: hidden;
        }

        .reserve-box::before {
            content: '';
            position: absolute;
            bottom: -80px; right: -80px;
            width: 250px; height: 250px;
            background: radial-gradient(circle, rgba(232,98,26,0.15) 0%, transparent 70%);
        }

        .reserve-box .eyebrow {
            color: var(--sunset-amber);
            font-size: 0.72rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .reserve-box h3 {
            font-family: 'Playfair Display', serif;
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .reserve-box h3 span { color: var(--sunset-gold); }

        .reserve-box p {
            color: rgba(255,255,255,0.55);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .reserve-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }

        .reserve-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.7);
            font-size: 0.88rem;
        }

        .reserve-features li i {
            color: var(--sunset-gold);
            font-size: 0.8rem;
        }

        .contact-info-mini {
            background: white;
            border-radius: 20px;
            padding: 28px 32px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mini-info-item {
            display: flex;
            align-items: center;
            gap: 14px;
            color: var(--text-mid);
            font-size: 0.9rem;
        }

        .mini-info-item i {
            width: 38px; height: 38px;
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        /* ─── FOOTER ─────────────────────────────────── */
        footer {
            background: #0f0604;
            border-top: 1px solid rgba(247, 201, 72, 0.1);
            padding: 60px 40px 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 50px;
            max-width: 1100px;
            margin: 0 auto 50px;
        }

        .footer-brand img {
            height: 60px;
            width: auto;
            filter: grayscale(100%) brightness(150%) contrast(0.7);
            margin-bottom: 16px;
            opacity: 0.85;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
            line-height: 1.7;
            max-width: 240px;
        }

        .footer-col h5 {
            color: var(--sunset-gold);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .footer-col a,
        .footer-col p {
            display: block;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            font-size: 0.87rem;
            margin-bottom: 10px;
            line-height: 1.6;
            transition: color 0.3s;
        }

        .footer-col a:hover { color: var(--sunset-gold); }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 6px;
        }

        .footer-social a {
            width: 36px; height: 36px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5) !important;
            font-size: 0.85rem;
            transition: background 0.3s, color 0.3s;
            margin-bottom: 0 !important;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            color: var(--dark) !important;
            border-color: transparent;
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 0 auto;
            padding-top: 28px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.25);
            font-size: 0.8rem;
        }

        .footer-bottom .pura-vida {
            color: var(--sunset-amber);
            font-family: 'Playfair Display', serif;
            font-size: 0.9rem;
            font-style: italic;
        }

        /* ─── SUBMIT BUTTON ───────────────────────────── */
        .btn-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            border: none;
            border-radius: 12px;
            color: var(--dark);
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 8px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(232, 98, 26, 0.4);
        }

        .btn-reserve-big {
            display: block;
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
            border-radius: 14px;
            color: var(--dark);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-align: center;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 30px rgba(232, 98, 26, 0.3);
            position: relative;
            z-index: 1;
        }

        .btn-reserve-big:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(232, 98, 26, 0.5);
        }

        /* ─── MOBILE MENU ────────────────────────────── */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(26, 10, 5, 0.98);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .mobile-menu.active { display: flex; }

        .mobile-menu a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 1.6rem;
            font-family: 'Playfair Display', serif;
            transition: color 0.3s;
        }

        .mobile-menu a:hover { color: var(--sunset-gold); }

        .close-menu {
            position: absolute;
            top: 22px; right: 30px;
            font-size: 1.8rem;
            color: rgba(255,255,255,0.5);
            cursor: pointer;
        }

        /* ─── RESPONSIVE ─────────────────────────────── */
        @media (max-width: 900px) {
            nav { padding: 15px 24px; }
            .nav-links { display: none; }
            .hamburger { display: flex; }

            .hero-content {
                grid-template-columns: 1fr;
                padding: 0 24px 60px;
            }

            .hero-stats {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: flex-start;
            }

            .location-inner { grid-template-columns: 1fr; }
            .fleet-grid { grid-template-columns: 1fr; max-width: 420px; }
            .fleet-card.featured { transform: none; }
            .why-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            #fleet, #why, #contact { padding: 70px 24px; }
        }

        @media (max-width: 600px) {
            .hero-title { font-size: 2.6rem; }
            .form-row { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; }
        }
    

        


a {
  color: inherit;        /* o el color que quieras */
  text-decoration: none; /* opcional */
}

a:visited {
  color: white;
}

a:hover {
  color: inherit;
}

a:active {
  color: inherit;
}