        /* --- DESIGN SYSTEM: THE MONOLITH MK III --- */
        :root {
            --bg-void: #000000;
            --bg-panel: #0a0a0a;
            --bg-field: #111111;
            --container-pad: 40px;
            --section-pad: 90px;
            
            --gold-primary: #bfa36a;
            --gold-dim: #5c4a28;        
            
            --text-white: #FFFFFF;
            --text-muted: #888888;
            
            --border-subtle: 1px solid rgba(255,255,255,0.08);
            --border-gold: 1px solid rgba(197, 160, 89, 0.3);
            
            --ease: cubic-bezier(0.19, 1, 0.22, 1);
            --carousel-gutter: 16px;
            --header-height: 72px;

            --progress-rail-width: 30px;
            --progress-rail-thickness: 1.2px;
            --progress-rail-line: rgba(255,255,255,0.12);
            --progress-rail-fill: linear-gradient(180deg, #e5d7b0, var(--gold-primary));
            --progress-dot-size: 9px;
            --progress-dot-bg: #0b0b0b;
            --progress-dot-border: rgba(255,255,255,0.18);
            --progress-glow: 0 0 8px rgba(191,163,106,0.28);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; max-width: 100%; overflow-x: hidden; }
        
        body {
            background-color: var(--bg-void);
            color: var(--text-white);
            font-family: 'Manrope', sans-serif;
            line-height: 1.5;
            background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #000 60%);
            overflow-x: hidden;
            overscroll-behavior-x: none;
        }
        body.rtl {
            direction: rtl;
            font-family: 'Cairo', 'Manrope', sans-serif;
        }
        body.rtl h1,
        body.rtl h2,
        body.rtl h3,
        body.rtl .serif,
        body.rtl .price-card h4,
        body.rtl .car-title,
        body.rtl .seo-card h3,
        body.rtl .blog-title,
        body.rtl .seo-block h2,
        body.rtl .step-num {
            font-family: 'Cairo', 'Manrope', sans-serif;
            letter-spacing: 0;
        }
        /* Defer layout/paint of below-the-fold sections without altering visuals */
        .lazy-section {
            content-visibility: auto;
            contain-intrinsic-size: auto 900px;
        }

        h1, h2, h3, .serif { font-family: 'Cinzel', serif; letter-spacing: 0.5px; font-weight: 400; }
        .label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 10px; }

        /* HERO TITLE EFFECT */
        .gold-gradient-text {
            background: linear-gradient(to right, #ffe5b4, var(--gold-primary), #8e722a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 5s linear infinite;
            font-weight: 700;
        }
        .hero-transport { color: #fff; font-weight: 800; }
        @keyframes shine { to { background-position: 200% center; } }

        /* BUTTONS */
        .btn-main {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--gold-primary);
            color: #000;
            padding: 13px;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            line-height: 1.15;
            text-align: center;
            min-height: 48px;
            border-radius: 6px;
        }
        .btn-main:hover { background: #e0b86a; transform: translateY(-2px); }
        .btn-main:disabled { background: #333; color: #555; cursor: not-allowed; transform: none; }
        .btn-ghost {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: transparent;
            color: var(--text-white);
            padding: 14px;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid rgba(197, 160, 89, 0.6);
            cursor: pointer;
            transition: 0.3s;
            line-height: 1.15;
            text-align: center;
            min-height: 48px;
            border-radius: 6px;
        }
        .btn-ghost:hover { border-color: var(--gold-primary); color: var(--gold-primary); transform: translateY(-2px); }
        .btn-wa {
            background: linear-gradient(135deg, #1c7c56, #0f5a3d);
            color: #f2fff7;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn-wa .icon-wa { width: 18px; height: 18px; }
        .btn-wa:hover { filter: brightness(1.03); }
        .whatsapp-link {
            display: inline-flex; align-items: center; gap: 8px;
            color: #5ac98b; text-decoration: none; font-weight: 600; letter-spacing: 0.3px;
        }
        .whatsapp-link .icon-wa { width: 16px; height: 16px; }
        .trip-funnel-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #e3c67f;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 0.3px;
            border: 1px solid rgba(191,163,106,0.45);
            padding: 9px 12px;
            background: linear-gradient(140deg, rgba(191,163,106,0.14), rgba(191,163,106,0.02));
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .trip-funnel-link:hover {
            border-color: rgba(191,163,106,0.72);
            background: linear-gradient(140deg, rgba(191,163,106,0.2), rgba(191,163,106,0.04));
        }
        .floating-wa {
            position: fixed; right: 18px; bottom: 18px; z-index: 1200;
            background: #0d1611; border: 1px solid rgba(90,201,139,0.4); padding: 12px 16px;
            border-radius: 999px; display: inline-flex; align-items: center; gap: 10px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.5); color: #5ac98b; cursor: pointer;
            text-decoration: none; font-weight: 600; letter-spacing: 0.4px;
        }
        .floating-wa:hover { transform: translateY(-2px); border-color: #25d366; }
        .mobile-cta-bar {
            position: fixed; left: 0; right: 0; bottom: 0; z-index: 1199;
            background: rgba(0,0,0,0.9);
            border-top: var(--border-subtle);
            padding: 12px 16px 14px;
            display: none;
            align-items: stretch;
            flex-direction: column;
            gap: 8px;
            backdrop-filter: blur(8px);
            box-shadow: 0 -12px 30px rgba(0,0,0,0.4);
        }
        .mobile-cta-bar .btn-main,
        .mobile-cta-bar .btn-ghost {
            width: 100%;
            max-width: none;
            font-size: 0.82rem;
            padding: 11px 12px;
            letter-spacing: 0.5px;
        }
        .mobile-cta-bar .btn-ghost { 
            border-color: rgba(191,163,106,0.5);
            background: rgba(191,163,106,0.08);
        }

        /* HEADER */
        header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: rgba(0,0,0,0.45); backdrop-filter: blur(1.55px);
            border-bottom: var(--border-subtle); padding: 6px 0;
        }
        .container { max-width: 1400px; margin: 0 auto; padding: 0 var(--container-pad); }
        .flex-between { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
        .header-logo { height: clamp(54px, 8vw, 86px); width: auto; object-fit: contain; }
        .brand { font-family: 'Cinzel', serif; font-size: 1.2rem; letter-spacing: 1.6px; font-weight: 700; text-transform: uppercase; display: inline-flex; gap: 2px; align-items: baseline; white-space: nowrap; }
        .brand-white { color: #ffffff; }
        .brand-gold { color: var(--gold-primary); }
        .header-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
        .header-nav { display: flex; align-items: center; gap: 12px; }
        .header-nav a { color: #e9e9e9; font-size: 0.9rem; letter-spacing: 0.2px; text-decoration: none; padding: 6px 8px; border-radius: 8px; }
        .header-nav a:hover { color: var(--gold-primary); background: rgba(191,163,106,0.08); }
        .header-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 4px 8px;
            border: 1px solid rgba(197, 160, 89, 0.25);
            border-radius: 999px;
            background: rgba(0,0,0,0.35);
        }
        .header-control { display: inline-flex; align-items: center; gap: 6px; }
        .header-control .select-label {
            font-size: 0.62rem;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: #b6b6b6;
        }
        .select-wrap { position: relative; }
        .select-wrap::after {
            content: '▾';
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.7rem;
            color: #cdbf92;
            pointer-events: none;
        }
        .header-control select {
            background: #0d0d0d;
            border: 1px solid rgba(197, 160, 89, 0.4);
            color: #fff;
            border-radius: 999px;
            padding: 6px 22px 6px 10px;
            font-size: 0.7rem;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            appearance: none;
            cursor: pointer;
        }
        .header-control select:focus { border-color: var(--gold-primary); }
        @media(max-width: 780px) {
            .header-nav { display: none; }
            .header-actions { gap: 8px; }
            .header-controls { padding: 4px 6px; gap: 6px; }
            .header-control .select-label { display: none; }
            .header-control select { padding: 5px 20px 5px 8px; font-size: 0.62rem; }
        }
        body.rtl .select-wrap::after { left: 8px; right: auto; }
        body.rtl .header-control select { padding: 6px 10px 6px 22px; }
        @media(max-width: 780px) {
            body.rtl .header-control select { padding: 5px 8px 5px 20px; }
        }
        
        /* HERO */
        .hero {
            position: relative;
            isolation: isolate;
            min-height: 72vh;
            display: flex; flex-direction: column; justify-content: flex-end; align-items: center; text-align: center;
            gap: 8px;
            padding: 0px 30px 30px;
            background-color: #050505;
            background-image: url('../pictures/hero-1920.webp');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        @media(max-width: 720px) {
            .hero {
                background-image: url('../pictures/hero-1920.webp');
                background-size: cover;
            }
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.85) 95%);            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            background: transparent;
            border: none;
            backdrop-filter: none;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            max-width: 1000px;
            width: min(94vw, 1080px);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .hero h1, .hero p, .hero-actions { position: relative; z-index: 1; }
        .hero h1 {
            max-width: 740px;
            font-size: clamp(1.9rem, 2.9vw, 2.0rem);
            line-height: 1.12;
            margin-bottom: 90px;
            text-shadow: 0 12px 34px rgba(0,0,0,0.55);
            transform: translateY(-4px);
        }
        .hero p { color: #f1f1f1; font-size: 0.84rem; max-width: 700px; margin: 0 auto; line-height: 1.5; letter-spacing: 0.05px; text-shadow: 0 8px 22px rgba(0,0,0,0.55); }
        .hero-bottom {
            width: 100%;
            max-width: 920px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
            margin-top: 0px;
        }
        .hero-actions { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 2px; }
        .hero-actions { width: min(520px, 100%); margin: 0 auto; gap: 8px; }
        .hero-actions .btn-main { width: 100%; max-width: 100%; padding: 12px 22px; font-size: 0.96rem; line-height: 1.25; text-align: center; }
        .hero-actions .btn-ghost { width: 100%; max-width: 100%; padding: 10px 20px; font-size: 0.92rem; white-space: nowrap; }

        /* APP GRID */
        .app-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            min-height: 100vh;
            border-top: var(--border-subtle);
            width: min(1200px, calc(100% - 40px));
            margin: 0 auto;
            box-sizing: border-box;
            min-width: 0;
        }
        .config-panel,
        .invoice-panel,
        .step-block,
        .car-grid { min-width: 0; }

        /* CONFIGURATOR */
        .config-panel { padding: 64px 42px; border-right: var(--border-subtle); overflow: visible; position: relative; }
        .config-content { min-width: 0; }
        body.progress-active .config-panel {
            display: grid;
            grid-template-columns: var(--progress-rail-width) minmax(0, 1fr);
            gap: 14px;
            align-items: stretch;
        }
        
        /* LOCKED STATES */
        .step-block {
            margin-bottom: 56px;
            transition: 0.5s;
            position: relative;
        }
        .step-block.locked { opacity: 0.2; filter: grayscale(1); pointer-events: none; }
        .step-header {
            margin-bottom: 24px;
            padding-bottom: 14px;
            border-bottom: 1px solid #222;
            transition: border-color 0.25s ease, background 0.25s ease;
        }
        .step-block:not(.locked) .step-header { cursor: pointer; }
        .step-block:not(.locked) .step-header:focus-visible {
            outline: 1px solid rgba(191,163,106,0.55);
            outline-offset: 2px;
        }
        .step-header.is-disabled { opacity: 0.62; cursor: default; }
        .step-num { color: var(--gold-primary); font-family: 'Cinzel'; margin-right: 15px; }
        .step-block.is-current .step-header {
            border-bottom-color: rgba(191,163,106,0.58);
            background: linear-gradient(90deg, rgba(191,163,106,0.11), rgba(191,163,106,0) 72%);
        }
        .step-block.is-current h3 { color: #f5e3b6; }
        .step-block.is-current {
            box-shadow: inset 2px 0 0 rgba(191,163,106,0.62);
            background: linear-gradient(90deg, rgba(191,163,106,0.06), rgba(191,163,106,0) 42%);
        }
        .step-block.is-current .label { color: #c7b07a; }
        .step-block.is-current .tile-grid .tile {
            border-color: rgba(191,163,106,0.42);
        }
        .step-block:not(.is-current) .tile.selected {
            border-color: rgba(255,255,255,0.18);
            background: #0b0b0b;
            box-shadow: none;
        }
        .step-block:not(.is-current) .service-type-grid .tile.selected {
            border-color: rgba(255,255,255,0.2);
            background: #0b0b0b;
            box-shadow: none;
        }
        .step-block:not(.is-current) .service-type-grid .tile.selected::after {
            opacity: 0;
        }

        /* SELECTION TILES */
        .tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
        .tile { background: var(--bg-field); border: 1px solid #222; padding: 12px 14px; text-align: center; cursor: pointer; transition: 0.3s; position: relative; }
        .tile:hover { border-color: #444; }
        .tile.selected { border-color: var(--gold-primary); background: linear-gradient(150deg, #161616 0%, #0f0f0f 100%); box-shadow: 0 12px 26px rgba(191,163,106,0.16), 0 0 0 1px rgba(191,163,106,0.3); }
        .tile-title { display: block; font-size: 0.92rem; margin-bottom: 4px; color: #fff; }
        .tile-sub { font-size: 0.63rem; color: #666; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.2; }
        .tile-grid.tile-highlight .tile { border-color: rgba(191,163,106,0.44); box-shadow: none; }
        .tile-grid.tile-highlight .tile::after { display: none; }
        .trust-card { background: linear-gradient(135deg, rgba(191,163,106,0.08), rgba(0,0,0,0.55)); border: 1px solid rgba(191,163,106,0.24); padding: 18px; margin-bottom: 28px; }
        .trust-card p { color: #ccc; margin-bottom: 10px; font-size: 0.95rem; }
        .trust-list { list-style: none; color: #eee; display: grid; gap: 6px; padding-left: 0; }
        .trust-list li { position: relative; padding-left: 18px; font-size: 0.9rem; color: #d6d6d6; }
        .trust-list li::before { content: '•'; position: absolute; left: 4px; color: var(--gold-primary); }
        
        /* PROGRESS RAIL */
        .progress-shell {
            position: relative;
            width: 100%;
            align-self: stretch;
            min-height: 100%;
            display: none;
            opacity: 0;
            pointer-events: auto;
            transition: opacity 0.25s var(--ease);
        }
        .progress-shell.is-visible { display: block; opacity: 1; }
        .progress-rail {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .progress-line,
        .progress-fill {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: var(--progress-rail-thickness);
            border-radius: 999px;
        }
        .progress-line {
            top: 0;
            bottom: 0;
            background: var(--progress-rail-line);
        }
        .progress-fill {
            top: 0;
            height: 0%;
            background: var(--progress-rail-fill);
            box-shadow: var(--progress-glow);
            transition: height 0.35s var(--ease);
        }
        .progress-step {
            position: absolute;
            left: 50%;
            transform: translate(-50%, -50%);
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: opacity 0.2s ease;
        }
        .progress-step:focus-visible .progress-dot {
            box-shadow: 0 0 0 2px rgba(191,163,106,0.3);
        }
        .progress-step.is-disabled {
            cursor: not-allowed;
            opacity: 0.5;
        }
        .progress-dot {
            width: var(--progress-dot-size);
            height: var(--progress-dot-size);
            border-radius: 50%;
            background: var(--progress-dot-bg);
            border: 1px solid var(--progress-dot-border);
            box-shadow: none;
            transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
        }
        .progress-step.is-active .progress-dot {
            border-color: var(--gold-primary);
            background: #120d07;
            box-shadow: var(--progress-glow);
        }
        .progress-step.is-done .progress-dot {
            background: var(--gold-primary);
            border-color: var(--gold-primary);
            box-shadow: var(--progress-glow);
        }

        .price-card { background: #0b0b0b; border: 1px solid rgba(191,163,106,0.24); padding: 18px 18px 10px; margin-bottom: 28px; }
        .price-card h4 { color: #f2f2f2; font-family: 'Cinzel', serif; margin-bottom: 10px; font-weight: 500; }
        .price-list { list-style: none; padding-left: 0; display: grid; gap: 8px; color: #dcdcdc; font-size: 0.95rem; line-height: 1.5; }
        .price-note { color: #bcbcbc; font-size: 0.9rem; margin-top: 10px; }

        /* CAR GRID */
        .car-grid { display: none; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; animation: fadeUp 0.5s ease; width: 100%; max-width: 100%; box-sizing: border-box; position: relative; }
        .car-grid.active { display: grid; }
        .car-grid:not(.active) { display: none !important; }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .scroll-hint {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: #aaa;
            background: rgba(0,0,0,0.6);
            border: 1px solid #222;
            padding: 6px 10px;
            border-radius: 999px;
            animation: hintPulse 2.6s ease-in-out infinite;
        }
        .scroll-hint svg { width: 14px; height: 14px; color: var(--gold-primary); }
        @keyframes hintPulse {
            0% { opacity: 0.6; transform: translateX(0); }
            40% { opacity: 1; transform: translateX(4px); }
            100% { opacity: 0.6; transform: translateX(0); }
        }

        .car-card { background: linear-gradient(180deg, #111 0%, #0a0a0a 100%); border: 1px solid #222; cursor: pointer; transition: 0.35s ease; position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,0.35); display: flex; flex-direction: column; }
        .car-card:hover { transform: translateY(-7px); border-color: var(--gold-primary); box-shadow: 0 18px 38px rgba(191, 163, 106, 0.2); }
        .car-card.selected {
            border-color: var(--gold-primary);
            box-shadow: 0 0 25px rgba(191, 163, 106, 0.15); /* The Glow */
            transform: translateY(-4px);
        }
        .car-card.selected::before { content: 'SELECTED'; position: absolute; top:0; right:0; background:var(--gold-primary); color:#000; font-size:0.6rem; padding:4px 10px; font-weight:bold; }
        .car-img { width: 100%; aspect-ratio: 3 / 2; min-height: 250px; object-fit: cover; object-position: center 52%; filter: saturate(1.05); transition: transform 0.35s ease, filter 0.35s ease; background:#0d0d0d; transform: scale(1); }
        .car-card:hover .car-img { transform: scale(1.02); filter: saturate(1.12); }
        .car-card.selected .car-img { filter: saturate(1.12); transform: scale(1.01); }
        .car-info { padding: 12px 16px 14px; display: grid; gap: 3px; }
        .car-title { font-family: 'Cinzel'; color: #fff; font-size: 1.08rem; letter-spacing: 0.15px; }
        .car-price { color: var(--gold-primary); font-size: 0.94rem; margin-top: 0; display: block; font-weight: 650; }
        .car-badge { display:inline-block; font-size:0.63rem; background:#1a1a1a; color:#ccc; padding:4px 10px; margin-top:2px; border-radius:999px; letter-spacing: 0.6px; }
        .car-specs { display:flex; gap:10px; flex-wrap: wrap; font-size:0.76rem; color:#888; margin-top:6px; }
        .car-specs .spec-item { display:inline-flex; gap:6px; align-items:center; }

        @media (max-width: 900px) {
            .car-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:16px; }
            .car-card { box-shadow: 0 10px 24px rgba(0,0,0,0.3); border-radius: 12px; }
            .car-img { aspect-ratio: 3 / 2; min-height: 260px; transform: scale(1); }
            .car-info { padding: 12px 14px; }
            .service-type-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
        }

        @media (max-width: 720px) {
            .car-grid { grid-template-columns: 1fr; gap:14px; }
            .car-card { border-radius: 16px; }
            .car-img { aspect-ratio: 3 / 2; min-height: 170px; transform: scale(1); }
            .car-info { padding: 12px 16px 14px; }
            .car-title { font-size: 1.22rem; }
            .car-price { font-size: 1.02rem; }
            .car-specs { font-size: 0.8rem; }
            .service-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
            .service-type-grid .tile { min-height: 74px; padding: 9px 9px 8px; column-gap: 9px; row-gap: 4px; border-radius: 11px; }
            .service-type-grid .tile-title { font-size: 0.84rem; }
            .service-type-grid .tile-sub { font-size: 0.52rem; line-height: 1.08; letter-spacing: 0.08em; }
            .service-type-grid .tile-chip { font-size: 0.56rem; padding: 3px 7px; letter-spacing: 0.08em; }
            .service-type-grid .service-icon { width: 27px; height: 27px; font-size: 0.76rem; border-radius: 9px; }
            .service-type-grid .service-copy { gap: 3px; }
        }

        /* FORMS */
        .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
        #airport-fields { gap: 12px; margin-bottom: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
        #airport-fields .label { margin-bottom: 6px; display: block; }
        #airport-fields .input-field { padding: 12px; }

        /* Service type chips (premium + compact) */
        .service-type-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 12px;
            align-items: stretch;
            margin-bottom: 10px !important;
        }
        .service-type-grid .tile {
            position: relative;
            padding: 13px 13px 11px;
            min-height: 90px;
            border-radius: 13px;
            background: radial-gradient(circle at 20% 20%, rgba(191,163,106,0.12), transparent 55%), #0d0d0d;
            display: grid;
            grid-template-columns: auto 1fr;
            column-gap: 12px;
            row-gap: 8px;
            align-items: center;
            border: 1px solid rgba(255,255,255,0.09);
            box-shadow: 0 12px 26px rgba(0,0,0,0.32);
            transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
            text-align: left;
            overflow: hidden;
        }
        .service-type-grid .tile::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            background: linear-gradient(120deg, rgba(191,163,106,0.18), transparent 40%);
            opacity: 0;
            transition: opacity 0.25s ease;
            pointer-events: none;
        }
        .service-type-grid .tile:hover {
            transform: translateY(-2px);
            border-color: rgba(191,163,106,0.55);
            box-shadow: 0 14px 30px rgba(191,163,106,0.18);
            background: linear-gradient(150deg, #111111 0%, #0b0b0b 100%);
        }
        .service-type-grid .tile.selected {
            border-color: var(--gold-primary);
            box-shadow: 0 16px 34px rgba(191,163,106,0.2);
            background: linear-gradient(145deg, #161616 0%, #0d0d0d 100%);
        }
        .service-type-grid .tile.selected::after { opacity: 1; }
        .service-type-grid .tile-title {
            font-size: 1rem;
            letter-spacing: 0.1px;
            line-height: 1.2;
            display: block;
        }
        .service-type-grid .tile-sub {
            font-size: 0.68rem;
            letter-spacing: 0.12px;
            color: #9c9c9c;
            line-height: 1.25;
            text-transform: uppercase;
        }
        .service-type-grid .tile-row {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: space-between;
            width: 100%;
        }
        .service-type-grid .service-copy { display: grid; gap: 6px; }
        .service-type-grid .tile-chip {
            font-size: 0.66rem;
            letter-spacing: 0.12em;
            color: #d8c591;
            background: rgba(191,163,106,0.12);
            border: 1px solid rgba(191,163,106,0.26);
            padding: 4px 8px;
            border-radius: 999px;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .service-type-grid .service-icon {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            background: linear-gradient(145deg, rgba(191,163,106,0.25), rgba(191,163,106,0.08));
            color: var(--gold-primary);
            display: grid;
            place-items: center;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 6px 14px rgba(0,0,0,0.35);
        }
        #trip-fields {
            border: 1px solid rgba(191,163,106,0.35);
            padding: 12px;
            background: linear-gradient(145deg, rgba(191,163,106,0.08), rgba(0,0,0,0.78));
        }
        #trip-needs-grid {
            margin: 8px 0 10px;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 8px;
        }
        #trip-needs-grid .tile {
            min-height: 50px;
            padding: 9px 8px;
        }
        #trip-needs-grid .tile-title {
            font-size: 0.82rem;
            margin-bottom: 0;
            line-height: 1.16;
        }
        .trip-funnel-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .trip-funnel-btn {
            padding: 10px 14px;
            min-height: 44px;
            border-radius: 0;
            letter-spacing: 0.4px;
        }
        .input-field { width: 100%; background: var(--bg-field); border: 1px solid #222; color: #fff; padding: 16px; font-family: 'Manrope'; font-size: 0.9rem; transition: 0.3s; }
        .input-field:focus { border-color: var(--gold-primary); }
        .field-highlight .input-field {
            border-color: rgba(191,163,106,0.35);
            background: linear-gradient(145deg, rgba(191,163,106,0.08), rgba(0,0,0,0.8));
            box-shadow: 0 12px 24px rgba(191,163,106,0.12);
        }
        .field-highlight .input-field:focus {
            border-color: var(--gold-primary);
            box-shadow: 0 14px 30px rgba(191,163,106,0.18);
        }
        .addon-item { display: flex; justify-content: space-between; align-items: center; background: var(--bg-field); border: 1px solid #222; padding: 16px; cursor: pointer; margin-top: 12px; }
        .addon-item.selected { border-color: var(--gold-primary); }
        .hidden-crossborder { display: none !important; }

        /* INVOICE */
        .invoice-panel { background: #050505; padding: 56px 38px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
        .invoice-card { background: #000; border: var(--border-gold); padding: 28px; height: 100%; display: flex; flex-direction: column; }
        .line-item { display: flex; justify-content: space-between; font-size: 0.85rem; color: #888; margin-bottom: 15px; }
        .line-item span:last-child { color: #fff; }
        .divider { height: 1px; background: #222; margin: 20px 0; }
        .total-section { margin-top: auto; text-align: right; }
        .total-amount { font-family: 'Cinzel'; font-size: 2rem; color: var(--gold-primary); display: block; margin: 5px 0 18px; }
        .payment-toggle { display: flex; gap: 1px; background: #222; margin-bottom: 20px; }
        .pay-btn { flex: 1; background: #111; color: #666; border: none; padding: 12px; font-size: 0.7rem; text-transform: uppercase; cursor: pointer; }
        .pay-btn.active { background: #000; color: #fff; border-top: 2px solid var(--gold-primary); }
        .payment-note { color: #777; font-size: 0.82rem; margin-bottom: 14px; line-height: 1.45; }

        /* SERVICES SECTION */
        .services-section { padding: var(--section-pad) var(--container-pad); background: #0b0b0b; border-top: var(--border-subtle); }
        .services-container { max-width: 1200px; margin: 0 auto; }
        .services-header { text-align: center; margin-bottom: 50px; }
        .services-header h2 { font-size: 2.2rem; margin-bottom: 15px; }
        .services-header p { color: #888; max-width: 700px; margin: 0 auto; }
        .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
        .service-card {
            background: #111; border: 1px solid #222; padding: 30px; position: relative; transition: 0.3s; height: 100%;
        }
        .service-card:hover { border-color: var(--gold-primary); transform: translateY(-5px); }
        .service-card h3 { font-family: 'Cinzel'; color: var(--gold-primary); margin-bottom: 16px; font-size: 1.3rem; }
        .service-list { list-style: none; padding: 0; }
        .service-list li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 0.95rem; color: #ccc; }
        .service-list li:last-child { margin-bottom: 0; }
        .service-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-dim); font-size: 0.8rem; top: 3px; }

        /* BLOG SECTION */
        .blog-section { padding: calc(var(--section-pad) - 10px) var(--container-pad); background: #050505; border-top: var(--border-subtle); }
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
        .blog-card { border: 1px solid #222; background: #0a0a0a; transition: 0.3s; cursor: pointer; }
        .blog-card:hover { border-color: #444; }
        .blog-img { width: 100%; height: 200px; object-fit: cover; filter: grayscale(0.8); transition: 0.3s; }
        .blog-card:hover .blog-img { filter: grayscale(0); }
        @media (hover: none), (max-width: 900px) {
            .blog-img { filter: none; }
        }
        .blog-content { padding: 24px; }
        .blog-title { font-family: 'Cinzel'; font-size: 1.1rem; margin-bottom: 10px; color: #fff; }
        .blog-excerpt { font-size: 0.9rem; color: #888; line-height: 1.6; }

        /* SEO CONTENT BLOCK */
        .seo-block { padding: calc(var(--section-pad) - 10px) var(--container-pad); background: #040404; border-top: var(--border-subtle); }
        .seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 28px; }
        .seo-card { background: #0c0c0c; border: 1px solid #222; padding: 24px; }
        .seo-card h3 { font-family: 'Cinzel'; font-size: 1.15rem; margin-bottom: 10px; color: var(--gold-primary); }
        .seo-card ul { list-style: none; padding-left: 0; margin-top: 10px; }
        .seo-card li { position: relative; padding-left: 18px; margin-bottom: 10px; color: #aaa; line-height: 1.5; }
        .seo-card li::before { content: '▸'; position: absolute; left: 0; color: var(--gold-primary); font-size: 0.8rem; top: 2px; }

        /* PREMIUM FLEET MARQUEE */
        .fleet-section {
            padding: calc(var(--section-pad) - 10px) 0;
            background: #080808;
            border-top: var(--border-subtle);
            border-bottom: var(--border-subtle);
            overflow: hidden;
        }
        .fleet-header { text-align: center; margin-bottom: 40px; padding: 0 20px; }
        .fleet-header h2 { font-size: 2rem; margin-bottom: 10px; }
        .text-luxury-gold { color: var(--gold-primary); }
        
        .marquee-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }
        .marquee-track {
            display: flex;
            width: fit-content;
            gap: 60px;
        
            animation: marqueeSlide 15s linear infinite;
            padding: 10px 0;

            display: flex;
    width: fit-content;
    gap: 60px;
    padding: 10px 0;
    
    /* NEW PERFORMANCE BOOSTERS */
    animation: marqueeSlide 15s linear infinite;
    will-change: transform; /* Promotes to GPU */
    transform: translate3d(0, 0, 0); /* Force hardware acceleration */

        }
        .marquee-logo {
            flex-shrink: 0;
            color: #444;
            opacity: 0.7;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }
        .marquee-logo:hover { color: var(--gold-primary); opacity: 1; }
        .marquee-logo svg { height: 60px; width: auto; }
        @keyframes marqueeSlide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* FAQ SECTION */
        .faq-section { padding: var(--section-pad) var(--container-pad); background: #050505; }
        .faq-container { max-width: 1180px; margin: 0 auto; }
        .faq-header { text-align: center; margin-bottom: 60px; }
        .faq-header h2 { font-size: 2rem; margin-bottom: 16px; }
        .faq-header p { color: var(--text-muted); font-size: 0.98rem; }
        .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
        .faq-item { background: var(--bg-field); border: 1px solid #222; padding: 30px; border-radius: 4px; transition: 0.3s; }
        .faq-item:hover { border-color: #333; transform: translateY(-2px); }
        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            color: #e0e0e0;
            font-family: 'Cinzel', serif;
            font-size: 1.05rem;
            font-weight: 500;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 0;
            cursor: pointer;
        }
        .faq-question:focus-visible { outline: 1px solid var(--gold-primary); outline-offset: 4px; }
        .faq-title { flex: 1; }
        .faq-toggle { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.4px; text-transform: uppercase; }
        .faq-caret { width: 18px; height: 18px; border-radius: 999px; border: 1px solid #333; display: grid; place-items: center; font-size: 0.75rem; color: #cfcfcf; transition: 0.25s; }
        .faq-hint { font-weight: 600; }
        .faq-answer { display: none; color: #999; font-size: 0.92rem; line-height: 1.65; margin-top: 14px; padding-top: 12px; border-top: 1px solid #191919; }
        .faq-item.open .faq-answer { display: block; }
        .faq-item.open .faq-caret { transform: rotate(180deg); border-color: var(--gold-primary); color: var(--gold-primary); }
        .faq-item.open .faq-toggle { color: var(--gold-primary); }
        .faq-cta { text-align: center; margin-top: 60px; padding-top: 40px; border-top: 1px solid #222; }
        .faq-cta-link { color: var(--gold-primary); text-decoration: none; font-weight: 600; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; }
        .faq-cta-link:hover { text-decoration: underline; }
        .header-cta { color:#fff; border: 1px solid rgba(191,163,106,0.4); padding: 7px 10px; border-radius: 999px; background: rgba(0,0,0,0.35); font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; line-height: 1.1; white-space: nowrap; }
        .header-cta .icon-wa { width: 18px; height: 18px; }
        .header-cta:hover { border-color: var(--gold-primary); color: var(--gold-primary); text-decoration: none; }

        /* SEO */
        .seo-block { padding: calc(var(--section-pad) - 20px) var(--container-pad); background:#050505; border-top: var(--border-subtle); }
        .seo-block h2 { font-family: 'Cinzel', serif; margin-bottom: 12px; font-size: 1.4rem; color:#f5f5f5; }
        .seo-block p { color:#9a9a9a; margin-bottom: 10px; line-height: 1.6; font-size: 0.95rem; }

        /* FOOTER */
        .site-footer { border-top: var(--border-subtle); background:#050505; padding:50px var(--container-pad); color:#aaa; }
        .footer-grid { display:grid; grid-template-columns: 1.4fr 1fr; gap:40px; }
        .footer-copy { color:#777; font-size:0.9rem; max-width:520px; line-height:1.6; margin-top:14px; }
        .footer-links { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap:20px; font-size:0.9rem; }
        .footer-links a { color:#fff; text-decoration:none; transition: color 0.2s ease; }
        .footer-links a:hover { color: var(--gold-primary); }
        .footer-locale {
            position: fixed;
            left: 18px;
            bottom: 18px;
            z-index: 1180;
            display: flex;
            justify-content: center;
        }
        .footer-locale .header-controls {
            flex-wrap: wrap;
            box-shadow: 0 14px 36px rgba(0,0,0,0.45);
            backdrop-filter: blur(10px) saturate(150%);
            -webkit-backdrop-filter: blur(10px) saturate(150%);
        }
        .invoice-wa-btn { width: 100%; justify-content: center; padding: 13px 14px; }
        .form-action-row { margin-top: 14px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; width: 100%; }
        .form-action-row .btn-main { width: 100%; max-width: 440px; justify-content: center; padding: 14px 24px; }
        .hero-bottom-mobile { display: none; }
        .hero-bottom-mobile .hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 320px; margin: 12px auto 0; }
        .hero-bottom-mobile .hero-actions .btn-main,
        .hero-bottom-mobile .hero-actions .btn-ghost { flex: 1 1 48%; min-width: 0; padding: 10px 12px; font-size: 0.85rem; }

        /* FLOATING CTA */
        .sticky-wa-btn {
            position: fixed;
            left: 50%;
            right: auto;
            bottom: 24px;
            z-index: 12000;
            display: none;
            justify-content: center;
            align-items: center;
            gap: 12px;
            padding: 15px 18px;
            padding: 15px calc(18px + env(safe-area-inset-right)) 15px calc(18px + env(safe-area-inset-left));
            background: linear-gradient(130deg, rgba(255, 247, 231, 0.98) 0%, rgba(245, 214, 150, 0.98) 30%, rgba(218, 172, 92, 0.98) 62%, rgba(132, 96, 38, 0.95) 100%);
            color: #0a0805;
            border: 1px solid rgba(255, 228, 195, 0.85);
            border-radius: 999px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.35px;
            text-shadow: 0 1px 0 rgba(255,255,255,0.45), 0 10px 22px rgba(0,0,0,0.35);
            box-shadow: 0 24px 56px rgba(0,0,0,0.62), 0 10px 26px rgba(255, 228, 195, 0.32), inset 0 1px 0 rgba(255,255,255,0.42), 0 0 36px rgba(255, 241, 220, 0.48);
            cursor: pointer;
            backdrop-filter: blur(12px) saturate(160%);
            -webkit-backdrop-filter: blur(12px) saturate(160%);
            transition: transform 0.2s ease, box-shadow 0.25s ease;
            overflow: hidden;
            isolation: isolate;
            touch-action: manipulation;
            max-width: 360px;
            width: auto;
            transform: translateX(-50%);
        }
        .sticky-wa-btn > * { position: relative; z-index: 1; }
        .sticky-wa-btn.hidden { display: none !important; }
        .sticky-wa-btn.is-visible { 
            display: flex; 
            animation: luxeGlow 4.8s ease-in-out infinite;
        }
        .sticky-wa-btn::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(165deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.08) 70%, rgba(255,255,255,0.04) 100%);
            pointer-events: none;
            z-index: 0;
        }
        .sticky-wa-btn::after {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(120deg, rgba(255,233,193,0) 0%, rgba(255,233,193,0.85) 34%, rgba(255,233,193,0.22) 56%, rgba(255,233,193,0) 78%);
            background-size: 320% 240%;
            background-position: 160% 50%;
            mix-blend-mode: screen;
            pointer-events: none;
            opacity: 0;
            z-index: 0;
        }
        .sticky-wa-btn.is-visible::after {
            opacity: 0.95;
            animation: luxeSweep 5s cubic-bezier(0.35, 0.05, 0.22, 1) infinite;
        }
        .sticky-wa-btn .icon-wa { width: 20px; height: 20px; }
        .sticky-wa-btn small { display: block; font-size: 0.75rem; font-weight: 600; text-transform: none; color: #20150a; opacity: 0.9; }
        .sticky-wa-btn:hover {
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 22px 56px rgba(0,0,0,0.58), 0 0 28px rgba(255, 221, 167, 0.35);
        }
        @media(max-width: 900px) {
            #sticky-wa-btn { 
                left: calc(16px + env(safe-area-inset-left));
                right: calc(16px + env(safe-area-inset-right));
                bottom: calc(16px + env(safe-area-inset-bottom));
                max-width: none;
                width: auto;
                transform: none;
            }
        }
        @keyframes luxeGlow {
            0%, 100% { box-shadow: 0 24px 56px rgba(0,0,0,0.62), 0 0 0 1px rgba(255, 228, 195, 0.28), 0 0 36px rgba(255, 241, 220, 0.48), 0 10px 26px rgba(255, 228, 195, 0.32); }
            50% { box-shadow: 0 30px 78px rgba(0,0,0,0.68), 0 0 64px rgba(255, 228, 195, 0.7), 0 0 48px rgba(255, 245, 229, 0.55), 0 14px 34px rgba(255, 228, 195, 0.38); }
        }
        @keyframes luxeSweep {
            0% { background-position: 160% 50%; opacity: 0; }
            18% { opacity: 0.82; }
            50% { background-position: -8% 50%; opacity: 0.55; }
            82% { opacity: 0; }
            100% { background-position: -160% 50%; opacity: 0; }
        }

        /* RESPONSIVE */
        @media(max-width: 1100px) {
            :root { --container-pad: 28px; --section-pad: 80px; }
            .app-grid { grid-template-columns: 1fr; width: min(100%, calc(100% - 34px)); padding: 10px 0 32px; row-gap: 18px; }
            .config-panel { padding: 56px 32px; border-right: none; }
            .invoice-panel { padding: 34px 28px; position: static; height: auto; margin-top: 10px; }
            .hero h1 { margin-bottom: 110px; }
        }
        @media(max-width: 1000px) {
            :root { --container-pad: 22px; --section-pad: 74px; --progress-rail-width: 26px; --progress-dot-size: 8px; --progress-rail-thickness: 1px; }
            .app-grid { grid-template-columns: 1fr; min-height: auto; width: min(100%, calc(100% - 28px)); padding: 8px 0 30px; row-gap: 18px; }
            .config-panel { padding: 34px 20px 42px; border-right: none; }
            body.progress-active .config-panel { gap: 12px; }
            .step-block { margin-bottom: 46px; }
            .invoice-panel { position: static; height: auto; padding: 24px 20px; margin-top: 16px; }
            .invoice-card { padding: 24px 20px; }
            .hero { padding: 86px 20px 72px; min-height: auto; }
            .hero h1 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-bottom: 28px; transform: none; }
            .hero p { font-size: 0.9rem; }
            .hero-bottom { gap: 14px; }
            .hero-actions { display: grid; grid-template-columns: 1fr; gap: 8px; width: min(480px, 100%); }
            .hero-actions .btn-main, .hero-actions .btn-ghost { width: 100%; padding: 12px 16px; max-width: none; }
            .header-logo { height: clamp(58px, 25vw, 94px); }
            .tile { padding: 16px; }
            .input-field { padding: 14px; }
            .line-item { font-size: 0.8rem; }
        }
        @media(max-width: 900px) {
            .car-grid { width: 100%; }
            .car-grid.active {
                display: flex !important;
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 12px;
                padding: 0 8px 18px;
                margin: 0;
                scroll-snap-type: x proximity;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-x: contain;
                touch-action: pan-x;
            }
            .car-card {
                flex: 0 0 auto;
                transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
                min-width: min(78vw, 250px);
                max-width: 250px;
                scroll-snap-align: start;
            }
        }
        @media(max-width: 700px) {
            :root { --container-pad: 18px; --section-pad: 64px; --progress-rail-width: 22px; --progress-dot-size: 8px; --progress-rail-thickness: 1px; }
            .app-grid { width: min(100%, calc(100% - 26px)); padding: 0 0 32px; row-gap: 18px; }
            .config-panel, .invoice-panel { border-radius: 12px; border: 1px solid #111; box-shadow: 0 18px 50px rgba(0,0,0,0.45); background: #060606; }
            body.progress-active .config-panel { gap: 8px; }
            .invoice-card { border-radius: 10px; }
            .invoice-panel { position: static; height: auto; padding-top: 18px; }
            .faq-section { padding: 48px 18px; }
            .faq-header { margin-bottom: 32px; }
            .faq-grid { gap: 16px; }
            .faq-item { padding: 18px; }
            .faq-question { align-items: flex-start; }
            .faq-answer { margin-top: 10px; padding-top: 10px; line-height: 1.55; }
            body { font-size: 13px; }
            .container { padding: 0 var(--container-pad); }
            header { padding: 6px 0; }
            header .container { flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; }
            .header-logo { height: clamp(44px, 11vw, 66px); }
            .header-cta { padding: 5px 9px; font-size: 0.82rem; gap: 6px; }
            .header-cta .icon-wa { width: 20px; height: 20px; }
            .input-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 14px; }
            .faq-grid, .blog-grid { grid-template-columns: 1fr; }
            .service-card { padding: 24px; }
            .marquee-logo svg { height: 40px; }
            .marquee-track { gap: 30px; }
            .hero { padding: 22vh 12px 12vh; min-height: 88vh; justify-content: flex-start; align-items: center; text-align: center; }
            .hero-content { align-items: center; width: 100%; }
            .hero h1 { font-size: clamp(1.12rem, 3.6vw, 1.32rem); margin-bottom: 6px; line-height: 1.03; }
            .hero p { font-size: 0.8rem; line-height: 1.42; text-shadow: 0 6px 16px rgba(0,0,0,0.55); }
            .hero-bottom { gap: 12px; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 420px; margin-top: clamp(32px, 7vh, 80px); }
            .hero-actions { display: flex; flex-direction: column; width: 100%; max-width: 320px; gap: 10px; justify-content: center; }
            .hero-actions .btn-main, .hero-actions .btn-ghost { width: 100%; flex: 1 1 auto; padding: 12px 14px; font-size: 0.82rem; letter-spacing: 0.6px; line-height: 1.24; min-height: 48px; }
            .btn-wa .icon-wa { width: 16px; height: 16px; }
            .hero-bottom-mobile { display: none; }
            header .faq-cta-link { font-size: 0.86rem; }
            header .flex-between { gap: 8px; }
            .tile { padding: 10px; }
            .tile-title { font-size: 0.86rem; }
            .tile-sub { font-size: 0.64rem; letter-spacing: 0.15px; }
            .tile-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
            .service-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
            .service-type-grid .tile {
                min-height: 66px;
                padding: 8px 8px 7px;
                column-gap: 7px;
                row-gap: 3px;
                border-radius: 10px;
            }
            .service-type-grid .tile-row { gap: 6px; min-width: 0; }
            .service-type-grid .tile-title {
                font-size: 0.78rem;
                line-height: 1.15;
                margin-bottom: 0;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                min-width: 0;
            }
            .service-type-grid .tile-sub {
                font-size: 0.5rem;
                line-height: 1.08;
                letter-spacing: 0.06em;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .service-type-grid .tile-chip { font-size: 0.5rem; padding: 2px 5px; letter-spacing: 0.06em; }
            .service-type-grid .service-icon { width: 23px; height: 23px; font-size: 0.68rem; border-radius: 7px; }
            .service-type-grid .service-copy { gap: 2px; }
            .config-panel { padding: 16px 10px 20px; }
            .step-block { margin-bottom: 18px; }
            .step-header { margin-bottom: 10px; padding-bottom: 7px; }
            .invoice-panel { padding: 14px 10px; }
            .invoice-card { padding: 16px 12px; }
            .input-field { padding: 10px 11px; font-size: 0.84rem; }
            .config-panel .btn-main, .config-panel .btn-ghost, .invoice-panel .btn-main { padding: 9px 12px; font-size: 0.78rem; letter-spacing: 0.35px; }
            .line-item { font-size: 0.76rem; }
            .total-amount { font-size: 1.6rem; margin-bottom: 14px; }
            .floating-wa { right: 14px; bottom: 14px; padding: 9px 11px; }
            .fleet-header { padding: 0 12px; }
            .faq-header h2 { font-size: 1.8rem; }
            .site-footer { padding: 42px var(--container-pad); }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .footer-links { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
            .header-logo { height: clamp(54px, 12vw, 88px); }
            .services-section,
            .blog-section,
            .faq-section,
            .seo-block,
            .fleet-section { padding-top: 52px; padding-bottom: 52px; }
            .services-container { overflow: hidden; }
            .service-grid {
                display: grid;
                grid-template-columns: unset;
                grid-auto-flow: column;
                grid-auto-columns: 82%;
                align-items: stretch;
                overflow-x: auto;
                overscroll-behavior-x: contain;
                scroll-snap-type: x mandatory;
                scroll-padding: 0 var(--container-pad);
                -webkit-overflow-scrolling: touch;
                gap: 14px;
                padding: 4px var(--container-pad) 12px;
                margin: 0 calc(-1 * var(--container-pad));
            }
            .service-card {
                scroll-snap-align: start;
                align-self: stretch;
                min-height: 100%;
                height: 100%;
                padding: 18px 16px;
            }
            .service-grid::-webkit-scrollbar { height: 6px; }
            .service-grid::-webkit-scrollbar-thumb { background: rgba(191,163,106,0.5); border-radius: 999px; }
            .service-grid::-webkit-scrollbar-track { background: transparent; }
            .services-header h2 { font-size: 1.35rem; }
            .services-header p { font-size: 0.9rem; }
            .service-card h3 { font-size: 1.05rem; }
            .service-list li { font-size: 0.9rem; }
            .faq-section { padding: 42px 14px; }
            .faq-header h2 { font-size: 1.55rem; margin-bottom: 12px; }
            .faq-header p { font-size: 0.88rem; }
            .faq-grid { gap: 14px; }
            .faq-item { padding: 16px; }
            .faq-question { font-size: 0.98rem; }
            .faq-answer { font-size: 0.86rem; line-height: 1.5; margin-top: 8px; padding-top: 8px; }
            .seo-block h2 { font-size: 1.15rem; }
            .seo-block p { font-size: 0.9rem; }
            .mobile-cta-bar { display: flex; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
            .floating-wa { display: none; }
            .footer-locale {
                left: 14px;
                bottom: calc(14px + env(safe-area-inset-bottom) + 96px);
            }
            .addon-item { padding: 10px; gap: 6px; }
            .trust-card { padding: 12px; margin-bottom: 18px; }
            .trust-card p { font-size: 0.88rem; line-height: 1.42; margin-bottom: 8px; }
            .label { margin-bottom: 6px; font-size: 0.68rem; letter-spacing: 1.2px; }
            .step-header h3 { font-size: 1.05rem; }
            .payment-toggle { margin-bottom: 14px; }
            .pay-btn { padding: 10px; font-size: 0.68rem; }
            .total-amount { font-size: 1.5rem; }
        }
        @media(max-width: 560px) {
            .car-grid.active { padding: 0 6px 18px; margin: 0; gap:10px; }
            .car-card { min-width: min(82vw, 230px); }
            .car-img { height: 128px; }
            header { padding: 3px 0; }
            .header-logo { height: clamp(38px, 24vw, 65px); }
            header .faq-cta-link { font-size: 0.76rem; padding: 4px 8px; gap: 5px; }
            .hero { padding: 35vh 12px 10vh; min-height: 82vh; justify-content: flex-start; align-items: center; text-align: center; }
            .hero-content { align-items: center; }
            .hero h1 { font-size: 1.02rem; line-height: 1.02; margin-bottom: 4px; }
            .hero p { font-size: 0.74rem; line-height: 1.34; text-shadow: 0 6px 16px rgba(0,0,0,0.55); }
            .hero-bottom { margin-top: clamp(90px, 6vh, 70px); max-width: 400px; gap: 25px; }
            .hero-actions { gap: 8px; max-width: 320px; width: 100%; justify-content: center; }
            .hero-actions .btn-main, .hero-actions .btn-ghost { flex: 1 1 100%; width: 100%; padding: 12px 14px; font-size: 0.78rem; letter-spacing: 0.5px; min-height: 48px; }
            .btn-main, .btn-ghost { font-size: 0.78rem; padding: 12px 14px; letter-spacing: 0.45px; line-height: 1.22; min-height: 46px; }
            .btn-wa .icon-wa { width: 15px; height: 15px; }
            .hero-bottom-mobile { display: none; }
            .input-row { gap: 10px; margin-bottom: 12px; }
            .config-panel { padding: 14px 8px 18px; }
            .tile { padding: 9px; }
            .tile-title { font-size: 0.84rem; }
            .tile-sub { font-size: 0.62rem; letter-spacing: 0.1px; }
            .tile-grid { grid-template-columns: repeat(auto-fit, minmax(115px, 1fr)); gap: 6px; }
            .service-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
            .service-type-grid .tile {
                min-height: 60px;
                padding: 7px 7px 6px;
                column-gap: 6px;
                row-gap: 2px;
                border-radius: 9px;
            }
            .service-type-grid .tile-row { gap: 5px; }
            .service-type-grid .tile-title { font-size: 0.74rem; line-height: 1.12; }
            .service-type-grid .tile-sub { font-size: 0.48rem; line-height: 1.06; letter-spacing: 0.05em; }
            .service-type-grid .tile-chip { font-size: 0.47rem; padding: 2px 5px; letter-spacing: 0.05em; }
            .service-type-grid .service-icon { width: 20px; height: 20px; font-size: 0.62rem; border-radius: 6px; }
            .service-type-grid .service-copy { gap: 2px; }
            .step-block { margin-bottom: 16px; }
            .step-header { margin-bottom: 9px; padding-bottom: 7px; }
            .input-field { padding: 9px 10px; font-size: 0.82rem; }
            .payment-note { font-size: 0.74rem; }
            .invoice-panel { padding: 12px 9px; }
            .invoice-card { padding: 14px 11px; }
            .config-panel .btn-main, .config-panel .btn-ghost, .invoice-panel .btn-main { font-size: 0.75rem; padding: 8px 10px; letter-spacing: 0.32px; }
            .addon-item { padding: 9px; gap: 6px; }
            .trust-card { padding: 10px; margin-bottom: 14px; }
            .trust-card p { font-size: 0.86rem; line-height: 1.4; margin-bottom: 6px; }
            .label { font-size: 0.66rem; margin-bottom: 6px; }
            .step-header h3 { font-size: 1rem; }
            .payment-toggle { margin-bottom: 12px; }
            .pay-btn { padding: 9px; font-size: 0.66rem; }
            .total-amount { font-size: 1.42rem; margin-bottom: 10px; }
            .floating-wa { font-size: 0.86rem; gap: 8px; padding: 9px 11px; }
            .services-header h2 { font-size: 1.25rem; }
            .services-header p { font-size: 0.88rem; }
            .service-card h3 { font-size: 1rem; }
            .service-list li { font-size: 0.88rem; }
            .faq-header h2 { font-size: 1.45rem; }
            .faq-header p { font-size: 0.86rem; }
            .faq-grid { gap: 12px; }
            .faq-item { padding: 14px; }
            .faq-question { font-size: 0.94rem; }
            .faq-answer { font-size: 0.84rem; line-height: 1.48; margin-top: 6px; padding-top: 6px; }
            .seo-block h2 { font-size: 1.1rem; }
            .seo-block p { font-size: 0.88rem; }
        }
        @media(max-width: 480px) {
            body { font-size: 12px; line-height: 1.45; }
            .hero h1 { font-size: 0.95rem; line-height: 1.04; }
            .hero p { font-size: 0.7rem; line-height: 1.32; }
            .hero-actions .btn-main, .hero-actions .btn-ghost { font-size: 0.65rem; padding: 5px; min-height: 35px; letter-spacing: 0.4px; }
            .btn-main, .btn-ghost { font-size: 0.74rem; padding: 12px; letter-spacing: 0.35px; min-height: 44px; line-height: 1.2; }
            .step-block .btn-main, .step-block .btn-ghost { font-size: 0.68rem; padding: 8px 10px !important; letter-spacing: 0.35px; }
            .invoice-panel .btn-main { font-size: 0.68rem; padding: 8px 10px; }
            .floating-wa { font-size: 0.78rem; padding: 8px 10px; }
            .services-header h2 { font-size: 1.12rem; }
            .services-header p { font-size: 0.82rem; }
            .service-card h3 { font-size: 0.94rem; }
            .service-list li { font-size: 0.82rem; }
            .faq-header h2 { font-size: 1.25rem; }
            .faq-header p { font-size: 0.82rem; }
            .faq-question { font-size: 0.9rem; }
            .faq-answer { font-size: 0.82rem; }
            .seo-block h2 { font-size: 1.02rem; }
            .seo-block p { font-size: 0.82rem; }
            .config-panel { padding: 12px 8px 14px; }
            .invoice-panel { padding: 10px 8px; }
            .invoice-card { padding: 12px 10px; }
            .input-row { gap: 8px; margin-bottom: 10px; }
            .input-field { padding: 8px 9px; font-size: 0.78rem; }
            .tile { padding: 8px; }
            .tile-title { font-size: 0.8rem; }
            .tile-sub { font-size: 0.58rem; letter-spacing: 0.08px; }
            .tile-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 5px; }
            .service-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
            .service-type-grid .tile { min-height: 56px; padding: 6px 6px 5px; column-gap: 5px; row-gap: 2px; border-radius: 8px; }
            .service-type-grid .tile-row { gap: 4px; }
            .service-type-grid .tile-title { font-size: 0.7rem; line-height: 1.12; }
            .service-type-grid .tile-sub { font-size: 0.46rem; line-height: 1.04; letter-spacing: 0.04em; }
            .service-type-grid .tile-chip { font-size: 0.45rem; padding: 2px 4px; letter-spacing: 0.04em; }
            .service-type-grid .service-icon { width: 18px; height: 18px; font-size: 0.56rem; border-radius: 5px; }
            .service-type-grid .service-copy { gap: 2px; }
            .step-block { margin-bottom: 14px; }
            .step-header { margin-bottom: 8px; padding-bottom: 6px; }
            .addon-item { padding: 8px; gap: 6px; }
            .trust-card { padding: 9px; margin-bottom: 12px; }
            .trust-card p { font-size: 0.84rem; line-height: 1.36; margin-bottom: 6px; }
            .label { font-size: 0.64rem; margin-bottom: 5px; letter-spacing: 1px; }
            .step-header h3 { font-size: 0.96rem; }
            .payment-toggle { margin-bottom: 10px; }
            .pay-btn { padding: 8px; font-size: 0.64rem; }
            .payment-note { font-size: 0.72rem; line-height: 1.35; margin-bottom: 8px; }
            .total-amount { font-size: 1.34rem; margin-bottom: 8px; }
        }

        /* --- ADD TO YOUR CSS SECTION --- */

/* Compact Tile Grid for Steps 1-3 to save space */
.tile-grid { gap: 8px; }
.tile { padding: 12px 8px; }
.tile-title { font-size: 0.8rem; }
.tile-sub { font-size: 0.6rem; margin-top: 2px; }

/* New Step 4: Smart Form Design */
.smart-form-group {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.form-header-sm {
    color: var(--gold-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.optional-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 12px;
    background: #0b0b0b;
    border: 1px dashed #333;
    padding: 12px 14px;
    border-radius: 8px;
}
.optional-toggle button {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(191,163,106,0.6);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: 0.2s;
}
.optional-toggle button:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}
.optional-hint {
    color: #888;
    font-size: 0.82rem;
    line-height: 1.4;
}
.optional-details {
    border: 1px solid #111;
    border-radius: 10px;
    padding: 10px;
    background: #070707;
}
.optional-details.collapsed {
    display: none;
}

/* Route Visualizer UI */
.route-visualizer {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid #333;
    margin-left: 10px;
}
.route-point {
    position: relative;
    margin-bottom: 16px;
}
.route-point::before {
    content: '';
    position: absolute;
    left: -31px; /* Aligns with border-left */
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #000;
    border: 2px solid #555;
    border-radius: 50%;
    z-index: 2;
}
.route-point.dropoff::before {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
}

/* Input Enhancements */
.smart-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.smart-input {
    width: 100%;
    background: #080808;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 14px 12px 40px; /* Space for icon */
    font-family: 'Manrope';
    font-size: 0.9rem;
    border-radius: 4px;
    transition: 0.2s;
}
.smart-input:focus {
    border-color: var(--gold-primary);
    background: #000;
}
.input-icon {
    position: absolute;
    left: 12px;
    color: #666;
    width: 18px;
    height: 18px;
    pointer-events: none;
}
.smart-input:focus + .input-icon { color: var(--gold-primary); }

/* Integrated Map Button */
.btn-map-preview {
    width: 100%;
    background: rgba(255,255,255,0.05);
    color: #aaa;
    border: 1px dashed #444;
    padding: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    border-radius: 4px;
    margin-top: 5px;
}
.btn-map-preview:hover {
    color: #fff;
    border-color: #666;
    background: rgba(255,255,255,0.1);
}

/* Mobile adjustments for the form */
@media(max-width: 700px) {
    .smart-form-group { padding: 15px; }
    .route-visualizer { padding-left: 15px; margin-left: 6px; }
    .route-point::before { left: -22px; width: 10px; height: 10px; }
}

/* --- ADD THIS TO YOUR CSS --- */

/* Pulse Animation to draw attention */
@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(191, 163, 106, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(191, 163, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(191, 163, 106, 0); }
}

.btn-pulse {
    animation: goldPulse 2s infinite;
}

/* Trust Text below button */
.trust-text {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: #666;
    margin-top: 8px;
}

/* STICKY MOBILE FOOTER - The Game Changer */
/* This ensures the button is always visible on mobile */
@media(max-width: 900px) {
    .form-action-row {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
        border-top: 1px solid #333;
        z-index: 9999;
        margin-top: 0;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
        display: block; /* Force show */
    }
    
    /* Add padding to the bottom of the form so content isn't hidden behind the bar */
    #step-6 {
        padding-bottom: 80px; 
    }
    
    /* Hide the floating WA button when form is active to prevent clutter */
    .floating-wa {
        display: none !important; 
    }
}

/* Quick Select Chips */
.quick-chips {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.chip {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #888;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.chip:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}
.chip svg { width: 10px; height: 10px; }

/* Optimize Image Rendering */
img {
    /* Prevents layout shift */
    height: auto;
    /* keep photographic rendering crisp */
    image-rendering: auto;
}

/* Prioritize Hero Background */
.hero {
    /* Ensures background renders immediately */
    background-color: #000; 
}

/* FIX: Force Date Input Size on Mobile */
input[type="datetime-local"] {
    min-height: 54px; /* Force substantial touch height */
    line-height: 1.5; /* Center text vertically */
    font-size: 16px;  /* Prevents iOS zooming in when clicked */
    appearance: none; /* Removes native OS styling constraints */
    -webkit-appearance: none;
    width: 100%;
    display: block;
}

/* Ensure the calendar icon doesn't shift the text weirdly */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Makes the icon white */
    opacity: 0.6;
    cursor: pointer;
}

/* --- ADD/UPDATE IN YOUR CSS --- */

/* 1. Fix Giant Icons on Car Cards */
.car-specs {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    border-top: 1px solid #222;
    padding-top: 8px;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #999;
}
.spec-item svg {
    width: 14px; /* Constraints the icon size */
    height: 14px;
    color: var(--gold-primary);
    flex-shrink: 0;
}
.next-step-pill {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #ccc;
    background: #0c0c0c;
    border: 1px solid #222;
    padding: 10px 12px;
    border-radius: 10px;
    margin: 14px 0 4px;
}
.next-step-pill.visible { display: inline-flex; }
.estimate-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #d7c18b;
    background: rgba(191,163,106,0.12);
    border: 1px solid rgba(191,163,106,0.25);
    padding: 7px 10px;
    border-radius: 8px;
    margin-bottom: 12px;
}
.estimate-tag svg { width: 14px; height: 14px; }

/* 2. Fix Scroll Position (Prevent Header Overlap) */
.step-block {
    scroll-margin-top: calc(var(--header-height, 72px) + 24px); /* Ensures title isn't hidden behind sticky header */
}



/* --- FIXED SLIDER & ICON CSS --- */

/* 1. Fix Giant WhatsApp Icon */
.btn-main svg, 
.btn-ghost svg, 
.icon-wa {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0; /* Prevents squishing */
}
/* Specific fix for the big chat button container */
.form-action-row .btn-main {
    gap: 12px;
}

/* 2. Premium Slider Navigation */
        .car-grid-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 24px;
            /* Create breathing room for the shadow */
            padding: 10px 0;
            display: none; /* Hide by default to avoid stray arrows */
        }
        .car-grid-wrapper.active-wrapper { display: block; }

/* Hide scrollbar but allow scrolling */
.car-grid {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.car-grid::-webkit-scrollbar {
    display: none;
}

/* Premium Arrows - Floating over the car image */
.slider-nav-btn {
    position: absolute;
    top: 95px; /* Centers arrow vertically relative to the 170px image */
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark */
    backdrop-filter: blur(4px); /* Glass effect */
    border: 1px solid rgba(191, 163, 106, 0.3); /* Subtle gold border */
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    line-height: 1;
    padding-bottom: 2px; /* Visual centering adjustment */
}

.slider-nav-btn:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.slider-nav-btn.is-disabled {
    opacity: 0.34;
    pointer-events: none;
    box-shadow: none;
    border-color: rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.45);
}

.slider-nav-prev { left: 10px; }
.slider-nav-next { right: 10px; }

/* Mobile Optimization for Arrows */
@media(max-width: 700px) {
    .slider-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.75); /* Darker on mobile for contrast */
    }
    .slider-nav-prev { left: 5px; }
    .slider-nav-next { right: 5px; }
}


/* The Sheen Animation */
@keyframes shimmer {
    0% { transform: translateX(-150%) skewX(-15deg); }
    100% { transform: translateX(150%) skewX(-15deg); }
}

.btn-unlocked {
    position: relative;
    overflow: hidden; /* Contains the light beam */
    /* Existing styles... */
}

/* The Light Beam */
.btn-unlocked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.4) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-15deg);
    animation: shimmer 2.5s infinite; /* Runs every 2.5 seconds */
    pointer-events: none;
}

.btn-main:active {
    transform: scale(0.98); /* Slight press effect */
    filter: brightness(0.9);
}


/* --- PREMIUM TOAST NOTIFICATION --- */
.toast-notification {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%); /* Hidden above screen */
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0); /* Slide in */
}

.toast-icon {
    color: var(--gold-primary);
    display: flex;
    align-items: center;
}

/* Locked state specific styles */
.btn-locked .icon-wa {
    opacity: 0.5; /* Dim icon when locked */
}

.btn-unlocked .icon-wa {
    opacity: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Booking mobile compact pass (all steps) */
@media (max-width: 900px) {
    #booking-engine .step-block.locked {
        opacity: 0.5;
        filter: grayscale(0.2);
        margin-bottom: 8px;
    }
    #booking-engine .step-block.locked > :not(.step-header) {
        display: none !important;
    }
    #booking-engine .step-block.locked .step-header {
        margin-bottom: 0;
        padding-bottom: 6px;
    }
    #booking-engine .step-block.is-current {
        box-shadow: inset 2px 0 0 rgba(191,163,106,0.62);
        background: linear-gradient(90deg, rgba(191,163,106,0.08), rgba(191,163,106,0) 42%);
    }
    #booking-engine .step-block.is-current .tile-grid .tile {
        border-color: rgba(191,163,106,0.44);
    }
    #booking-engine .step-block:not(.is-current) .tile-grid .tile {
        border-color: rgba(255,255,255,0.11);
    }
    #booking-engine .step-header { margin-bottom: 10px; padding-bottom: 7px; }
    #booking-engine .step-header h3 { font-size: 1.02rem; line-height: 1.2; }
    #booking-engine .label { margin-bottom: 6px; font-size: 0.68rem; letter-spacing: 0.9px; }
    #booking-engine .step-block .tile,
    #booking-engine .step-block .input-field,
    #booking-engine .step-block .addon-item,
    #booking-engine .step-block .service-type-grid .tile,
    #booking-engine .step-block .service-type-grid .service-icon,
    #booking-engine .step-block .service-type-grid .tile-chip { border-radius: 0 !important; }
    #booking-engine #pax-grid,
    #booking-engine #schedule-type-grid,
    #booking-engine #step-6 > .tile-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
    }
    #booking-engine #schedule-type-grid .tile[data-schedule-type="custom"] { grid-column: 1 / -1; }
    #booking-engine #pax-grid .tile,
    #booking-engine #schedule-type-grid .tile,
    #booking-engine #step-6 > .tile-grid .tile {
        min-height: 56px;
        min-width: 0;
        padding: 10px 10px;
    }
    #booking-engine #crossborder-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    #booking-engine #crossborder-type-grid .tile {
        min-height: 56px;
        padding: 10px 9px;
    }
    #booking-engine #pax-grid .tile-title,
    #booking-engine #schedule-type-grid .tile-title,
    #booking-engine #crossborder-type-grid .tile-title,
    #booking-engine #step-6 > .tile-grid .tile-title {
        font-size: 0.85rem;
        line-height: 1.14;
        margin-bottom: 0;
    }
    #booking-engine #pax-grid .tile-title,
    #booking-engine #schedule-type-grid .tile-title,
    #booking-engine #crossborder-type-grid .tile-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #booking-engine #step-6 > .tile-grid .tile-title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: normal;
        overflow: hidden;
    }
    #booking-engine #pax-grid .tile-sub,
    #booking-engine #schedule-type-grid .tile-sub,
    #booking-engine #step-6 > .tile-grid .tile-sub {
        display: none;
    }
    #booking-engine #pax-helper-note,
    #booking-engine #schedule-helper-note {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-top: 5px !important;
    }
}
@media (max-width: 700px) {
    #booking-engine .config-panel { padding: 13px 7px 15px; border-radius: 0; }
    #booking-engine .invoice-panel,
    #booking-engine .invoice-card,
    #booking-engine .trust-card { border-radius: 0; }
    #booking-engine .trust-card { padding: 9px; margin-bottom: 11px; }
    #booking-engine .trust-card p { font-size: 0.8rem; line-height: 1.3; margin-bottom: 5px; }
    #booking-engine .step-block { margin-bottom: 11px; }
    #booking-engine .step-header { margin-bottom: 7px; padding-bottom: 6px; }
    #booking-engine .step-header h3 { font-size: 1rem; line-height: 1.18; }
    #booking-engine .step-num { margin-right: 10px; }
    #booking-engine .label { margin-bottom: 5px; font-size: 0.68rem; letter-spacing: 0.85px; }
    #booking-engine #step-3 > .tile-grid { margin-bottom: 10px !important; }
    #booking-engine #step-6 > .tile-grid { margin-bottom: 8px !important; }
    #booking-engine #pax-grid,
    #booking-engine #schedule-type-grid,
    #booking-engine #crossborder-type-grid { margin-bottom: 8px !important; }
    #booking-engine .tile,
    #booking-engine .input-field,
    #booking-engine .addon-item,
    #booking-engine .car-card,
    #booking-engine .car-badge,
    #booking-engine .slider-nav-btn,
    #booking-engine .service-type-grid .tile,
    #booking-engine .service-type-grid .service-icon,
    #booking-engine .service-type-grid .tile-chip { border-radius: 0 !important; }
    #booking-engine .tile {
        background: #080808;
        border-color: rgba(255,255,255,0.12);
        box-shadow: none !important;
        touch-action: manipulation;
    }
    #booking-engine .tile-grid.tile-highlight .tile {
        border-color: rgba(191,163,106,0.48);
        box-shadow: none !important;
    }
    #booking-engine .tile-grid.tile-highlight .tile::after {
        display: none !important;
        animation: none !important;
    }
    #booking-engine .tile.selected {
        border-color: rgba(191,163,106,0.58);
        background: #101010;
        box-shadow: none !important;
    }
    #booking-engine .tile:hover,
    #booking-engine .service-type-grid .tile:hover {
        transform: none;
        border-color: rgba(255,255,255,0.18);
        box-shadow: none;
    }
    #booking-engine .tile-grid:not(.service-type-grid) { gap: 7px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    #booking-engine .tile-grid:not(.service-type-grid) .tile { min-height: 52px; padding: 9px 8px; }
    #booking-engine .tile-grid:not(.service-type-grid) .tile-title { font-size: 0.86rem; line-height: 1.14; margin-bottom: 0; }
    #booking-engine .tile-grid:not(.service-type-grid) .tile-sub { display: none; }
    #booking-engine #pax-grid,
    #booking-engine #schedule-type-grid,
    #booking-engine #step-6 > .tile-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        overflow: visible;
        padding-bottom: 0;
    }
    #booking-engine #schedule-type-grid .tile[data-schedule-type="custom"] { grid-column: 1 / -1; }
    #booking-engine #pax-grid .tile,
    #booking-engine #schedule-type-grid .tile,
    #booking-engine #step-6 > .tile-grid .tile {
        min-height: 54px;
        min-width: 0;
        padding: 10px 9px;
    }
    #booking-engine .service-type-grid { gap: 7px; }
    #booking-engine .service-type-grid .tile {
        min-height: 74px;
        padding: 10px 10px 9px;
        column-gap: 8px;
        row-gap: 4px;
    }
    #booking-engine .service-type-grid .tile-title {
        font-size: 0.9rem;
        line-height: 1.14;
        margin-bottom: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #booking-engine .service-type-grid .tile-sub {
        font-size: 0.6rem;
        line-height: 1.12;
        letter-spacing: 0.05em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #booking-engine .service-type-grid .tile-chip {
        font-size: 0.56rem;
        padding: 2px 7px;
        letter-spacing: 0.04em;
    }
    #booking-engine .service-type-grid .service-icon {
        width: 24px;
        height: 24px;
        font-size: 0.74rem;
    }
    #booking-engine #trip-fields { padding: 9px; }
    #booking-engine #trip-needs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin: 7px 0 9px;
    }
    #booking-engine #trip-needs-grid .tile { min-height: 52px; padding: 8px 7px; }
    #booking-engine #trip-needs-grid .tile-title { font-size: 0.78rem; line-height: 1.14; }
    #booking-engine .trip-funnel-btn { width: 100%; padding: 10px 12px; font-size: 0.8rem; }
    #booking-engine .trip-funnel-actions { display: block; }
    #booking-engine .trip-funnel-actions .price-note { margin-top: 8px; }
    #booking-engine .input-row { gap: 8px; margin-bottom: 9px; }
    #booking-engine .input-field { padding: 10px 11px; font-size: 0.84rem; }
    #booking-engine textarea.input-field { min-height: 68px; }
    #booking-engine input[type="datetime-local"] { min-height: 46px; padding: 9px 11px; font-size: 16px; }
    #booking-engine .price-note { font-size: 0.68rem; line-height: 1.33; margin-top: 6px; }
    #booking-engine .addon-item { padding: 9px 10px; margin-top: 7px; }
    #booking-engine .addon-item > div > span { font-size: 0.8rem !important; }
    #booking-engine .addon-item > div > p { font-size: 0.64rem !important; margin-top: 4px !important; line-height: 1.28; }
    #booking-engine #esim-price { font-size: 0.8rem; }
    #booking-engine .car-grid-wrapper { margin-bottom: 10px; padding: 2px 0; }
    #booking-engine .car-grid.active { gap: 6px; padding: 0 1px 10px; }
    #booking-engine .car-card { min-width: min(74vw, 224px); max-width: 224px; }
    #booking-engine .car-img { height: 126px; min-height: 126px; }
    #booking-engine .slider-nav-btn { top: 76px; width: 28px; height: 28px; font-size: 0.9rem; }
    #booking-engine .car-info { padding: 7px 8px 8px; gap: 2px; }
    #booking-engine .car-title { font-size: 0.9rem; line-height: 1.14; }
    #booking-engine .car-price { font-size: 0.76rem; }
    #booking-engine .car-badge { font-size: 0.5rem; padding: 2px 6px; margin-top: 1px; }
    #booking-engine .car-specs { gap: 7px; margin-top: 3px; padding-top: 5px; font-size: 0.64rem; }
    #booking-engine .spec-item { font-size: 0.64rem; gap: 3px; }
}
@media (max-width: 520px) {
    #booking-engine #pax-grid .tile,
    #booking-engine #schedule-type-grid .tile,
    #booking-engine #step-6 > .tile-grid .tile {
        min-height: 52px;
    }
    #booking-engine .service-type-grid .tile {
        min-height: 70px;
        padding: 9px 9px 8px;
    }
    #booking-engine .service-type-grid .tile-title { font-size: 0.86rem; }
    #booking-engine .service-type-grid .tile-sub { font-size: 0.56rem; }
    #booking-engine .service-type-grid .tile-chip { font-size: 0.52rem; }
}
@media (max-width: 480px) {
    #booking-engine .config-panel { padding: 10px 6px 12px; }
    #booking-engine .step-header h3 { font-size: 0.92rem; }
    #booking-engine .tile-grid:not(.service-type-grid) .tile { min-height: 50px; padding: 8px 7px; }
    #booking-engine .tile-grid:not(.service-type-grid) { gap: 6px; }
    #booking-engine .tile-grid:not(.service-type-grid) .tile-title { font-size: 0.8rem; }
    #booking-engine .service-type-grid { gap: 6px; }
    #booking-engine .service-type-grid .tile { min-height: 68px; padding: 8px 8px 7px; }
    #booking-engine .service-type-grid .tile-title { font-size: 0.82rem; }
    #booking-engine .service-type-grid .tile-sub { font-size: 0.54rem; }
    #booking-engine .service-type-grid .tile-chip { font-size: 0.5rem; padding: 2px 6px; }
    #booking-engine .service-type-grid .service-icon { width: 20px; height: 20px; font-size: 0.64rem; }
    #booking-engine #trip-fields { padding: 8px; }
    #booking-engine #trip-needs-grid { gap: 6px; }
    #booking-engine #trip-needs-grid .tile { min-height: 48px; padding: 7px 6px; }
    #booking-engine #trip-needs-grid .tile-title { font-size: 0.74rem; }
    #booking-engine .trip-funnel-btn { font-size: 0.76rem; padding: 9px 10px; min-height: 42px; }
    #booking-engine .input-field { font-size: 0.82rem; padding: 9px 10px; }
    #booking-engine textarea.input-field { min-height: 60px; }
    #booking-engine .car-card { min-width: min(76vw, 204px); max-width: 204px; }
    #booking-engine .car-img { height: 114px; min-height: 114px; }
    #booking-engine .slider-nav-btn { top: 70px; width: 24px; height: 24px; font-size: 0.82rem; }
    #booking-engine .car-title { font-size: 0.84rem; }
    #booking-engine .car-price { font-size: 0.72rem; }
    #booking-engine .car-badge { font-size: 0.47rem; padding: 2px 5px; }
    #booking-engine .car-specs,
    #booking-engine .spec-item { font-size: 0.6rem; }
}

/* Step 2 + Trip Brief Precision Polish (line-noise reduction + clearer selection) */
#booking-engine #step-2.is-current {
    background: none;
    box-shadow: none;
}
#booking-engine #step-2 .step-header,
#booking-engine #step-2.is-current .step-header {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(191,163,106,0.38);
    background: none;
    box-shadow: none;
}
#booking-engine #step-2 .service-type-grid {
    gap: 10px;
    margin-bottom: 10px !important;
}
#booking-engine #step-2 .service-type-grid .tile {
    border-radius: 0 !important;
    min-height: 94px;
    padding: 14px 14px 12px;
    column-gap: 12px;
    row-gap: 6px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: none;
}
#booking-engine #step-2 .service-type-grid .tile::after { display: none; }
#booking-engine #step-2 .service-type-grid .tile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}
#booking-engine #step-2 .service-type-grid .tile:hover {
    transform: none;
    background: #0d0d0d;
    border-color: rgba(191,163,106,0.48);
    box-shadow: none;
}
#booking-engine #step-2 .service-type-grid .tile.selected {
    background: linear-gradient(90deg, rgba(191,163,106,0.13) 0%, rgba(191,163,106,0.03) 36%, #0b0b0b 100%);
    border-color: rgba(191,163,106,0.78);
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.22);
}
#booking-engine #step-2 .service-type-grid .tile.selected::before { opacity: 1; }
#booking-engine #step-2 .service-type-grid .tile-title {
    font-size: 1.03rem;
    line-height: 1.15;
}
#booking-engine #step-2 .service-type-grid .tile-sub {
    color: #b0b0b0;
    font-size: 0.69rem;
    line-height: 1.22;
    letter-spacing: 0.04em;
    text-transform: none;
}
#booking-engine #step-2 .service-type-grid .tile-chip {
    border-radius: 0 !important;
    background: rgba(191,163,106,0.12);
    border: 1px solid rgba(191,163,106,0.34);
    color: #ddca9c;
    font-size: 0.66rem;
    padding: 4px 8px;
}
#booking-engine #step-2 .service-type-grid .service-icon {
    border-radius: 0 !important;
    background: rgba(191,163,106,0.14);
    border: 1px solid rgba(191,163,106,0.24);
    box-shadow: none;
}
#booking-engine #step-2 .service-type-grid .tile:not(.selected) .service-icon {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
    color: #c8b07a;
}
#booking-engine #trip-fields {
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,0.14);
    background: #090909;
    box-shadow: none;
    padding: 14px;
    margin-top: 2px;
}
#booking-engine #trip-fields .label { color: #d0bb87; }
#booking-engine #trip-fields .input-field {
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,0.16);
    background: #060606;
    box-shadow: none;
}
#booking-engine #trip-fields .input-field:focus {
    border-color: rgba(191,163,106,0.74);
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.22);
}
#booking-engine #trip-needs-grid .tile {
    border-radius: 0 !important;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: none;
}
#booking-engine #trip-needs-grid .tile.selected {
    border-color: rgba(191,163,106,0.76);
    background: linear-gradient(90deg, rgba(191,163,106,0.13), #0c0c0c);
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.2);
}
#booking-engine #trip-needs-grid .tile-title { font-size: 0.84rem; }
#booking-engine #trip-helper-note { color: #b6b6b6; }
#booking-engine .field-highlight .input-field {
    background: #070707;
    border-color: rgba(255,255,255,0.16);
    box-shadow: none;
}
#booking-engine .field-highlight .input-field:focus {
    border-color: rgba(191,163,106,0.72);
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.2);
}
@media (max-width: 900px) {
    #booking-engine #step-2 .step-header,
    #booking-engine #step-2.is-current .step-header { margin-bottom: 10px; padding-bottom: 7px; }
    #booking-engine #step-2 .service-type-grid { gap: 8px; }
    #booking-engine #step-2 .service-type-grid .tile {
        min-height: 78px;
        padding: 10px 10px 9px;
        column-gap: 8px;
        row-gap: 4px;
    }
    #booking-engine #step-2 .service-type-grid .tile-title { font-size: 0.9rem; }
    #booking-engine #step-2 .service-type-grid .tile-sub {
        font-size: 0.6rem;
        letter-spacing: 0.03em;
    }
    #booking-engine #trip-fields { padding: 9px; }
}
@media (max-width: 480px) {
    #booking-engine #step-2 .service-type-grid .tile {
        min-height: 70px;
        padding: 8px 8px 7px;
    }
    #booking-engine #step-2 .service-type-grid .tile-title { font-size: 0.84rem; }
    #booking-engine #step-2 .service-type-grid .tile-sub { font-size: 0.55rem; }
    #booking-engine #trip-needs-grid .tile-title { font-size: 0.76rem; }
}

