       html { scroll-behavior: smooth; }

        /* CLS: Reserve space for #booking and hero image */
        #booking {
            min-height: 85vh;
        }
        #booking .hero-image-container {
            aspect-ratio: 16 / 9;
        }

        /* =========================================
           Shared design language (summary + site)
           Apply by adding: body.vip-summary / body.vip-theme
           ========================================= */
        :root {
            /* Brand identity (Commit c420a81) */
            --brand-green: #22C55E;
            --brand-green-dark: #16a34a;
        }

        body.vip-summary,
        body.vip-theme {
            font-family: 'Assistant', sans-serif;
            background-color: #ffffff;
            color: #0f172a;
        }

        body.vip-summary {
            /* summary.html already declares it, keep here for consistency */
            direction: rtl;
        }

        body.vip-summary,
        body.vip-theme {
            --vip-ink: #1E293B;
            --vip-ink-strong: #0f172a;
            --vip-muted: #475569;
            --vip-border: #e2e8f0;
            --vip-surface: #ffffff;
            --vip-surface-2: #f8fafc;
            --vip-surface-3: #f1f5f9;
            --vip-green: var(--brand-green);
            --vip-green-dark: var(--brand-green-dark);
            --vip-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
            --vip-shadow-md: 0 12px 24px rgba(15, 23, 42, 0.10);
        }

        /* Global brand hooks (fallback for pages/elements not under vip-theme scope) */
        .text-primary { color: var(--brand-green) !important; }
        .bg-primary { background-color: var(--brand-green) !important; }
        .bg-primary:hover { background-color: var(--brand-green-dark) !important; }
        .vip-btn--primary { background: var(--brand-green) !important; }
        .vip-btn--primary:hover { background: var(--brand-green-dark) !important; }

        /* =========================================
           Icon unification (site.html)
           - Commitment + Services: same green shade
           - Commitment: hover translateY
           ========================================= */
        body.vip-summary .commitment-icon,
        body.vip-theme .commitment-icon,
        body.vip-summary .service-card-icon,
        body.vip-theme .service-card-icon {
            color: var(--vip-green) !important;
        }

        /* SEO section: enforce brand-green headings without changing Tailwind classes */
        body.vip-theme #service-areas h2,
        body.vip-theme #service-areas h3 {
            color: var(--brand-green) !important;
        }

        /* Force Lucide SVG stroke/fill (scoped to cards only) */
        body.vip-summary .commitment-icon svg.lucide,
        body.vip-theme .commitment-icon svg.lucide,
        body.vip-summary .service-card-icon svg.lucide,
        body.vip-theme .service-card-icon svg.lucide {
            stroke: var(--brand-green) !important;
            fill: transparent !important;
        }

        body.vip-summary .commitment-icon,
        body.vip-theme .commitment-icon {
            transition: transform 0.22s ease;
            will-change: transform;
        }

        /* If a commitment card is NOT using card-hover, move icon only.
           When card-hover exists (site.html), the whole card moves instead. */
        body.vip-summary .commitment-card:not(.card-hover):hover .commitment-icon,
        body.vip-theme .commitment-card:not(.card-hover):hover .commitment-icon {
            transform: translateY(-6px);
        }

        /* =========================================
           Rating stars: no background / frame
           (FAQ + Google reviews/testimonials)
           ========================================= */
        body.vip-summary .rating-stars,
        body.vip-theme .rating-stars {
            background: transparent !important;
            padding: 0 !important;
            border-radius: 0 !important;
        }

        body.vip-summary #faq .lucide-star,
        body.vip-theme #faq .lucide-star,
        body.vip-summary #testimonials .lucide-star,
        body.vip-theme #testimonials .lucide-star {
            background: transparent !important;
            border: 0 !important;
            box-shadow: none !important;
            outline: none !important;
            padding: 0 !important;
            border-radius: 0 !important;
        }

        /* Glass surfaces (header + panels) */
        body.vip-summary .glass,
        body.vip-theme .glass {
            background: rgba(248, 250, 252, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(226, 232, 240, 0.9);
        }

        /* Dark blue‑green overlay (matches summary) */
        body.vip-summary .hero-overlay,
        body.vip-theme .hero-overlay,
        .page-summary .hero-overlay {
            background: linear-gradient(
                135deg,
                rgba(15, 60, 80, 0.92) 0%,
                rgba(10, 40, 50, 0.88) 100%
            ) !important;
        }

        /* Buttons (match summary's radius/shadows/hover) */
        body.vip-summary .vip-btn,
        body.vip-theme .vip-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.1rem;
            border-radius: 14px;
            font-weight: 800;
            text-decoration: none;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
        }
        body.vip-summary .vip-btn:hover,
        body.vip-theme .vip-btn:hover { transform: translateY(-1px); }

        body.vip-summary .vip-btn--primary,
        body.vip-theme .vip-btn--primary {
            background: var(--vip-green);
            color: #fff;
            box-shadow: 0 12px 24px rgba(34, 197, 94, 0.22);
        }
        body.vip-summary .vip-btn--primary:hover,
        body.vip-theme .vip-btn--primary:hover {
            background: var(--vip-green-dark);
            box-shadow: 0 15px 30px rgba(34, 197, 94, 0.26);
        }

        body.vip-summary .vip-btn--ink,
        body.vip-theme .vip-btn--ink {
            background: var(--vip-ink);
            color: #fff;
            box-shadow: 0 12px 24px rgba(30, 41, 59, 0.22);
        }
        body.vip-summary .vip-btn--ink:hover,
        body.vip-theme .vip-btn--ink:hover { filter: brightness(0.96); }

        body.vip-summary .vip-btn--soft,
        body.vip-theme .vip-btn--soft {
            background: var(--vip-surface-3);
            color: var(--vip-ink);
            border-color: var(--vip-border);
            box-shadow: none;
        }
        body.vip-summary .vip-btn--soft:hover,
        body.vip-theme .vip-btn--soft:hover { filter: brightness(0.98); }

        body.vip-summary .vip-btn--outline,
        body.vip-theme .vip-btn--outline {
            background: rgba(255, 255, 255, 0.10);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.30);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        body.vip-summary .vip-btn--outline:hover,
        body.vip-theme .vip-btn--outline:hover { background: rgba(255, 255, 255, 0.18); }

        body.vip-summary .vip-btn--lg,
        body.vip-theme .vip-btn--lg {
            padding: 1.1rem 1.6rem;
            font-size: 1.05rem;
            font-weight: 900;
        }

        /* Tailwind shadow-color: neutralize old orange glow under the new palette */
        body.vip-theme .shadow-orange-200,
        body.vip-theme .shadow-orange-300 {
            --tw-shadow-color: rgba(34, 197, 94, 0.20) !important;
        }

        /* Calculator tabs: align to the same “ink” tone */
        body.vip-summary .trip-tab.active,
        body.vip-theme .trip-tab.active {
            background-color: var(--vip-ink) !important;
        }

        /* Flatpickr: align palette + typography */
        body.vip-summary .flatpickr-calendar,
        body.vip-theme .flatpickr-calendar {
            font-family: 'Assistant', sans-serif !important;
            border: 1px solid var(--vip-border) !important;
            box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12) !important;
        }
        body.vip-summary .flatpickr-months,
        body.vip-theme .flatpickr-months {
            background: var(--vip-ink) !important;
        }
        body.vip-summary span.flatpickr-weekday,
        body.vip-theme span.flatpickr-weekday {
            color: var(--vip-ink) !important;
        }
        body.vip-summary .flatpickr-months .flatpickr-prev-month:hover svg,
        body.vip-summary .flatpickr-months .flatpickr-next-month:hover svg,
        body.vip-theme .flatpickr-months .flatpickr-prev-month:hover svg,
        body.vip-theme .flatpickr-months .flatpickr-next-month:hover svg {
            fill: var(--vip-green) !important;
        }
        body.vip-summary .flatpickr-day.selected,
        body.vip-summary .flatpickr-day.selected:hover,
        body.vip-theme .flatpickr-day.selected,
        body.vip-theme .flatpickr-day.selected:hover {
            background: var(--vip-green) !important;
            border-color: var(--vip-green) !important;
            color: #fff !important;
        }
        body.vip-summary .flatpickr-day.today,
        body.vip-theme .flatpickr-day.today {
            border-color: var(--vip-ink) !important;
        }
        body.vip-summary .flatpickr-day.today:hover,
        body.vip-theme .flatpickr-day.today:hover {
            background: var(--vip-ink) !important;
            color: #fff !important;
        }

        /* ================================
           Flatpickr Timepicker (override)
           ================================ */
        /* Popup: 12px radius + subtle shadow */
        body.vip-summary .flatpickr-calendar,
        body.vip-theme .flatpickr-calendar {
            border-radius: 12px !important;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14) !important;
        }

        /* Keep HH:MM order correct in RTL pages */
        body.vip-summary .flatpickr-time,
        body.vip-theme .flatpickr-time {
            direction: ltr !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            padding: 0.6rem 0.75rem !important;
        }

        /* Ensure hour appears left of minute */
        body.vip-summary .flatpickr-time .numInputWrapper:first-of-type,
        body.vip-theme .flatpickr-time .numInputWrapper:first-of-type {
            order: 1;
        }
        body.vip-summary .flatpickr-time .flatpickr-time-separator,
        body.vip-theme .flatpickr-time .flatpickr-time-separator {
            order: 2;
        }
        body.vip-summary .flatpickr-time .numInputWrapper:last-of-type,
        body.vip-theme .flatpickr-time .numInputWrapper:last-of-type {
            order: 3;
        }

        /* Selected time: dark navy background + white text */
        body.vip-summary .flatpickr-time input:focus,
        body.vip-theme .flatpickr-time input:focus {
            background: #000080 !important;
            color: #ffffff !important;
            border-color: #000080 !important;
            box-shadow: 0 0 0 2px rgba(0, 0, 128, 0.18) !important;
        }

        /* Make arrow buttons larger + easier on mobile */
        body.vip-summary .flatpickr-time .numInputWrapper span,
        body.vip-theme .flatpickr-time .numInputWrapper span {
            width: 32px !important;
            opacity: 1 !important;
        }
        body.vip-summary .flatpickr-time .numInputWrapper span.arrowUp,
        body.vip-summary .flatpickr-time .numInputWrapper span.arrowDown,
        body.vip-theme .flatpickr-time .numInputWrapper span.arrowUp,
        body.vip-theme .flatpickr-time .numInputWrapper span.arrowDown {
            height: 22px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
        body.vip-summary .flatpickr-time .numInputWrapper span.arrowUp:after,
        body.vip-summary .flatpickr-time .numInputWrapper span.arrowDown:after,
        body.vip-theme .flatpickr-time .numInputWrapper span.arrowUp:after,
        body.vip-theme .flatpickr-time .numInputWrapper span.arrowDown:after {
            border-width: 7px !important;
        }

        .card-hover { transition: all 0.3s ease; }
        body.vip-summary .card-hover:hover,
        body.vip-theme .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: var(--vip-shadow-md);
        }
        /* CLS-safe: opacity + transform only (no layout-affecting properties) */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
            will-change: transform, opacity;
        }
        /* Input focus style with 2px navy border */
        /* Focus ring uses the same “ink” tone as summary */
        body.vip-summary input:focus,
        body.vip-summary select:focus,
        body.vip-theme input:focus,
        body.vip-theme select:focus {
            border-color: var(--vip-ink) !important;
        }
        
        /* Custom stop input style */
        
     
		.compact-input { padding: 0.5rem 0.75rem !important; font-size: 0.9rem !important; border-radius: 14px !important; }

        /* Make Flatpickr time inputs feel consistent with the date inputs (especially on mobile/Chromium) */
        input#start_time,
        input#end_time {
            direction: ltr; /* keep HH:MM readable in RTL pages */
        }