/* Step 3 Vehicle Precision Polish (reduce line density + cleaner focus) */
#booking-engine #step-3.is-current {
    background: none;
    box-shadow: none;
}
#booking-engine #step-3 .step-header,
#booking-engine #step-3.is-current .step-header {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(191,163,106,0.3);
    background: none;
    box-shadow: none;
}
#booking-engine #step-3 > .tile-grid {
    gap: 10px;
    margin-bottom: 14px !important;
}
#booking-engine #step-3 > .tile-grid .tile {
    border-radius: 0 !important;
    min-height: 78px;
    padding: 12px 10px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
}
#booking-engine #step-3 > .tile-grid .tile:hover {
    transform: none;
    background: #0d0d0d;
    border-color: rgba(191,163,106,0.46);
    box-shadow: none;
}
#booking-engine #step-3 > .tile-grid .tile.selected {
    background: linear-gradient(90deg, rgba(191,163,106,0.12) 0%, #0b0b0b 45%);
    border-color: rgba(191,163,106,0.76);
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.2);
}
#booking-engine #step-3 > .tile-grid .tile-sub {
    color: #a9a9a9;
    letter-spacing: 0.03em;
    text-transform: none;
}
#booking-engine #step-3 .car-grid-wrapper {
    margin-bottom: 8px;
    padding: 0;
}
#booking-engine #step-3 .car-grid.active {
    gap: 10px;
    padding: 0 0 8px;
}
#booking-engine #step-3 .car-card {
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,0.1);
    background: #090909;
    box-shadow: none;
}
#booking-engine #step-3 .car-card:hover {
    transform: none;
    border-color: rgba(191,163,106,0.42);
    box-shadow: none;
}
#booking-engine #step-3 .car-card.selected {
    transform: none;
    border-color: rgba(191,163,106,0.78);
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.2);
}
#booking-engine #step-3 .car-card.selected::before { display: none; }
#booking-engine #step-3 .car-info {
    border-top: 1px solid rgba(255,255,255,0.08);
}
#booking-engine #step-3 .slider-nav-btn {
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: none;
    background: rgba(10,10,10,0.92);
}
#booking-engine #step-3 .slider-nav-btn:hover {
    background: #111;
    border-color: rgba(191,163,106,0.56);
}
#booking-engine .progress-line { opacity: 0.45; }
#booking-engine .progress-fill { opacity: 0.72; }
@media (max-width: 900px) {
    #booking-engine #step-3 .step-header,
    #booking-engine #step-3.is-current .step-header {
        margin-bottom: 9px;
        padding-bottom: 6px;
    }
    #booking-engine #step-3 > .tile-grid {
        gap: 7px;
        margin-bottom: 10px !important;
    }
    #booking-engine #step-3 > .tile-grid .tile {
        min-height: 62px;
        padding: 9px 8px;
    }
    #booking-engine #step-3 > .tile-grid .tile-title { font-size: 0.9rem; }
    #booking-engine #step-3 > .tile-grid .tile-sub { font-size: 0.62rem; }
}
@media (max-width: 480px) {
    #booking-engine #step-3 > .tile-grid .tile {
        min-height: 56px;
        padding: 8px 7px;
    }
    #booking-engine #step-3 > .tile-grid .tile-title { font-size: 0.84rem; }
    #booking-engine #step-3 > .tile-grid .tile-sub { font-size: 0.56rem; }
}