.stop-input-wrapper { position: relative; width: 100%; margin-bottom: 0.5rem; }
.btn-remove-stop { position: absolute; left: 8px; top: 50%; transform: translateY(-50%); color: #ef4444; font-size: 0.7rem; font-weight: bold; }

   /* Tab Styles - Full width tabs with unified background color #f8fafc */
        .trip-tabs-container {
            display: flex;
            width: 100%;
            gap: 0;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }
        .trip-tab {
            flex: 1;
            padding: 0.875rem 1rem;
            border-radius: 0.75rem 0.75rem 0 0;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            text-align: center;
        }
        .trip-tab.active {
            background-color: #000080;
            color: white;
        }
        /* Inactive tab now uses same #f8fafc as form body */
        .trip-tab:not(.active) {
            background-color: #f8fafc;
            color: #475569;
        }
        .trip-tab:not(.active):hover {
            background-color: #e2e8f0;
        }
        /* Form body uses #f8fafc background, shadow-xl, rounded-[2rem], no borders */
        .form-body {
            border-radius: 0 0 2rem 2rem;
            padding: 1.5rem;
            background: #f8fafc;
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }
        
        /* Flatpickr RTL Fix - Force RTL direction and proper day order */
        .flatpickr-calendar {
            font-family: 'Heebo', sans-serif !important;
            border-radius: 1rem !important;
            box-shadow: 0 10px 40px rgba(0, 0, 128, 0.15) !important;
            border: 2px solid #000080 !important;
            direction: rtl !important;
        }
        .flatpickr-innerContainer {
            direction: rtl !important;
        }
        .flatpickr-rContainer {
            direction: rtl !important;
        }
        .flatpickr-weekdays {
            background: #f1f5f9 !important;
            direction: rtl !important;
        }
        .flatpickr-days {
            direction: rtl !important;
        }
        .dayContainer {
            direction: rtl !important;
            display: flex;
            flex-wrap: wrap;
        }
        .flatpickr-months {
            background: #000080 !important;
            border-radius: 0.875rem 0.875rem 0 0 !important;
            padding: 0.5rem 0 !important;
            direction: rtl !important;
        }
        .flatpickr-months .flatpickr-month {
            color: white !important;
            fill: white !important;
        }
        .flatpickr-current-month {
            color: white !important;
            font-weight: 700 !important;
            direction: rtl !important;
        }
        .flatpickr-current-month .flatpickr-monthDropdown-months {
            background: #000080 !important;
            color: white !important;
        }
        .flatpickr-current-month input.cur-year {
            color: white !important;
        }
        /* Swap prev/next arrows for RTL */
        .flatpickr-months .flatpickr-prev-month,
        .flatpickr-months .flatpickr-next-month {
            fill: white !important;
            color: white !important;
        }
        .flatpickr-months .flatpickr-prev-month {
            right: auto !important;
            left: 0 !important;
        }
        .flatpickr-months .flatpickr-next-month {
            left: auto !important;
            right: 0 !important;
        }
        .flatpickr-months .flatpickr-prev-month:hover svg,
        .flatpickr-months .flatpickr-next-month:hover svg {
            fill: #FF9900 !important;
        }
        span.flatpickr-weekday {
            color: #000080 !important;
            font-weight: 700 !important;
        }
        .flatpickr-day {
            border-radius: 0.5rem !important;
            color: #1e293b !important;
        }
        .flatpickr-day:hover {
            background: #e2e8f0 !important;
            border-color: #e2e8f0 !important;
        }
        .flatpickr-day.selected,
        .flatpickr-day.selected:hover {
            background: #FF9900 !important;
            border-color: #FF9900 !important;
            color: white !important;
        }
        .flatpickr-day.today {
            border-color: #000080 !important;
        }
        .flatpickr-day.today:hover {
            background: #000080 !important;
            color: white !important;
        }
        
        /* FAQ Accordion Styles */
        .faq-item {
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.2s ease;
        }
        .faq-item:hover {
            border-color: #cbd5e1;
        }
        .faq-question {
            padding: 1.25rem 1.5rem;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: all 0.2s ease;
        }
        .faq-question:hover {
            background: #f8fafc;
        }
        .faq-question h4 {
            font-weight: 700;
            color: var(--vip-ink-strong, #0f172a);
            font-size: 1.125rem;
            text-align: right;
        }
        .faq-icon {
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-content {
            padding: 0 1.5rem 1.25rem 1.5rem;
            color: #475569;
            line-height: 1.7;
        }

/* ================================
   Auth verification modal
   ================================ */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.auth-modal-overlay.hidden { display: none; }

.auth-modal {
    width: min(92vw, 440px);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 128, 0.25);
    overflow: hidden;
}

.auth-modal-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0,0,128,0.10) 0%, rgba(255,153,0,0.10) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.auth-modal-title {
    font-weight: 900;
    color: #000080;
    font-size: 1.1rem;
}

.auth-modal-close {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #475569;
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 0.75rem;
}
.auth-modal-close:hover { background: rgba(15, 23, 42, 0.06); }

.auth-modal-body { padding: 1.25rem; }

.auth-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}
.auth-timer-label { color: #475569; font-weight: 700; font-size: 0.95rem; }
.auth-timer-value { color: #000080; font-weight: 900; font-size: 1.05rem; direction: ltr; }

.auth-code-input {
    width: 100%;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    padding: 0.9rem 1rem;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.25em;
    text-align: center;
    direction: ltr;
}

.auth-error {
    margin-top: 0.75rem;
    color: #b91c1c;
    font-weight: 700;
    font-size: 0.95rem;
    display: none;
}
.auth-error.show { display: block; }

.auth-modal-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.btn-auth-primary {
    border: none;
    cursor: pointer;
    padding: 0.95rem 1.25rem;
    border-radius: 1rem;
    font-weight: 900;
    background: #FF9900;
    color: white;
    box-shadow: 0 10px 25px rgba(255,153,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255,153,0,0.35);
}
.btn-auth-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ================================
   Toast / Notification (replaces alert)
   Matches auth modal: fonts, border-radius, colors
   ================================ */
.notification-toast-container {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    max-width: min(92vw, 420px);
}
.notification-toast-container > * { pointer-events: auto; }

.notification-toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 1.25rem;
    border-radius: 1.5rem;
    font-family: 'Assistant', 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: notification-toast-in 0.3s ease;
    direction: rtl;
    width: 100%;
}
@keyframes notification-toast-in {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}
.notification-toast.hiding {
    animation: notification-toast-out 0.25s ease forwards;
}
@keyframes notification-toast-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-8px); }
}

.notification-toast--error {
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    border-left: 4px solid #b91c1c;
}
.notification-toast--success {
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    border-left: 4px solid #22C55E;
}
.notification-toast--info {
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    border-left: 4px solid #000080;
}

.notification-toast-text { flex: 1; }
.notification-toast-close {
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: #475569;
    cursor: pointer;
    padding: 0.25rem 0.4rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 900;
}
.notification-toast-close:hover { background: rgba(15, 23, 42, 0.08); color: #0f172a; }
		
		
          /* Design system variables (from original styles.css) */
          :root {
            --background: 0 0% 100%;
            --foreground: 265 4% 12.9%;
            --card: 0 0% 100%;
            --card-foreground: 265 4% 12.9%;
            --popover: 0 0% 100%;
            --popover-foreground: 265 4% 12.9%;
            --primary: 266 4% 20.8%;
            --primary-foreground: 248 0.3% 98.4%;
            --secondary: 248 0.7% 96.8%;
            --secondary-foreground: 266 4% 20.8%;
            --muted: 248 0.7% 96.8%;
            --muted-foreground: 257 4.6% 55.4%;
            --accent: 248 0.7% 96.8%;
            --accent-foreground: 266 4% 20.8%;
            --border: 256 1.3% 92.9%;
            --input: 256 1.3% 92.9%;
            --ring: 257 4% 70.4%;
            --destructive: 27 24.5% 57.7%;
            --destructive-foreground: 0 0% 100%;
            --chart-1: 41 22.2% 64.6%;
            --chart-2: 185 11.8% 60%;
            --chart-3: 227 7% 39.8%;
            --chart-4: 84 18.9% 82.8%;
            --chart-5: 70 18.8% 76.9%;
            --sidebar: 248 0.3% 98.4%;
            --sidebar-foreground: 265 4% 12.9%;
            --sidebar-primary: 266 4% 20.8%;
            --sidebar-primary-foreground: 248 0.3% 98.4%;
            --sidebar-accent: 248 0.7% 96.8%;
            --sidebar-accent-foreground: 266 4% 20.8%;
            --sidebar-border: 256 1.3% 92.9%;
            --sidebar-ring: 257 4% 70.4%;
            --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
            --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            --radius: 0.375rem;
            --shadow-2xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
            --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
            --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
            --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
            --shadow-md: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 2px 4px -1px hsl(0 0% 0% / 0.1);
            --shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 4px 6px -1px hsl(0 0% 0% / 0.1);
            --shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 8px 10px -1px hsl(0 0% 0% / 0.1);
            --shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);
            --tracking-normal: 0em;
            --spacing: 0.25rem;
          }
    
          .dark {
            --background: 0 0% 15%;
            --foreground: 248 0.3% 98.4%;
            --card: 266 4% 20.8%;
            --card-foreground: 248 0.3% 98.4%;
            --popover: 266 4% 20.8%;
            --popover-foreground: 248 0.3% 98.4%;
            --primary: 256 1.3% 92.9%;
            --primary-foreground: 266 4% 20.8%;
            --secondary: 260 4.1% 27.9%;
            --secondary-foreground: 248 0.3% 98.4%;
            --muted: 260 4.1% 27.9%;
            --muted-foreground: 257 4% 70.4%;
            --accent: 260 4.1% 27.9%;
            --accent-foreground: 248 0.3% 98.4%;
            --border: 0 0% 100% / 10%;
            --input: 0 0% 100% / 15%;
            --ring: 264 2.7% 55.1%;
            --destructive: 22 19.1% 70.4%;
            --destructive-foreground: 248 0.3% 98.4%;
            --chart-1: 264 24.3% 48.8%;
            --chart-2: 162 17% 69.6%;
            --chart-3: 70 18.8% 76.9%;
            --chart-4: 304 26.5% 62.7%;
            --chart-5: 16 24.6% 64.5%;
            --sidebar: 266 4% 20.8%;
            --sidebar-foreground: 248 0.3% 98.4%;
            --sidebar-primary: 264 24.3% 48.8%;
            --sidebar-primary-foreground: 248 0.3% 98.4%;
            --sidebar-accent: 260 4.1% 27.9%;
            --sidebar-accent-foreground: 248 0.3% 98.4%;
            --sidebar-border: 0 0% 100% / 10%;
            --sidebar-ring: 264 2.7% 55.1%;
          }
    
          /* Basic replacements for @apply usages to keep appearance identical */
          * { box-sizing: border-box; }
    

    
          html { scroll-behavior: smooth; }
    
          /* small utility used in a few places */
          /* Keep Tailwind class names, but align palette to summary (blue/green) */
          body.vip-summary .text-navy,
          body.vip-theme .text-navy { color: var(--vip-ink-strong) !important; }
          body.vip-summary .bg-navy,
          body.vip-theme .bg-navy { background-color: var(--vip-ink) !important; }

          body.vip-summary .text-primary,
          body.vip-theme .text-primary { color: var(--vip-green) !important; }
          body.vip-summary .bg-primary,
          body.vip-theme .bg-primary { background-color: var(--vip-green) !important; }

          body.vip-summary .bg-primary:hover,
          body.vip-theme .bg-primary:hover { background-color: var(--vip-green-dark) !important; }

          /* Tailwind opacity variants used in site.html (keep palette consistent) */
          body.vip-theme .bg-primary\/10,
          body.vip-summary .bg-primary\/10 { background-color: rgba(34, 197, 94, 0.10) !important; }

          body.vip-theme .bg-navy\/10,
          body.vip-summary .bg-navy\/10 { background-color: rgba(30, 41, 59, 0.10) !important; }
    
          /* fade-in: uses fadeInUp above (opacity+transform only, no layout shift) */
	
	.modal-img {
  width: 100%;
  max-height: 80vh; /* מגביל ל-80% מגובה המסך */
  object-fit: contain; /* שומר על יחס גובה-רוחב ומציג את כל התמונה */
  display: block;
  margin: 0 auto;
}
    
	
    /*
          /* Modal image fit fallback */