/* Booking V5 refinement: remove line noise near step numbers, keep premium guidance */
#booking-engine {
    --progress-rail-width: 16px;
}
#booking-engine .step-block {
    margin-bottom: 30px;
}
#booking-engine .step-header,
#booking-engine .step-block.is-current .step-header {
    margin-bottom: 12px;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
    background: none !important;
    box-shadow: none !important;
}
#booking-engine .step-header h3 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(245,245,245,0.82);
    letter-spacing: 0.02em;
}
#booking-engine .step-num {
    min-width: 44px;
    height: 28px;
    margin-right: 0 !important;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 0 !important;
    background: #0b0b0b;
    color: #cbb17a;
    line-height: 1;
}
#booking-engine .step-block.is-current {
    background: none !important;
    box-shadow: none !important;
}
#booking-engine .step-block.is-current .step-header h3 {
    color: #f4e3ba;
}
#booking-engine .step-block.is-current .step-num {
    border-color: rgba(191,163,106,0.72);
    background: linear-gradient(90deg, rgba(191,163,106,0.22), rgba(191,163,106,0.07));
    color: #f0ddb0;
}
#booking-engine .step-block.locked .step-header h3 {
    color: rgba(245,245,245,0.48);
}
#booking-engine .tile-grid.tile-highlight .tile {
    border-color: rgba(191,163,106,0.42) !important;
}