.modal-img2 {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* במקום cover */
  display: block;
}
*/

          /* small scrollbar styling for thumbnail scroller */
          .thumbnails::-webkit-scrollbar { height: 8px; }
          .thumbnails::-webkit-scrollbar-thumb { background: rgba(15,23,42,0.12); border-radius: 999px; }
          .thumbnails::-webkit-scrollbar-track { background: transparent; }
    
          /* ensure focus visible for custom buttons */
          button:focus { outline: 2px solid rgba(15,23,42,0.12); outline-offset: 2px; }
		  
		  
		  /* ================================
   Summary page only (scoped)
   ================================ */

/* Hero Background - matches site.html gradient overlay */
.page-summary .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(15, 60, 80, 0.85) 0%,   /* כחול-ירקרק עמוק */
        rgba(10, 40, 50, 0.75) 100%   /* גוון כהה יותר עם נגיעת ירוק */
    ) !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 10 !important;
}

/* Glassmorphism Card Style - matching site.html */
.page-summary .glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Vehicle Selection Card */
.page-summary .vehicle-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-summary .vehicle-card:hover {
    border-color: #000080;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 128, 0.2);
}

.page-summary .vehicle-card.selected {
    border-color: #FF9900;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
}

.page-summary .vehicle-card.selected .vehicle-badge {
    background: #FF9900;
    color: white;
}

/* Info Panel - glassmorphism style */
.page-summary .info-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Price Display */
.page-summary .price-display {
    background: linear-gradient(135deg, #000080 0%, #0000a0 100%);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

/* Map Container */
.page-summary .map-container {
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    height: 280px;
}

/* Trust Badge */
.page-summary .trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.page-summary .trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Prominent WhatsApp Button */
.page-summary .btn-whatsapp-large {
    background: #25D366;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.page-summary .btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.page-summary .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.page-summary .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.page-summary #summary-map { width: 100%; }

		  

		  
		  
		  
		  
		  

		  

		  
		  
		  
		  
		  
		  

/* ================================
   VIP Summary redesign (scoped)
   ================================ */

.page-summary.vip-summary {
    font-family: 'Assistant', sans-serif !important;
    background: #F8FAFC;
    color: #0f172a;
    margin: 0;
}

.vip-icon { width: 18px; height: 18px; }

.vip-container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.vip-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

.vip-header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vip-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #0f172a;
}

.vip-brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #1E293B;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 20px;
}

.vip-brand-name {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.vip-brand-muted {
    color: #64748b;
    font-weight: 700;
}

.vip-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vip-header-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1E293B;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.vip-header-back {
    text-decoration: none;
    font-weight: 800;
    color: #fff;
    background: #1E293B;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.vip-header-back:hover { filter: brightness(0.95); }

@media (min-width: 640px) {
    .vip-header-phone { display: inline-flex; }
}

.vip-main {
    padding: 1.75rem 0 2.5rem;
}

.vip-section {
    margin-top: 1.5rem;
}

.vip-section-head {
    margin-bottom: 1rem;
}

.vip-h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #1E293B;
}

.vip-subtitle {
    margin: 0.35rem 0 0;
    color: #475569;
    font-weight: 600;
    line-height: 1.5;
}

/* Vehicle cards row */
.page-summary .vip-vehicle-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    align-items: stretch; /* ensure cards can share row height */
    overflow: visible; /* no horizontal scroll */
    padding: 0.35rem 0 0.75rem;
}

@media (max-width: 520px) {
    .page-summary .vip-vehicle-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }
}