/* Remove timeline-style vertical lines near the step numbers */
#booking-engine .progress-rail,
#booking-engine .progress-line,
#booking-engine .progress-fill {
    display: none !important;
}
#booking-engine .progress-shell {
    width: 14px;
}
#booking-engine .progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.12);
}
#booking-engine .progress-step.is-active .progress-dot {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
    box-shadow: 0 0 10px rgba(191,163,106,0.38);
}
#booking-engine .progress-step.is-done .progress-dot {
    border-color: rgba(191,163,106,0.82);
    background: rgba(191,163,106,0.82);
    box-shadow: none;
}

/* Remove extra selection bars and keep clean rectangular emphasis */
#booking-engine #step-2 .service-type-grid .tile::before,
#booking-engine #step-3 > .tile-grid .tile.selected::after {
    display: none !important;
}
#booking-engine #step-2 .service-type-grid .tile.selected,
#booking-engine #step-3 > .tile-grid .tile.selected {
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.26);
}
#booking-engine #step-3 > .tile-grid .tile {
    position: relative;
}
#booking-engine #step-3 .car-card {
    background: #080808;
    border-color: rgba(255,255,255,0.08);
}
#booking-engine #step-3 .car-card .car-title {
    color: #e9e9e9;
}
#booking-engine #step-3 .car-card .car-price {
    color: #cfb57b;
}
#booking-engine #step-3 .car-card.selected {
    border-color: rgba(191,163,106,0.82);
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.24);
}
#booking-engine #step-3 .car-card.selected .car-title {
    color: #f2dfb2;
}
#booking-engine #step-3 .slider-nav-btn {
    opacity: 0.92;
}
@media (max-width: 900px) {
    #booking-engine {
        --progress-rail-width: 12px;
    }
    #booking-engine .step-block {
        margin-bottom: 18px;
    }
    #booking-engine .step-header {
        margin-bottom: 8px;
    }
    #booking-engine .step-header h3 {
        gap: 8px;
    }
    #booking-engine .step-num {
        min-width: 38px;
        height: 24px;
        padding: 0 6px;
    }
    #booking-engine .progress-shell {
        width: 10px;
    }
    #booking-engine .progress-dot {
        width: 7px;
        height: 7px;
    }
}