@media (max-width: 360px) {
    .page-summary .vip-vehicle-row { grid-template-columns: 1fr; }
}

.page-summary .vip-vehicle-card {
    width: 100%;
    min-width: 0; /* prevent overflow in grid */
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column; /* consistent vertical layout */
    height: 100%; /* allow bottom alignment inside grid row */
}

.vip-vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vip-shadow-md);
}

.page-summary .vip-vehicle-header {
    background: #1E293B;
    color: #fff;
    padding: 0.65rem 0.75rem;
}

.vip-vehicle-header-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-weight: 800;
}

.page-summary .vip-vehicle-name { font-size: 14px; }

.vip-vehicle-info {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.2);
}

.page-summary .vip-vehicle-image {
    width: 100%;
    height: 160px; /* fixed image height for uniform cards */
    background: #f1f5f9;
    overflow: hidden; /* keep cover crop clean */
    display: grid;
    place-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-summary .vip-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vip-vehicle-image-icon {
    width: 42px;
    height: 42px;
    color: #94a3b8;
}

.page-summary .vip-vehicle-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1 1 auto; /* lets footer stick to bottom */
}

.page-summary .vip-vehicle-footer {
    margin-top: auto; /* keep price+button aligned at bottom across cards */
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.page-summary .vip-vehicle-lines {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.page-summary .vip-vehicle-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #334155;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.35;
}

.vip-line-icon {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    flex: 0 0 auto;
}

.page-summary .vip-vehicle-price {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    padding-top: 0.15rem;
    white-space: nowrap;
    unicode-bidi: plaintext;
}

.page-summary .vip-vehicle-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 14px;
    padding: 0.7rem 0.85rem;
    font-weight: 800;
    background: #22C55E;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.22);
}