/* Booking V5.1 polish: smoother motion + cleaner hierarchy */
#booking-engine .step-block {
    scroll-margin-top: calc(var(--header-height) + 14px);
    transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}
#booking-engine .step-block:not(.is-current):not(.locked) {
    opacity: 0.88;
}
#booking-engine .step-block.is-current {
    opacity: 1;
}
#booking-engine .step-header h3 {
    font-weight: 500;
}
#booking-engine .step-num {
    min-width: 42px;
    height: 26px;
    border-color: rgba(255,255,255,0.14);
    background: #080808;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
#booking-engine .step-block.is-current .step-num {
    border-color: rgba(191,163,106,0.68);
    background: #151108;
}
#booking-engine .tile-grid.tile-highlight .tile {
    border-color: rgba(191,163,106,0.28) !important;
}
#booking-engine .tile,
#booking-engine .car-card,
#booking-engine .input-field,
#booking-engine .addon-item {
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
#booking-engine .tile:hover {
    transform: translateY(-1px);
}
#booking-engine .tile:active {
    transform: translateY(0);
}
#booking-engine #step-2 .service-type-grid .tile.selected,
#booking-engine #step-3 > .tile-grid .tile.selected,
#booking-engine #trip-needs-grid .tile.selected {
    background: #11100d !important;
    border-color: rgba(191,163,106,0.72) !important;
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.2) !important;
}
#booking-engine #step-1 .tile.selected {
    background: #11100d !important;
    border-color: rgba(191,163,106,0.78) !important;
    box-shadow: inset 0 0 0 1px rgba(191,163,106,0.24) !important;
}
#booking-engine .progress-step {
    transition: opacity 0.2s ease, transform 0.2s ease;
}
#booking-engine .progress-step.is-disabled .progress-dot {
    opacity: 0.32;
}
#booking-engine .progress-step.is-active {
    transform: translate(-50%, -50%) scale(1.08);
}
#booking-engine .progress-step.is-done {
    transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 900px) {
    #booking-engine .step-block:not(.is-current):not(.locked) {
        opacity: 0.94;
    }
    #booking-engine .step-num {
        min-width: 34px;
        height: 22px;
        font-size: 0.82rem;
    }
    #booking-engine .tile:hover {
        transform: none;
    }
}

/* UX master polish: clean focus, comfort typing, and calm motion */
:where(a, button, [role="button"], input, select, textarea, .tile, .car-card, .slider-nav-btn, .faq-question):focus-visible {
    outline: 2px solid rgba(191,163,106,0.72);
    outline-offset: 2px;
}
#booking-engine :where(.tile, .car-card, .addon-item)[tabindex="0"] {
    cursor: pointer;
}
#sticky-wa-btn.is-input-mode {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px);
}
@media (max-width: 900px) {
    #sticky-wa-btn.is-input-mode {
        transform: translateY(16px);
    }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile Form UX V6: phone-first comfort, readability, and low-friction flow */
@media (max-width: 900px) {
    /* reclaim horizontal space from progress rail on small screens */
    body.progress-active #booking-engine .config-panel {
        display: block !important;
    }
    #booking-engine .progress-shell {
        display: none !important;
    }

    #booking-engine .config-panel {
        padding: 12px 8px calc(16px + env(safe-area-inset-bottom));
    }
    #booking-engine .step-block {
        margin-bottom: 11px;
    }
    #booking-engine .step-header {
        margin-bottom: 8px !important;
    }
    #booking-engine .step-header h3 {
        font-size: 1rem !important;
        line-height: 1.2;
    }
    #booking-engine .step-num {
        min-width: 34px;
        height: 22px;
        font-size: 0.8rem;
    }
    #booking-engine .label {
        margin-bottom: 5px;
        font-size: 0.68rem;
        letter-spacing: 0.07em;
    }

    #booking-engine .input-row {
        grid-template-columns: 1fr !important;
        gap: 8px;
        margin-bottom: 8px;
    }
    #booking-engine .input-field,
    #booking-engine select.input-field,
    #booking-engine textarea.input-field {
        font-size: 16px !important;
        line-height: 1.26;
        padding: 9px 10px;
        min-height: 44px;
    }
    #booking-engine textarea.input-field {
        min-height: 72px;
    }
    #booking-engine input[type="datetime-local"] {
        min-height: 44px;
        font-size: 16px !important;
    }

    #booking-engine .tile-grid:not(.service-type-grid) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }
    #booking-engine .tile-grid:not(.service-type-grid) .tile {
        min-height: 52px;
        padding: 8px 8px;
    }
    #booking-engine .tile-grid:not(.service-type-grid) .tile-title {
        font-size: 0.86rem;
        line-height: 1.16;
    }
    #booking-engine .tile-grid:not(.service-type-grid) .tile-sub {
        display: none;
    }

    #booking-engine #step-2 .service-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }
    #booking-engine #step-2 .service-type-grid .tile {
        min-height: 74px;
        padding: 8px 8px 7px;
    }
    #booking-engine #step-2 .service-type-grid .tile-title {
        font-size: 0.88rem;
        line-height: 1.15;
        white-space: normal;
    }
    #booking-engine #step-2 .service-type-grid .tile-sub {
        font-size: 0.58rem;
        line-height: 1.16;
        white-space: normal;
    }
    #booking-engine #step-2 .service-type-grid .tile-chip {
        font-size: 0.55rem;
        padding: 2px 6px;
    }
    #booking-engine #step-2 .service-type-grid .service-icon {
        width: 23px;
        height: 23px;
        font-size: 0.7rem;
    }

    #booking-engine #trip-fields {
        padding: 8px;
    }
    #booking-engine #trip-needs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }
    #booking-engine #trip-needs-grid .tile {
        min-height: 50px;
        padding: 8px 7px;
    }
    #booking-engine #trip-needs-grid .tile-title {
        font-size: 0.78rem;
        line-height: 1.15;
    }
    #booking-engine .trip-funnel-btn {
        width: 100%;
        min-height: 44px;
        font-size: 0.82rem;
    }

    #booking-engine #pax-grid,
    #booking-engine #schedule-type-grid,
    #booking-engine #crossborder-type-grid,
    #booking-engine #step-6 > .tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }
    #booking-engine #schedule-type-grid .tile[data-schedule-type="custom"] {
        grid-column: 1 / -1;
    }
    #booking-engine #pax-grid .tile,
    #booking-engine #schedule-type-grid .tile,
    #booking-engine #crossborder-type-grid .tile,
    #booking-engine #step-6 > .tile-grid .tile {
        min-height: 52px;
        padding: 8px 8px;
    }
    #booking-engine #pax-helper-note,
    #booking-engine #schedule-helper-note,
    #booking-engine .price-note {
        font-size: 0.7rem;
        line-height: 1.32;
    }

    #booking-engine #step-3 .car-grid.active {
        gap: 7px;
        padding: 0 2px 10px;
        scroll-snap-type: x mandatory;
    }
    #booking-engine #step-3 .car-card {
        min-width: min(76vw, 232px);
        max-width: 232px;
        scroll-snap-align: start;
    }
    #booking-engine #step-3 .car-img {
        height: 132px;
        min-height: 132px;
    }
    #booking-engine #step-3 .slider-nav-btn {
        display: flex;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: 78px;
        background: rgba(8,8,8,0.84);
        border-color: rgba(191,163,106,0.44);
    }
    #booking-engine #step-3 .slider-nav-prev {
        left: 4px;
    }
    #booking-engine #step-3 .slider-nav-next {
        right: 4px;
    }
    #booking-engine #step-3 .car-title {
        font-size: 0.92rem;
    }
    #booking-engine #step-3 .car-price {
        font-size: 0.77rem;
    }
    #booking-engine #step-3 .car-specs,
    #booking-engine #step-3 .spec-item {
        font-size: 0.64rem;
    }

    #booking-engine .addon-item {
        padding: 9px 10px;
    }
    #booking-engine .addon-item > div > span {
        font-size: 0.84rem !important;
    }
    #booking-engine .addon-item > div > p {
        font-size: 0.68rem !important;
        line-height: 1.3;
    }
}