.vip-vehicle-btn:hover { filter: brightness(0.96); }

.vip-vehicle-btn-badge {
    font-weight: 900;
    line-height: 1;
}

.vip-vehicle-card.is-selected .vip-vehicle-btn {
    background: #1E293B;
    box-shadow: 0 12px 24px rgba(30, 41, 59, 0.22);
}

/* Bottom section */
.vip-bottom {
    display: flex;
    flex-direction: row-reverse; /* table on the right, map on the left */
    gap: 1.25rem;
}

.vip-panel {
    flex: 1 1 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.vip-panel-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 0.75rem;
}

.vip-table-wrap {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
}

.vip-table th,
.vip-table td {
    padding: 0.85rem 0.9rem;
    text-align: right;
    vertical-align: top;
    font-weight: 700;
}

.vip-table th {
    width: 32%;
    color: #1E293B;
    white-space: nowrap;
}

.vip-table td {
    color: #334155;
    font-weight: 600;
}

.vip-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.vip-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.vip-whatsapp {
    border: none;
    cursor: pointer;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-weight: 800;
    background: #22C55E;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.22);
}

.vip-edit {
    text-decoration: none;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-weight: 800;
    color: #1E293B;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-map {
    height: 360px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #f1f5f9;
}

.vip-map-loading {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #64748b;
    font-weight: 700;
}

@media (max-width: 900px) {
    .vip-bottom { flex-direction: column; }
    .vip-map { height: 300px; }
}

.vip-footer {
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    padding: 1.25rem 0 2rem;
}

/* =========================================
   Premium Flatpickr Timepicker (time-only)
   Requirements:
   - noCalendar + enableTime + 24h + 15min steps
   - Popup stays attached + matches input width
   - No ugly up/down arrows
   - White box, radius 20px, navy selected, 1.5rem text
   - Luxury shadow: 0 20px 50px rgba(0,0,128,0.2)
   ========================================= */

/* Flatpickr wraps inputs when static:true — keep layout intact */
body.vip-theme .flatpickr-wrapper,
body.vip-summary .flatpickr-wrapper {
    width: 100%;
    display: block;
}

/* Time-only calendar container */
body.vip-theme .flatpickr-calendar.noCalendar,
body.vip-summary .flatpickr-calendar.noCalendar {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 128, 0.2) !important;
    overflow: hidden;
    direction: ltr !important; /* override global RTL calendar rules */
    max-width: none !important;
}

/* Ensure it visually matches the input width */
body.vip-theme .flatpickr-calendar.noCalendar,
body.vip-summary .flatpickr-calendar.noCalendar {
    box-sizing: border-box;
}

/* Time row layout */
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time,
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time {
    border-top: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1rem !important;
    height: auto !important;
    max-height: none !important;
    font-family: 'Assistant', 'Heebo', sans-serif !important;
}

/* Bigger, readable hour/minute */
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time input,
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time input {
    font-family: 'Assistant', 'Heebo', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #0f172a !important;
    background: #ffffff !important;
    border: 2px solid rgba(226, 232, 240, 0.9) !important;
    border-radius: 14px !important;
    padding: 0.55rem 0.75rem !important;
    box-shadow: none !important;
}

/* Selected (active) field */
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time input:focus,
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time input:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border-color: #000080 !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 128, 0.18) !important;
}

/* Remove Flatpickr arrow controls */
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper span,
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time .numInputWrapper span {
    display: none !important;
}

/* Remove native number spinners (Chrome/Safari/Edge) */
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time input[type="number"]::-webkit-outer-spin-button,
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time input[type="number"]::-webkit-inner-spin-button,
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time input[type="number"]::-webkit-outer-spin-button,
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time input[type="number"],
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time input[type="number"] {
    -moz-appearance: textfield;
}