@media (max-width: 520px) {
    #booking-engine .config-panel {
        padding: 10px 7px calc(14px + env(safe-area-inset-bottom));
    }
    #booking-engine .step-header h3 {
        font-size: 0.92rem !important;
    }
    #booking-engine .step-num {
        min-width: 32px;
        height: 21px;
        font-size: 0.76rem;
    }
    #booking-engine #step-2 .service-type-grid .tile {
        min-height: 68px;
        padding: 7px 7px 6px;
    }
    #booking-engine #step-2 .service-type-grid .tile-title {
        font-size: 0.84rem;
    }
    #booking-engine #step-2 .service-type-grid .tile-sub {
        font-size: 0.54rem;
    }
    #booking-engine .tile-grid:not(.service-type-grid) .tile {
        min-height: 48px;
        padding: 7px 7px;
    }
    #booking-engine #pax-grid .tile,
    #booking-engine #schedule-type-grid .tile,
    #booking-engine #crossborder-type-grid .tile,
    #booking-engine #step-6 > .tile-grid .tile,
    #booking-engine #trip-needs-grid .tile {
        min-height: 48px;
    }
    #booking-engine #step-3 .car-card {
        min-width: min(80vw, 214px);
        max-width: 214px;
    }
    #booking-engine #step-3 .car-img {
        height: 124px;
        min-height: 124px;
    }
    #booking-engine #step-3 .slider-nav-btn {
        width: 27px;
        height: 27px;
        font-size: 0.82rem;
        top: 72px;
    }
    #booking-engine #step-3 .slider-nav-prev {
        left: 3px;
    }
    #booking-engine #step-3 .slider-nav-next {
        right: 3px;
    }
}

    