/* Make the separator match typography */
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time .flatpickr-time-separator,
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time .flatpickr-time-separator {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    opacity: 0.7;
    padding: 0 0.1rem;
}

/* Keep HH:MM readable in RTL page layout */
body.vip-theme input.flatpickr-time-input,
body.vip-summary input.flatpickr-time-input,
body.vip-theme .flatpickr-calendar.noCalendar .flatpickr-time input,
body.vip-summary .flatpickr-calendar.noCalendar .flatpickr-time input {
    direction: ltr !important;
}

/* =========================================
   Unified single-column Timepicker list
   - One long list of HH:mm (15-min steps)
   - White background, subtle scrollbar
   - Large tap targets
   - Selected: navy (#000080) + white text
   - Max height 250px with internal scroll
   ========================================= */

body.vip-theme .flatpickr-calendar.fp-unified-timepicker,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18) !important;
    overflow: hidden;
    direction: ltr !important; /* keep HH:mm readable */
}

/* Hide native hour/minute UI when unified mode is enabled */
body.vip-theme .flatpickr-calendar.fp-unified-timepicker .flatpickr-time,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .flatpickr-time {
    display: none !important;
}

body.vip-theme .flatpickr-calendar.fp-unified-timepicker .fp-unified-time,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .fp-unified-time {
    padding: 0.4rem 0.4rem;
    font-family: 'Assistant', 'Heebo', sans-serif !important;
}

body.vip-theme .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-list,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-list {
    max-height: 250px;
    overflow: auto;
    padding: 0.25rem;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(15, 23, 42, 0.18) transparent; /* Firefox */
}

body.vip-theme .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-list::-webkit-scrollbar,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-list::-webkit-scrollbar {
    width: 8px;
}

body.vip-theme .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-list::-webkit-scrollbar-thumb,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-list::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.16);
    border-radius: 999px;
}

body.vip-theme .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-list::-webkit-scrollbar-track,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-list::-webkit-scrollbar-track {
    background: transparent;
}

body.vip-theme .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-item,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-item {
    width: 100%;
    border: none;
    background: transparent;
    border-radius: 12px;
    padding: 0.95rem 1rem; /* big tap target */
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

body.vip-theme .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-item:hover,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-item:hover {
    background: #f3f4f6; /* very light gray */
}

body.vip-theme .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-item.is-selected,
body.vip-summary .flatpickr-calendar.fp-unified-timepicker .fp-unified-time-item.is-selected {
    background: #000080;
    color: #ffffff;
}

/* ================================
   Mobile Polish (max-width: 767px only)
   No changes to desktop/tablet
   ================================ */
@media (max-width: 767px) {
    /* Allow stats to display fully - no overflow clip */
    #booking {
        overflow: visible !important;
    }
    /* 1. Full width form - container + wrapper */
    #booking .hero-grid {
        padding: 0.5rem 0 0 0 !important;
        gap: 0 !important;
    }
    #contact-form,
    #booking-form {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    #booking-form .form-body,
    #booking-form .trip-tabs-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    #booking-form .p-6 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* 2. Zero spacing - hero section */
    #booking.hero-section {
        padding-bottom: 0 !important;
    }
    #booking .hero-h1 {
        margin-bottom: 0 !important;
    }
    /* Content (h1, stats) - minimal side padding for readability */
    #booking .hero-grid > .animate-fade-in {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* 3. Hero stats - fix cut-off, flex-wrap + smaller */
    #booking .hero-stats {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        overflow: visible !important;
    }
    #booking .hero-stats > div {
        flex: 1 1 30% !important;
        min-width: 0 !important;
        font-size: 0.85rem !important;
    }
    #booking .hero-stats > div p:first-child {
        font-size: 1.5rem !important;
    }
    #booking .hero-stats > div p:last-child {
        font-size: 0.7rem !important;
    }

    /* 4. Hide Description + CTA - no DOM space */
    #booking .hero-description,
    #booking .hero-cta {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: hidden !important;
    }

    /* 5. Native date/time inputs - consistent appearance, easy tap targets */
    #start_day, #end_day, #start_time, #end_time {
        appearance: none;
        -webkit-appearance: none;
        height: 48px;
        min-height: 48px;
    }
}

/* Native date/time inputs on tablet (Flatpickr disabled at <=1024px) */
@media (max-width: 1024px) {
    #start_day, #end_day, #start_time, #end_time {
        appearance: none;
        -webkit-appearance: none;
        height: 48px;
        min-height: 48px;
    }
}

/* Push accessibility icon above call bar on mobile */
@media (max-width: 767px) {
  #enable-toolbar { bottom: 65px !important; }
  body { padding-bottom: 60px; }
}

/* Mobile call bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  padding: 0.625rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .mobile-call-bar { display: none; }
}
