/**
 * VIP Transfer Shuttle - Public Styles
 *
 * Premium luxury transfer service WordPress plugin.
 * Production-ready, theme-isolated, responsive CSS.
 *
 * @package Vip_Transfer_Shuttle
 * @version 2.0.0
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES & THEME ISOLATION RESET
   ========================================================================== */

/* --- Theme Isolation: unset all inherited styles --- */
.vip-vehicles,
.vip-vehicle-filter,
.vip-routes,
.vip-booking {
    all: unset;
    display: block;
    box-sizing: border-box;

    /* --- Design Tokens --- */
    --vip-primary: #1a1a2e;
    --vip-primary-light: #2d2d4e;
    --vip-primary-medium: #3a3a5c;
    --vip-accent: #c9a84c;
    --vip-accent-light: #d4b85c;
    --vip-accent-dark: #b8963e;
    --vip-accent-glow: rgba(201, 168, 76, 0.15);
    --vip-accent-glow-strong: rgba(201, 168, 76, 0.35);
    --vip-secondary: #f4f4f4;
    --vip-text: #2d2d2d;
    --vip-text-light: #5a5a6e;
    --vip-text-muted: #999999;
    --vip-bg: #ffffff;
    --vip-bg-light: #f9f9fb;
    --vip-bg-dark: #f4f4f4;
    --vip-bg-card: #ffffff;
    --vip-border: #e8e8e8;
    --vip-border-light: #f0f0f0;
    --vip-success: #059669;
    --vip-success-light: #d1fae5;
    --vip-danger: #ef4444;
    --vip-danger-light: #fee2e2;
    --vip-warning: #f59e0b;
    --vip-info: #3b82f6;
    --vip-whatsapp: #25D366;
    --vip-whatsapp-dark: #128C7E;
    --vip-radius-sm: 6px;
    --vip-radius: 8px;
    --vip-radius-lg: 12px;
    --vip-radius-xl: 16px;
    --vip-radius-btn: 24px;
    --vip-radius-pill: 100px;
    --vip-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --vip-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --vip-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --vip-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --vip-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --vip-shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
    --vip-transition: 0.3s ease;
    --vip-transition-fast: 0.15s ease;
    --vip-transition-slow: 0.5s ease;
    --vip-font-heading: "Poppins", "Inter", system-ui, sans-serif;
    --vip-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --vip-input-height: 48px;
    --vip-btn-height: 44px;
    --vip-btn-height-lg: 56px;

    /* Base typography */
    font-family: var(--vip-font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--vip-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ==========================================================================
   2. THEME ISOLATION — ELEMENT RESETS
   ========================================================================== */

.vip-vehicles *,
.vip-vehicles *::before,
.vip-vehicles *::after,
.vip-vehicle-filter *,
.vip-vehicle-filter *::before,
.vip-vehicle-filter *::after,
.vip-routes *,
.vip-routes *::before,
.vip-routes *::after,
.vip-booking *,
.vip-booking *::before,
.vip-booking *::after {
    box-sizing: border-box;
}

.vip-vehicles *:where(:not(svg, svg *)),
.vip-vehicle-filter *:where(:not(svg, svg *)),
.vip-routes *:where(:not(svg, svg *)),
.vip-booking *:where(:not(svg, svg *)) {
    margin: 0;
    padding: 0;
}

/* Heading resets */
.vip-vehicles h1, .vip-vehicles h2, .vip-vehicles h3,
.vip-vehicles h4, .vip-vehicles h5, .vip-vehicles h6,
.vip-vehicle-filter h1, .vip-vehicle-filter h2, .vip-vehicle-filter h3,
.vip-vehicle-filter h4, .vip-vehicle-filter h5, .vip-vehicle-filter h6,
.vip-routes h1, .vip-routes h2, .vip-routes h3,
.vip-routes h4, .vip-routes h5, .vip-routes h6,
.vip-booking h1, .vip-booking h2, .vip-booking h3,
.vip-booking h4, .vip-booking h5, .vip-booking h6 {
    font-family: var(--vip-font-heading);
    color: var(--vip-text);
    margin: 0;
    padding: 0;
    border: none;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.25;
    font-weight: 700;
    background: none;
}

/* Paragraph resets */
.vip-vehicles p,
.vip-vehicle-filter p,
.vip-routes p,
.vip-booking p {
    font-family: var(--vip-font-body);
    color: inherit;
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: 1.6;
    background: none;
}

/* Link resets */
.vip-vehicles a,
.vip-vehicle-filter a,
.vip-routes a,
.vip-booking a {
    color: inherit;
    text-decoration: none;
    background: none;
}

/* List resets */
.vip-vehicles ul, .vip-vehicles ol, .vip-vehicles li,
.vip-vehicle-filter ul, .vip-vehicle-filter ol, .vip-vehicle-filter li,
.vip-routes ul, .vip-routes ol, .vip-routes li,
.vip-booking ul, .vip-booking ol, .vip-booking li {
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
}

/* Form element resets */
.vip-vehicles input, .vip-vehicles select, .vip-vehicles textarea, .vip-vehicles button,
.vip-vehicle-filter input, .vip-vehicle-filter select, .vip-vehicle-filter textarea, .vip-vehicle-filter button,
.vip-routes input, .vip-routes select, .vip-routes textarea, .vip-routes button,
.vip-booking input, .vip-booking select, .vip-booking textarea, .vip-booking button {
    font-family: var(--vip-font-body);
    font-size: inherit;
    line-height: 1.5;
    color: var(--vip-text);
    margin: 0;
    border: none;
    outline: none;
    background: none;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
}

/* Image resets */
.vip-vehicles img,
.vip-vehicle-filter img,
.vip-routes img,
.vip-booking img {
    max-width: 100%;
    height: auto;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: block;
}

/* Table resets */
.vip-routes table, .vip-routes th, .vip-routes td,
.vip-booking table, .vip-booking th, .vip-booking td {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    font-family: var(--vip-font-body);
}

/* Button cursor */
.vip-vehicles button,
.vip-vehicle-filter button,
.vip-routes button,
.vip-booking button {
    cursor: pointer;
}

/* SVG & icon resets */
.vip-vehicles svg, .vip-vehicles i,
.vip-vehicle-filter svg, .vip-vehicle-filter i,
.vip-routes svg, .vip-routes i,
.vip-booking svg, .vip-booking i {
    display: inline-block;
    vertical-align: middle;
    overflow: visible;
    line-height: 1;
}

/* Label resets */
.vip-vehicles label,
.vip-vehicle-filter label,
.vip-routes label,
.vip-booking label {
    font-family: var(--vip-font-body);
    margin: 0;
    padding: 0;
    font-weight: normal;
    background: none;
}

/* Span resets */
.vip-vehicles span,
.vip-vehicle-filter span,
.vip-routes span,
.vip-booking span {
    font-family: inherit;
    background: none;
}

/* Figure resets */
.vip-vehicles figure,
.vip-vehicle-filter figure,
.vip-routes figure,
.vip-booking figure {
    margin: 0;
    padding: 0;
}

/* --- Theme Isolation: !important overrides for elements themes commonly style --- */
.vip-booking h2,
.vip-booking h3 {
    color: var(--vip-text) !important;
    font-family: var(--vip-font-heading) !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    text-transform: none !important;
    text-shadow: none !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
}

.vip-booking .vip-booking__header h2 {
    color: #ffffff !important;
}

.vip-booking button:not(.vip-booking__counter-btn) {
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: none;
}

.vip-booking input,
.vip-booking select,
.vip-booking textarea {
    box-shadow: none !important;
    text-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-indent: 0 !important;
    text-decoration: none !important;
    border-bottom-style: solid !important;
}

.vip-booking input:hover,
.vip-booking select:hover,
.vip-booking textarea:hover {
    text-decoration: none !important;
    border-bottom-style: solid !important;
}

.vip-booking label {
    font-size: 0.8125rem !important;
    color: var(--vip-text) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   3. VEHICLE GRID (.vip-vehicles)
   ========================================================================== */

.vip-vehicles {
    padding: 24px 0;
    font-family: var(--vip-font-body);
    width: 100%;
}

/* --- Toolbar --- */
.vip-vehicles__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.vip-vehicles__toolbar-title {
    font-family: var(--vip-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vip-text);
}

.vip-vehicles__toolbar-count {
    font-size: 0.875rem;
    color: var(--vip-text-muted);
    font-weight: 400;
    margin-inline-start: 8px;
}

/* View Toggle */
.vip-vehicles__view-toggle {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--vip-bg-dark);
    border-radius: var(--vip-radius);
}

.vip-vehicles__view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--vip-radius-sm);
    background: transparent;
    color: var(--vip-text-muted);
    transition: all var(--vip-transition);
}

.vip-vehicles__view-btn:hover {
    color: var(--vip-text);
    background: rgba(0, 0, 0, 0.04);
}

.vip-vehicles__view-btn--active {
    background: var(--vip-bg);
    color: var(--vip-accent);
    box-shadow: var(--vip-shadow-xs);
}

.vip-vehicles__view-btn i {
    font-size: 18px;
    line-height: 1;
}

/* --- Grid Layout --- */
.vip-vehicles__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.vip-vehicles__grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.vip-vehicles__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vip-vehicles__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* --- List View Variant --- */
.vip-vehicles__grid--list {
    grid-template-columns: 1fr !important;
    gap: 16px;
}

.vip-vehicles__grid--list .vip-vehicle-card {
    flex-direction: row;
    border-top: none;
    border-inline-start: 3px solid var(--vip-accent);
}

.vip-vehicles__grid--list .vip-vehicle-card__figure {
    width: 280px;
    min-width: 280px;
    aspect-ratio: auto;
    height: 100%;
}

.vip-vehicles__grid--list .vip-vehicle-card__body {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.vip-vehicles__grid--list .vip-vehicle-card__title {
    flex: 1;
    min-width: 150px;
}

.vip-vehicles__grid--list .vip-vehicle-card__meta {
    border: none;
    padding: 0;
}

.vip-vehicles__grid--list .vip-vehicle-card__price {
    margin-inline-start: auto;
}

.vip-vehicles__grid--list .vip-vehicle-card__cta {
    width: auto;
}

/* --- Empty State --- */
.vip-vehicles__empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--vip-text-muted);
}

.vip-vehicles__empty-icon {
    margin-bottom: 16px;
}

.vip-vehicles__empty-icon i {
    font-size: 48px;
    line-height: 1;
    color: var(--vip-border);
}

.vip-vehicles__empty p {
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   4. VEHICLE CARD (.vip-vehicle-card)
   ========================================================================== */

.vip-vehicle-card {
    border-top: 3px solid var(--vip-accent);
    border-radius: var(--vip-radius-lg);
    background: var(--vip-bg);
    box-shadow: var(--vip-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: vipFadeInUp 0.5s ease forwards;
}

.vip-vehicle-card:nth-child(1)  { animation-delay: 0.05s; }
.vip-vehicle-card:nth-child(2)  { animation-delay: 0.10s; }
.vip-vehicle-card:nth-child(3)  { animation-delay: 0.15s; }
.vip-vehicle-card:nth-child(4)  { animation-delay: 0.20s; }
.vip-vehicle-card:nth-child(5)  { animation-delay: 0.25s; }
.vip-vehicle-card:nth-child(6)  { animation-delay: 0.30s; }
.vip-vehicle-card:nth-child(7)  { animation-delay: 0.35s; }
.vip-vehicle-card:nth-child(8)  { animation-delay: 0.40s; }
.vip-vehicle-card:nth-child(9)  { animation-delay: 0.45s; }
.vip-vehicle-card:nth-child(10) { animation-delay: 0.50s; }
.vip-vehicle-card:nth-child(11) { animation-delay: 0.55s; }
.vip-vehicle-card:nth-child(12) { animation-delay: 0.60s; }

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

/* --- Card Image --- */
.vip-vehicle-card__figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--vip-bg-dark);
}

.vip-vehicle-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.vip-vehicle-card:hover .vip-vehicle-card__figure img {
    transform: scale(1.08);
}

/* --- Card Image Placeholder --- */
.vip-vehicle-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vip-bg-dark) 0%, var(--vip-border) 100%);
}

.vip-vehicle-card__placeholder i {
    font-size: 56px;
    line-height: 1;
    color: var(--vip-text-muted);
    opacity: 0.4;
}

/* --- Card Badge --- */
.vip-vehicle-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--vip-accent);
    color: var(--vip-primary);
    border-radius: var(--vip-radius-pill);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    line-height: 1.4;
}

/* --- Card Body --- */
.vip-vehicle-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.vip-vehicle-card__title {
    font-family: var(--vip-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vip-text);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* --- Card Specs Row --- */
.vip-vehicle-card__meta {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-top: 1px solid var(--vip-border-light);
    border-bottom: 1px solid var(--vip-border-light);
}

.vip-vehicle-card__capacity,
.vip-vehicle-card__luggage {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--vip-text-light);
    font-size: 0.8125rem;
}

.vip-vehicle-card__capacity i,
.vip-vehicle-card__luggage i {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    color: var(--vip-accent);
}

.vip-vehicle-card__capacity strong,
.vip-vehicle-card__luggage strong {
    color: var(--vip-text);
    font-weight: 700;
}

/* --- Card Feature Pills --- */
.vip-vehicle-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vip-vehicle-card__features li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--vip-bg-dark);
    border-radius: var(--vip-radius-pill);
    font-size: 0.75rem;
    color: var(--vip-text-light);
    font-weight: 500;
    line-height: 1.4;
}

.vip-vehicle-card__features li i {
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
    color: var(--vip-success);
}

/* --- Card Price Section --- */
.vip-vehicle-card__price {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.vip-vehicle-card__price-currency {
    font-size: 0.875rem;
    color: var(--vip-text-muted);
    font-weight: 500;
}

.vip-vehicle-card__price-value {
    font-family: var(--vip-font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--vip-accent);
    letter-spacing: -0.02em;
}

.vip-vehicle-card__price-label {
    font-size: 0.8125rem;
    color: var(--vip-text-muted);
    margin-inline-start: 2px;
}

/* --- Card CTA Button --- */
.vip-vehicle-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #c9a84c 0%, #d4b85c 50%, #c9a84c 100%);
    color: #1a1a2e;
    font-family: var(--vip-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--vip-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.005em;
}

.vip-vehicle-card__cta i {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vip-vehicle-card__cta:hover {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #d4b85c 0%, #c9a84c 50%, #d4b85c 100%);
}

.vip-vehicle-card__cta:hover i {
    transform: translateX(2px);
}

.vip-vehicle-card__cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(201, 168, 76, 0.25);
}

.vip-vehicle-card__cta:focus-visible {
    outline: 2px solid var(--vip-accent);
    outline-offset: 2px;
}

.vip-vehicle-card__cta--details {
    background: transparent;
    color: var(--vip-accent);
    border: 2px solid var(--vip-accent);
    margin-bottom: 8px;
}

.vip-vehicle-card__cta--details:hover {
    background: var(--vip-accent);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

/* ==========================================================================
   5. VEHICLE FILTER (.vip-vehicle-filter)
   ========================================================================== */

.vip-vehicle-filter {
    padding: 24px 0;
    font-family: var(--vip-font-body);
    width: 100%;
}

/* --- Filter Bar --- */
.vip-vehicle-filter__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
    padding: 24px;
    background: var(--vip-bg-card);
    border: 1px solid var(--vip-border);
    border-radius: var(--vip-radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--vip-shadow-sm);
}

.vip-vehicle-filter__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
    background: var(--vip-bg-card);
    border: 1px solid var(--vip-border);
    border-radius: var(--vip-radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--vip-shadow-sm);
}

/* --- Mobile Toggle --- */
.vip-vehicle-filter__mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    background: var(--vip-bg-card);
    border: 1px solid var(--vip-border);
    border-radius: var(--vip-radius);
    color: var(--vip-text);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--vip-transition);
    margin-bottom: 16px;
}

.vip-vehicle-filter__mobile-toggle i {
    font-size: 18px;
    line-height: 1;
    color: var(--vip-accent);
}

.vip-vehicle-filter__mobile-toggle:hover {
    border-color: var(--vip-accent);
    background: var(--vip-accent-glow);
}

/* --- Filter Group --- */
.vip-vehicle-filter__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-vehicle-filter__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--vip-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Type Pills --- */
.vip-vehicle-filter__type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vip-vehicle-filter__type-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--vip-border);
    border-radius: var(--vip-radius-pill);
    background: var(--vip-bg);
    color: var(--vip-text-light);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--vip-transition);
    font-family: var(--vip-font-body);
    line-height: 1;
}

.vip-vehicle-filter__type-btn:hover {
    border-color: var(--vip-accent);
    color: var(--vip-accent);
    background: var(--vip-accent-glow);
}

.vip-vehicle-filter__type-btn--active {
    background: var(--vip-accent);
    border-color: var(--vip-accent);
    color: var(--vip-primary);
    font-weight: 700;
}

.vip-vehicle-filter__type-btn--active:hover {
    background: var(--vip-accent-light);
    border-color: var(--vip-accent-light);
    color: var(--vip-primary);
}

/* --- Capacity Select --- */
.vip-vehicle-filter__capacity-select,
.vip-vehicle-filter__sort-select {
    height: var(--vip-input-height);
    padding: 0 40px 0 16px;
    border: 1.5px solid var(--vip-border);
    border-radius: var(--vip-radius);
    font-size: 0.875rem;
    color: var(--vip-text);
    background-color: var(--vip-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: all var(--vip-transition);
    font-family: var(--vip-font-body);
    min-width: 160px;
}

.vip-vehicle-filter__capacity-select:hover,
.vip-vehicle-filter__sort-select:hover {
    border-color: var(--vip-text-muted);
}

.vip-vehicle-filter__capacity-select:focus,
.vip-vehicle-filter__sort-select:focus {
    outline: none;
    border-color: var(--vip-accent);
    box-shadow: 0 0 0 3px var(--vip-accent-glow);
}

/* --- Capacity Range --- */
.vip-vehicle-filter__capacity-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-vehicle-filter__input {
    width: 90px;
    height: var(--vip-input-height);
    padding: 0 14px;
    border: 1.5px solid var(--vip-border);
    border-radius: var(--vip-radius);
    font-size: 0.875rem;
    color: var(--vip-text);
    background: var(--vip-bg);
    transition: border-color var(--vip-transition), box-shadow var(--vip-transition);
    font-family: var(--vip-font-body);
}

.vip-vehicle-filter__input:focus {
    outline: none;
    border-color: var(--vip-accent);
    box-shadow: 0 0 0 3px var(--vip-accent-glow);
}

.vip-vehicle-filter__capacity-sep {
    color: var(--vip-text-muted);
    font-weight: 600;
}

/* --- Active Filter Chips --- */
.vip-vehicle-filter__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.vip-vehicle-filter__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--vip-accent-glow);
    border: 1px solid var(--vip-accent);
    border-radius: var(--vip-radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--vip-primary);
    cursor: pointer;
    transition: all var(--vip-transition);
}

.vip-vehicle-filter__chip:hover {
    background: rgba(201, 168, 76, 0.25);
}

.vip-vehicle-filter__chip-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    font-size: 0.625rem;
    line-height: 1;
    color: var(--vip-primary);
    transition: background var(--vip-transition);
}

.vip-vehicle-filter__chip:hover .vip-vehicle-filter__chip-remove {
    background: rgba(201, 168, 76, 0.5);
}

/* --- Clear All Button --- */
.vip-vehicle-filter__clear {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--vip-border);
    border-radius: var(--vip-radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--vip-text-muted);
    cursor: pointer;
    transition: all var(--vip-transition);
}

.vip-vehicle-filter__clear:hover {
    border-color: var(--vip-danger);
    color: var(--vip-danger);
    background: var(--vip-danger-light);
}

/* --- Filter Results Container --- */
.vip-vehicle-filter__results {
    position: relative;
    min-height: 120px;
}

.vip-vehicle-filter__count {
    font-size: 0.875rem;
    color: var(--vip-text-light);
    margin: 0 0 16px;
    font-weight: 500;
}

.vip-vehicle-filter__count strong {
    color: var(--vip-text);
    font-weight: 700;
}

/* --- Loading Overlay --- */
.vip-vehicle-filter__loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--vip-radius);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--vip-transition);
}

.vip-vehicle-filter__loading--active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   6. ROUTES & PRICES (.vip-routes)
   ========================================================================== */

.vip-routes {
    padding: 24px 0;
    font-family: var(--vip-font-body);
    width: 100%;
}

/* --- Search Bar --- */
.vip-routes__search {
    position: relative;
    margin-bottom: 24px;
}

.vip-routes__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--vip-text-muted);
    pointer-events: none;
    z-index: 1;
}

.vip-routes__search-input {
    width: 100%;
    height: var(--vip-input-height);
    padding: 0 16px 0 48px;
    border: 1.5px solid var(--vip-border);
    border-radius: var(--vip-radius);
    font-size: 0.9375rem;
    color: var(--vip-text);
    background: var(--vip-bg);
    transition: border-color var(--vip-transition), box-shadow var(--vip-transition);
    font-family: var(--vip-font-body);
}

.vip-routes__search-input:hover {
    border-color: var(--vip-text-muted);
}

.vip-routes__search-input:focus {
    outline: none;
    border-color: var(--vip-accent);
    box-shadow: 0 0 0 3px var(--vip-accent-glow);
}

.vip-routes__search-input::placeholder {
    color: var(--vip-text-muted);
}

.vip-routes__search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    color: var(--vip-text-muted);
    cursor: pointer;
    transition: all var(--vip-transition);
    border: none;
    padding: 0;
}

.vip-routes__search-clear:hover {
    background: var(--vip-bg-dark);
    color: var(--vip-text);
}

.vip-routes__search-clear i {
    font-size: 16px;
    line-height: 1;
}

/* --- Route List --- */
.vip-routes__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Route Item (Accordion) --- */
.vip-route-item {
    background: var(--vip-bg-card);
    border: 1px solid var(--vip-border);
    border-radius: var(--vip-radius-lg);
    overflow: hidden;
    box-shadow: var(--vip-shadow-sm);
    transition: box-shadow var(--vip-transition), border-color var(--vip-transition), border-left-width 0.15s ease, padding-left 0.15s ease;
    border-left: 4px solid transparent;
}

.vip-route-item:hover {
    box-shadow: var(--vip-shadow);
    border-left-color: var(--vip-accent);
}

/* --- Route Item Header --- */
.vip-route-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background-color var(--vip-transition);
}

.vip-route-item__header:hover {
    background: var(--vip-bg-light);
}

.vip-route-item__header:focus-visible {
    outline: 2px solid var(--vip-accent);
    outline-offset: -2px;
}

.vip-route-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vip-route-item__route {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vip-route-item__origin,
.vip-route-item__destination {
    font-family: var(--vip-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--vip-text);
}

.vip-route-item__arrow {
    display: flex;
    align-items: center;
    color: var(--vip-accent);
}

.vip-route-item__arrow i {
    font-size: 20px;
    line-height: 1;
}

.vip-route-item__details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.vip-route-item__detail {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: var(--vip-text-light);
}

.vip-route-item__detail i {
    font-size: 14px;
    line-height: 1;
    color: var(--vip-accent);
}

.vip-route-item__detail--price {
    color: var(--vip-accent);
    font-weight: 700;
}

.vip-route-item__detail--price small {
    color: var(--vip-text-muted);
    font-size: 0.8rem;
    margin-inline-end: 2px;
    font-weight: 400;
}

/* --- Toggle Icon --- */
.vip-route-item__toggle-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform var(--vip-transition);
    color: var(--vip-text-muted);
}

.vip-route-item--open .vip-route-item__toggle-icon {
    transform: rotate(180deg);
}

/* --- Accordion Content --- */
.vip-route-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vip-route-item__no-prices {
    padding: 20px 24px;
    color: var(--vip-text-muted);
    font-size: 0.875rem;
}

.vip-route-item__no-prices p {
    margin: 0;
}

/* --- Route Table --- */
.vip-route-item__prices {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

/* Dark Navy Sticky Header */
.vip-route-item__prices thead {
    background: #1a1a2e;
}

.vip-route-item__prices thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
}

.vip-route-item__prices thead th:first-child {
    border-radius: 0;
}

.vip-route-item__prices thead th:last-child {
    border-radius: 0;
}

/* Table Body */
.vip-route-item__prices td {
    padding: 12px 16px;
    text-align: left;
    border-top: 1px solid var(--vip-border-light);
    color: var(--vip-text);
    vertical-align: middle;
}

/* Alternating Rows */
.vip-route-item__prices tbody tr:nth-child(even) {
    background: var(--vip-bg-light);
}

.vip-route-item__prices tbody tr {
    transition: background-color var(--vip-transition);
}

.vip-route-item__prices tbody tr:hover {
    background: var(--vip-accent-glow);
}

/* --- Vehicle Type Badge in Table --- */
.vip-route-item__vehicle-type {
    display: inline-block;
    padding: 3px 10px;
    background: var(--vip-bg-dark);
    border-radius: var(--vip-radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--vip-text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* --- Gold Price Cell --- */
.vip-route-item__price-value {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--vip-accent);
}

.vip-route-item__price-value small {
    color: var(--vip-text-muted);
    font-size: 0.8rem;
    margin-inline-end: 2px;
    font-weight: 400;
}

/* --- Book Mini-Button --- */
.vip-route-item__book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #c9a84c 0%, #d4b85c 50%, #c9a84c 100%);
    color: #1a1a2e;
    font-family: var(--vip-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: var(--vip-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.vip-route-item__book-btn:hover {
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
    transform: translateY(-1px);
}

.vip-route-item__book-btn:active {
    transform: translateY(0);
}

.vip-route-item__book-btn i {
    font-size: 14px;
    line-height: 1;
}

/* --- Routes Empty State --- */
.vip-routes__empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--vip-text-muted);
}

.vip-routes__empty-icon {
    margin-bottom: 16px;
}

.vip-routes__empty-icon i {
    font-size: 48px;
    line-height: 1;
    color: var(--vip-border);
}

.vip-routes__empty p {
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   7. BOOKING FORM (.vip-booking)
   ========================================================================== */

.vip-booking {
    padding: 24px 0;
    font-family: var(--vip-font-body);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* --- Dark Header --- */
.vip-booking__header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%) !important;
    color: #ffffff !important;
    padding: 32px 36px !important;
    border-radius: var(--vip-radius-lg) var(--vip-radius-lg) 0 0;
    margin-bottom: 0;
    position: relative;
    border-bottom: 3px solid var(--vip-accent) !important;
}

.vip-booking__header-title {
    font-family: var(--vip-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.vip-booking__header-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* --- 4-Step Progress Bar --- */
.vip-booking__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 24px 16px 0;
}

.vip-booking__progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.vip-booking__progress-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #999;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--vip-transition);
    border: 2px solid transparent;
    flex-shrink: 0;
}

/* Active step */
.vip-booking__progress-step--active .vip-booking__progress-number {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #1a1a2e;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(201, 168, 76, 0.3);
}

/* Done step */
.vip-booking__progress-step--done .vip-booking__progress-number {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #1a1a2e;
    font-weight: 700;
}

/* Checkmark for done step */
.vip-booking__progress-step--done .vip-booking__progress-number::after {
    content: "\2713";
    font-size: 1rem;
    font-weight: 700;
}

.vip-booking__progress-step--done .vip-booking__progress-number .vip-booking__progress-number-text {
    display: none;
}

/* Progress line */
.vip-booking__progress-line {
    flex-grow: 1;
    height: 2px;
    background: #e8e8e8;
    margin: 0 12px;
    max-width: 80px;
    transition: background-color var(--vip-transition);
    border-radius: 1px;
}

.vip-booking__progress-line--filled,
.vip-booking__progress-step--done + .vip-booking__progress-line {
    background: #c9a84c;
}

.vip-booking__progress-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vip-text) !important;
    margin-top: 6px;
}

.vip-booking__progress-step--active .vip-booking__progress-label {
    color: var(--vip-accent);
}

.vip-booking__progress-step--done .vip-booking__progress-label {
    color: var(--vip-text);
}

/* Inactive steps are dimmed */
.vip-booking__progress-step:not(.vip-booking__progress-step--active):not(.vip-booking__progress-step--done) {
    opacity: 0.45;
}

/* --- Booking Steps --- */
.vip-booking__step {
    display: none;
    background: var(--vip-bg-card);
    border: 1px solid var(--vip-border);
    border-radius: var(--vip-radius-lg);
    padding: 36px;
    box-shadow: var(--vip-shadow);
    animation: vipFadeInUp 0.4s ease;
    border-top: none;
}

.vip-booking__step--active {
    display: block;
}

.vip-booking__step[data-step="1"] {
    border-top: 1px solid var(--vip-border);
}

.vip-booking__step-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--vip-font-heading) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--vip-primary) !important;
    margin: 0 0 24px 0 !important;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--vip-bg-dark) !important;
    border-left: 4px solid var(--vip-accent) !important;
    padding-left: 14px;
    letter-spacing: -0.01em;
}

.vip-booking__step-title i {
    color: var(--vip-accent);
    flex-shrink: 0;
}

.vip-booking__step-desc {
    font-size: 0.875rem;
    color: var(--vip-text-light);
    margin: -12px 0 24px 14px;
    padding-left: 14px;
    line-height: 1.6;
    border-left: 2px solid var(--vip-border-light);
}

/* --- Form Grid & Fields --- */
.vip-booking__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vip-booking__form-grid--full {
    grid-template-columns: 1fr;
}

.vip-booking__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vip-booking__field--full {
    grid-column: 1 / -1;
}

.vip-booking__field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vip-text);
}

.vip-booking__field label i {
    color: var(--vip-accent);
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
}

.vip-booking__field label .required,
.vip-booking__field label .vip-required {
    color: var(--vip-danger);
    font-weight: 700;
}

/* --- Form Inputs (48px height, 8px radius) --- */
.vip-booking__field input,
.vip-booking__field select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #2d2d2d;
    background: var(--vip-bg);
    transition: border-color var(--vip-transition), box-shadow var(--vip-transition), background-color var(--vip-transition);
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.vip-booking__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #2d2d2d;
    background: var(--vip-bg);
    transition: border-color var(--vip-transition), box-shadow var(--vip-transition);
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    -webkit-appearance: none;
    appearance: none;
}

.vip-booking__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.vip-booking__field input:hover,
.vip-booking__field select:hover,
.vip-booking__field textarea:hover {
    border-color: var(--vip-accent) !important;
    border-bottom-color: var(--vip-accent) !important;
    border-bottom-style: solid !important;
    border-bottom-width: 1px !important;
    text-decoration: none !important;
}

.vip-booking__field input:focus,
.vip-booking__field select:focus,
.vip-booking__field textarea:focus {
    outline: none;
    border-color: #c9a84c !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    border-bottom-color: #c9a84c !important;
    border-bottom-style: solid !important;
    border-bottom-width: 1px !important;
    text-decoration: none !important;
}

.vip-booking__field input:disabled,
.vip-booking__field select:disabled {
    background: var(--vip-bg-dark);
    color: var(--vip-text-light);
    border-color: var(--vip-border-light);
    cursor: not-allowed;
    opacity: 0.7;
}

.vip-booking__field input::placeholder,
.vip-booking__field textarea::placeholder {
    color: var(--vip-text-muted);
}

/* --- Counter +/- Buttons --- */
.vip-booking__counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--vip-border);
    border-radius: var(--vip-radius-lg);
    overflow: hidden;
    height: 52px;
    background: var(--vip-bg);
    transition: border-color var(--vip-transition);
}

.vip-booking__counter:hover {
    border-color: var(--vip-text-muted);
}

.vip-booking__counter:focus-within {
    border-color: var(--vip-accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.vip-booking__counter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 100%;
    border: none !important;
    border-radius: 0 !important;
    background: var(--vip-bg-light) !important;
    color: var(--vip-text) !important;
    font-size: 1.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--vip-transition-fast);
    font-family: var(--vip-font-body);
    line-height: 1;
    user-select: none;
    -webkit-user-select: none;
}

.vip-booking__counter-btn--decrease {
    border-right: 1.5px solid var(--vip-border) !important;
}

.vip-booking__counter-btn--increase {
    border-left: 1.5px solid var(--vip-border) !important;
}

.vip-booking__counter-btn:hover:not(:disabled) {
    color: var(--vip-accent) !important;
    background: var(--vip-accent-glow) !important;
}

.vip-booking__counter-btn:active:not(:disabled) {
    transform: scale(0.9);
    background: rgba(201, 168, 76, 0.2) !important;
}

.vip-booking__counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: var(--vip-text-muted) !important;
}

.vip-booking__counter-btn:disabled:hover {
    background: var(--vip-bg-light) !important;
    color: var(--vip-text-muted) !important;
}

.vip-booking__counter-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 60px;
    padding: 4px 0;
}

.vip-booking__counter-value {
    font-family: var(--vip-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vip-text);
    line-height: 1;
}

.vip-booking__counter-unit {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--vip-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-top: 2px;
}

/* --- Toggle Switch (container & label) --- */
.vip-booking__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.vip-booking__toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vip-text);
}

/* --- Vehicle Selection Cards (Step 2) --- */
.vip-booking__vehicles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vip-booking__vehicle-card {
    background: var(--vip-bg-card);
    border: 2px solid var(--vip-border);
    border-radius: var(--vip-radius-lg);
    overflow: hidden;
    transition: all var(--vip-transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    animation: vipFadeInUp 0.5s ease forwards;
}

.vip-booking__vehicle-card:nth-child(1) { animation-delay: 0.05s; }
.vip-booking__vehicle-card:nth-child(2) { animation-delay: 0.10s; }
.vip-booking__vehicle-card:nth-child(3) { animation-delay: 0.15s; }
.vip-booking__vehicle-card:nth-child(4) { animation-delay: 0.20s; }
.vip-booking__vehicle-card:nth-child(5) { animation-delay: 0.25s; }
.vip-booking__vehicle-card:nth-child(6) { animation-delay: 0.30s; }

.vip-booking__vehicle-card:hover {
    border-color: var(--vip-accent);
    box-shadow: var(--vip-shadow-md);
    transform: translateY(-4px);
}

/* Gold selected border */
.vip-booking__vehicle-card--selected {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.03);
    box-shadow: 0 0 0 3px var(--vip-accent-glow), var(--vip-shadow);
}

.vip-booking__vehicle-card--selected::before {
    content: "\2713";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #c9a84c;
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 3;
}

.vip-booking__vehicle-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--vip-bg-dark);
}

.vip-booking__vehicle-image img,
.vip-booking__vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vip-booking__vehicle-card:hover .vip-booking__vehicle-image img,
.vip-booking__vehicle-card:hover .vip-booking__vehicle-img {
    transform: scale(1.08);
}

.vip-booking__vehicle-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vip-bg-dark) 0%, var(--vip-border) 100%);
    color: var(--vip-text-muted);
}

.vip-booking__vehicle-placeholder i {
    font-size: 48px;
    line-height: 1;
    opacity: 0.4;
}

.vip-booking__vehicle-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--vip-accent);
    color: var(--vip-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--vip-radius-pill);
    z-index: 2;
}

.vip-booking__vehicle-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vip-booking__vehicle-name {
    font-family: var(--vip-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--vip-text);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.vip-booking__vehicle-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--vip-text-light);
    margin-bottom: 8px;
}

.vip-booking__vehicle-meta i {
    font-size: 14px;
    line-height: 1;
    color: var(--vip-accent);
}

.vip-booking__vehicle-features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vip-booking__vehicle-features li {
    padding: 4px 12px;
    background: var(--vip-bg-dark);
    border-radius: var(--vip-radius-pill);
    font-size: 0.6875rem;
    color: var(--vip-text-light);
    font-weight: 500;
}

.vip-booking__vehicle-price {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--vip-border-light);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.vip-booking__vehicle-price-value {
    font-family: var(--vip-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vip-accent);
    letter-spacing: -0.01em;
}

.vip-booking__vehicle-price-label {
    font-size: 0.75rem;
    color: var(--vip-text-muted);
}

/* --- No Vehicles Message --- */
.vip-booking__no-vehicles {
    text-align: center;
    padding: 48px 24px;
    color: var(--vip-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.vip-booking__no-vehicles i {
    font-size: 48px;
    line-height: 1;
    color: var(--vip-border);
}

.vip-booking__no-vehicles p {
    margin: 0;
    font-size: 0.9375rem;
}

.vip-booking__no-vehicles-sub {
    font-size: 0.8125rem !important;
    color: var(--vip-text-light);
}

.vip-booking__no-vehicles-reason {
    font-size: 0.8125rem;
    color: var(--vip-text-light);
    font-style: italic;
    padding: 12px 20px;
    background: var(--vip-bg-dark);
    border-radius: var(--vip-radius);
    max-width: 500px;
}

/* --- Details Form (Step 3) --- */
.vip-booking__details-section {
    margin-bottom: 24px;
}

.vip-booking__details-section-title {
    font-family: var(--vip-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vip-text);
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--vip-border-light);
}

/* --- Summary Card (Step 4) --- */
.vip-booking__summary {
    background: var(--vip-bg);
    border-radius: var(--vip-radius-lg);
    box-shadow: var(--vip-shadow);
    padding: 24px;
    border: 1px solid var(--vip-border);
    border-left: 4px solid var(--vip-accent);
}

.vip-booking__summary-title {
    font-family: var(--vip-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vip-text);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--vip-accent);
}

.vip-booking__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9375rem;
    border-radius: var(--vip-radius-sm);
}

.vip-booking__summary-row:nth-child(even) {
    background: var(--vip-bg-light);
}

.vip-booking__summary-row:last-child {
    border-bottom: none;
}

.vip-booking__summary-label {
    color: var(--vip-text-light);
    font-weight: 500;
}

.vip-booking__summary-value {
    color: var(--vip-text);
    font-weight: 600;
    text-align: right;
}

/* Total row */
.vip-booking__summary-row--total {
    border-top: 2px solid var(--vip-border);
    margin-top: 8px;
    padding-top: 16px;
}

.vip-booking__summary-row--total .vip-booking__summary-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vip-text);
}

.vip-booking__summary-row--total .vip-booking__summary-value {
    font-family: var(--vip-font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: #c9a84c;
}

/* --- Terms Checkbox --- */
.vip-booking__terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0;
    cursor: pointer;
}

.vip-booking__terms-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vip-booking__terms-checkbox input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--vip-border);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--vip-transition);
    background: var(--vip-bg);
}

.vip-booking__terms-checkbox input:checked {
    background: #c9a84c;
    border-color: #c9a84c;
}

.vip-booking__terms-checkbox input:focus-visible {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.vip-booking__terms-text {
    font-size: 0.8125rem;
    color: var(--vip-text-light);
    line-height: 1.5;
}

.vip-booking__terms-text a {
    color: var(--vip-accent);
    text-decoration: underline;
    font-weight: 500;
}

.vip-booking__terms-text a:hover {
    color: var(--vip-accent-dark);
}

/* --- Confirm Button (Gold Gradient) --- */
.vip-booking__confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #c9a84c, #d4b85c);
    color: #1a1a2e;
    font-family: var(--vip-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--vip-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.vip-booking__confirm-btn i {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.vip-booking__confirm-btn:hover {
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #d4b85c, #c9a84c);
}

.vip-booking__confirm-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.vip-booking__confirm-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vip-booking__confirm-btn:focus-visible {
    outline: 2px solid var(--vip-primary);
    outline-offset: 2px;
}

/* --- Trust Badges --- */
.vip-booking__trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
}

.vip-booking__trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.vip-booking__trust-badge i {
    font-size: 24px;
    line-height: 1;
    color: var(--vip-text-muted);
    opacity: 0.7;
}

.vip-booking__trust-badge span {
    max-width: 100px;
    line-height: 1.3;
}

/* --- WhatsApp Button (Outlined Green) --- */
.vip-booking__btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--vip-whatsapp);
    font-family: var(--vip-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid var(--vip-whatsapp) !important;
    border-radius: var(--vip-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.vip-booking__btn--whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-color: transparent !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.vip-booking__btn--whatsapp:active {
    background: linear-gradient(135deg, #20c05a 0%, #0f8a78 100%);
    color: #ffffff;
    border-color: transparent !important;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.vip-booking__btn--whatsapp .fa-whatsapp {
    font-size: 20px;
    line-height: 1;
    color: currentColor;
}

/* WhatsApp full-width variant in vehicle card */
.vip-booking__vehicle-card .vip-booking__btn--whatsapp {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

/* --- Actions Bar --- */
.vip-booking__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--vip-border-light);
}

/* --- Buttons --- */
.vip-booking__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--vip-radius-lg);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--vip-font-heading);
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.005em;
    text-decoration: none !important;
    min-height: 48px;
}

.vip-booking__btn i {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.vip-booking__btn:focus-visible {
    outline: 2px solid var(--vip-accent);
    outline-offset: 2px;
}

/* Primary Button (Araç Ara, Devam Et) */
.vip-booking__btn--primary {
    background: linear-gradient(135deg, #c9a84c 0%, #d4b85c 100%);
    color: #1a1a2e;
    padding: 16px 36px;
    min-height: 52px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.2);
}

.vip-booking__btn--primary:hover {
    background: linear-gradient(135deg, #d4b85c 0%, #c9a84c 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.vip-booking__btn--primary:hover i {
    transform: translateX(3px);
}

.vip-booking__btn--primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 3px 12px rgba(201, 168, 76, 0.25);
}

.vip-booking__btn--primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    pointer-events: none;
}

/* Secondary Button (Geri) */
.vip-booking__btn--secondary {
    background: var(--vip-bg);
    color: var(--vip-text-light);
    border: 1.5px solid var(--vip-border) !important;
    font-weight: 600;
}

.vip-booking__btn--secondary:hover {
    background: var(--vip-bg-dark);
    border-color: var(--vip-text-muted) !important;
    color: var(--vip-text);
}

.vip-booking__btn--secondary:hover i {
    transform: translateX(-3px);
}

.vip-booking__btn--secondary:active {
    background: var(--vip-border);
    transform: scale(0.98);
}

/* --- Loading State --- */
.vip-booking__loading {
    display: none;
    text-align: center;
    padding: 48px 20px;
}

.vip-booking__loading--active {
    display: block;
}

.vip-booking__loading p {
    margin: 16px 0 0;
    color: var(--vip-text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   8. SKELETON LOADING — SHIMMER ANIMATION
   ========================================================================== */

@keyframes vipShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.vip-skeleton {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        var(--vip-bg-dark) 25%,
        #e8e8e8 37%,
        var(--vip-bg-dark) 63%
    );
    background-size: 200% 100%;
    animation: vipShimmer 1.5s ease-in-out infinite;
    border-radius: var(--vip-radius);
}

.vip-skeleton--text {
    height: 16px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.vip-skeleton--text-sm {
    height: 12px;
    width: 60%;
    border-radius: 4px;
}

.vip-skeleton--title {
    height: 22px;
    width: 70%;
    border-radius: 4px;
    margin-bottom: 12px;
}

.vip-skeleton--image {
    aspect-ratio: 16 / 10;
    border-radius: var(--vip-radius-lg) var(--vip-radius-lg) 0 0;
}

.vip-skeleton--circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.vip-skeleton--button {
    height: 44px;
    border-radius: var(--vip-radius-btn);
}

.vip-skeleton--badge {
    height: 24px;
    width: 80px;
    border-radius: var(--vip-radius-pill);
}

/* Skeleton card layout */
.vip-skeleton-card {
    border-radius: var(--vip-radius-lg);
    overflow: hidden;
    background: var(--vip-bg);
    box-shadow: var(--vip-shadow-sm);
}

.vip-skeleton-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================================================
   9. ENTRANCE ANIMATION
   ========================================================================== */

@keyframes vipFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vip-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: vipFadeInUp 0.5s ease forwards;
}

.vip-fade-in-up--delay-1 { animation-delay: 0.1s; }
.vip-fade-in-up--delay-2 { animation-delay: 0.2s; }
.vip-fade-in-up--delay-3 { animation-delay: 0.3s; }
.vip-fade-in-up--delay-4 { animation-delay: 0.4s; }
.vip-fade-in-up--delay-5 { animation-delay: 0.5s; }

@keyframes vipFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.vip-fade-in {
    opacity: 0;
    animation: vipFadeIn 0.4s ease forwards;
}

@keyframes vipSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vip-slide-down {
    animation: vipSlideDown 0.3s ease forwards;
}

/* ==========================================================================
   10. SPINNER
   ========================================================================== */

.vip-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--vip-border);
    border-top-color: #c9a84c;
    border-radius: 50%;
    animation: vipSpin 0.7s linear infinite;
}

.vip-spinner--sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.vip-spinner--lg {
    width: 48px;
    height: 48px;
    border-width: 4px;
}

.vip-spinner--white {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
}

@keyframes vipSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Spinner centered in container */
.vip-spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    min-height: 120px;
}

/* ==========================================================================
   11. UTILITIES
   ========================================================================== */

/* Screen-reader only */
.vip-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Required field asterisk */
.vip-required {
    color: #ef4444;
    font-weight: 700;
    margin-inline-start: 2px;
}

/* Text utilities */
.vip-text-accent {
    color: var(--vip-accent) !important;
}

.vip-text-muted {
    color: var(--vip-text-muted) !important;
}

.vip-text-success {
    color: var(--vip-success) !important;
}

.vip-text-danger {
    color: var(--vip-danger) !important;
}

.vip-text-center {
    text-align: center !important;
}

/* Display utilities */
.vip-hidden {
    display: none !important;
}

.vip-visible {
    display: block !important;
}

/* Spacing utilities */
.vip-mt-0 { margin-top: 0 !important; }
.vip-mt-8 { margin-top: 8px !important; }
.vip-mt-16 { margin-top: 16px !important; }
.vip-mt-24 { margin-top: 24px !important; }
.vip-mb-0 { margin-bottom: 0 !important; }
.vip-mb-8 { margin-bottom: 8px !important; }
.vip-mb-16 { margin-bottom: 16px !important; }
.vip-mb-24 { margin-bottom: 24px !important; }

/* ==========================================================================
   12. PRINT STYLES
   ========================================================================== */

@media print {
    .vip-vehicles,
    .vip-vehicle-filter,
    .vip-routes,
    .vip-booking {
        color: #000000 !important;
        background: #ffffff !important;
        box-shadow: none !important;
    }

    .vip-vehicle-card,
    .vip-route-item,
    .vip-booking__step,
    .vip-booking__summary {
        box-shadow: none !important;
        border: 1px solid #cccccc !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .vip-vehicle-card {
        border-top: 3px solid #c9a84c !important;
    }

    .vip-vehicle-card:hover,
    .vip-route-item:hover,
    .vip-booking__vehicle-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .vip-vehicle-card__figure img,
    .vip-booking__vehicle-image img {
        transform: none !important;
    }

    /* Hide interactive elements */
    .vip-vehicle-filter,
    .vip-vehicle-filter__bar,
    .vip-vehicle-filter__controls,
    .vip-vehicle-filter__mobile-toggle,
    .vip-vehicles__view-toggle,
    .vip-routes__search,
    .vip-booking__progress,
    .vip-booking__actions,
    .vip-booking__trust-badges,
    .vip-booking__btn--whatsapp,
    .vip-vehicle-card__cta,
    .vip-route-item__book-btn,
    .vip-booking__confirm-btn,
    .vip-booking__terms,
    .vip-spinner,
    .vip-vehicle-filter__loading {
        display: none !important;
    }

    /* Ensure accordion content is visible */
    .vip-route-item__content {
        max-height: none !important;
        overflow: visible !important;
    }

    /* Force grid to single column for print */
    .vip-vehicles__grid,
    .vip-vehicles__grid--cols-2,
    .vip-vehicles__grid--cols-3,
    .vip-vehicles__grid--cols-4,
    .vip-booking__vehicles-grid,
    .vip-booking__transfer-types {
        grid-template-columns: 1fr !important;
    }

    /* Gold accents become darker for print */
    .vip-vehicle-card__badge,
    .vip-booking__vehicle-badge {
        background: #b8963e !important;
        color: #000000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .vip-route-item__price-value,
    .vip-vehicle-card__price-value,
    .vip-booking__vehicle-price-value,
    .vip-booking__summary-row--total .vip-booking__summary-value {
        color: #000000 !important;
        font-weight: 800 !important;
    }

    /* Table forced display for print */
    .vip-route-item__prices thead {
        display: table-header-group !important;
        background: #1a1a2e !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .vip-route-item__prices thead th {
        color: #ffffff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .vip-route-item__prices tbody tr {
        display: table-row !important;
    }

    .vip-route-item__prices td {
        display: table-cell !important;
    }

    .vip-route-item__prices td::before {
        display: none !important;
    }

    /* Summary card for print */
    .vip-booking__summary {
        border: 2px solid #cccccc !important;
        padding: 20px !important;
    }

    .vip-booking__summary-row {
        border-bottom: 1px solid #dddddd !important;
    }

    /* Links show URLs */
    .vip-vehicles a[href]::after,
    .vip-routes a[href]::after,
    .vip-booking a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.75rem;
        color: #666666;
    }
}

/* ==========================================================================
   13. RTL SUPPORT
   ========================================================================== */

/* CSS logical properties are used throughout where possible.
   These explicit [dir="rtl"] overrides handle edge cases. */

[dir="rtl"] .vip-vehicle-card__badge,
[dir="rtl"] .vip-booking__vehicle-badge {
    left: auto;
    right: 12px;
}

[dir="rtl"] .vip-booking__vehicle-card--selected::before {
    right: auto;
    left: 12px;
}

[dir="rtl"] .vip-routes__search-icon {
    left: auto;
    right: 16px;
}

[dir="rtl"] .vip-routes__search-input {
    padding-left: 16px;
    padding-right: 48px;
}

[dir="rtl"] .vip-routes__search-clear {
    right: auto;
    left: 12px;
}

[dir="rtl"] .vip-route-item {
    border-left: none;
    border-right: 4px solid transparent;
}

[dir="rtl"] .vip-route-item:hover {
    border-left-color: transparent;
    border-right-color: var(--vip-accent);
}

[dir="rtl"] .vip-route-item__prices thead th,
[dir="rtl"] .vip-route-item__prices td {
    text-align: right;
}

[dir="rtl"] .vip-booking__field select {
    background-position: left 14px center;
    padding-left: 40px;
    padding-right: 16px;
}

[dir="rtl"] .vip-vehicle-filter__capacity-select,
[dir="rtl"] .vip-vehicle-filter__sort-select {
    background-position: left 14px center;
    padding-left: 40px;
    padding-right: 16px;
}

[dir="rtl"] .vip-booking__counter-btn:first-child {
    border-right: none;
    border-left: 1px solid #e8e8e8;
}

[dir="rtl"] .vip-booking__counter-btn:last-child {
    border-left: none;
    border-right: 1px solid #e8e8e8;
}

[dir="rtl"] .vip-booking__summary-value {
    text-align: left;
}

[dir="rtl"] .vip-route-item__arrow i {
    transform: scaleX(-1);
}

[dir="rtl"] .vip-vehicle-card__cta i {
    transform: scaleX(-1);
}

[dir="rtl"] .vip-vehicles__grid--list .vip-vehicle-card {
    border-inline-start: 3px solid var(--vip-accent);
    border-inline-end: none;
}

/* RTL animation adjustments */
[dir="rtl"] .vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider::before {
    left: auto;
    right: 3px;
}

[dir="rtl"] .vip-booking__toggle input[type="checkbox"]:checked + .vip-booking__toggle-slider::before {
    transform: translateX(-26px);
}

/* ==========================================================================
   RESPONSIVE — 1024px (Tablet Landscape)
   ========================================================================== */

@media (max-width: 1024px) {
    .vip-vehicles__grid--cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .vip-booking__trust-badges {
        gap: 24px;
    }
}

/* ==========================================================================
   RESPONSIVE — 768px (Tablet Portrait)
   ========================================================================== */

@media (max-width: 768px) {
    .vip-vehicles__grid--cols-3,
    .vip-vehicles__grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-vehicles__grid--list .vip-vehicle-card {
        flex-direction: column;
    }

    .vip-vehicles__grid--list .vip-vehicle-card__figure {
        width: 100%;
        min-width: auto;
        aspect-ratio: 16 / 10;
    }

    .vip-vehicles__grid--list .vip-vehicle-card__body {
        flex-direction: column;
        align-items: stretch;
    }

    .vip-vehicle-filter__controls {
        flex-direction: column;
    }

    .vip-vehicle-filter__mobile-toggle {
        display: flex;
    }

    .vip-vehicle-filter__bar {
        flex-direction: column;
    }

    /* Route table => stacked cards */
    .vip-route-item__prices thead {
        display: none;
    }

    .vip-route-item__prices tbody tr {
        display: flex;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--vip-border-light);
    }

    .vip-route-item__prices td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border: none;
    }

    .vip-route-item__prices td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.75rem;
        color: var(--vip-text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .vip-route-item__header {
        padding: 16px 20px;
    }

    .vip-route-item__prices th,
    .vip-route-item__prices td {
        padding: 12px 16px;
    }

    /* Booking */
    .vip-booking__progress-label {
        display: none;
    }

    .vip-booking__vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-booking__header {
        padding: 24px;
    }

    .vip-booking__header-title {
        font-size: 1.25rem;
    }

    .vip-booking__trust-badges {
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   RESPONSIVE — 480px (Mobile)
   ========================================================================== */

@media (max-width: 480px) {
    /* Vehicles */
    .vip-vehicles__grid,
    .vip-vehicles__grid--cols-2,
    .vip-vehicles__grid--cols-3,
    .vip-vehicles__grid--cols-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vip-vehicles__toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .vip-vehicle-card__body {
        padding: 16px;
    }

    .vip-vehicle-card__meta {
        gap: 12px;
    }

    .vip-vehicle-card__title {
        font-size: 1rem;
    }

    /* Filter */
    .vip-vehicle-filter__controls {
        padding: 16px;
        gap: 16px;
    }

    .vip-vehicle-filter__type-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .vip-vehicle-filter__input {
        width: 75px;
        padding: 0 10px;
    }

    .vip-vehicle-filter__capacity-select,
    .vip-vehicle-filter__sort-select {
        min-width: 100%;
    }

    /* Routes */
    .vip-route-item__header {
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    .vip-route-item__origin,
    .vip-route-item__destination {
        font-size: 0.9375rem;
    }

    .vip-route-item__details {
        gap: 10px;
    }

    .vip-route-item__prices tbody tr {
        padding: 12px 16px;
    }

    .vip-route-item__prices td {
        padding: 4px 0;
    }

    /* Booking */
    .vip-booking {
        padding: 16px 0;
    }

    .vip-booking__step {
        padding: 24px 18px;
    }

    .vip-booking__step-title {
        font-size: 1.0625rem;
    }

    .vip-booking__form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vip-booking__vehicles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vip-booking__actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .vip-booking__actions .vip-booking__btn {
        width: 100%;
        justify-content: center;
    }

    .vip-booking__progress {
        padding: 0 8px;
        margin-bottom: 24px;
    }

    .vip-booking__progress-line {
        margin: 0 6px;
    }

    .vip-booking__progress-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .vip-booking__header {
        padding: 20px 18px;
        border-radius: var(--vip-radius) var(--vip-radius) 0 0;
    }

    .vip-booking__header-title {
        font-size: 1.125rem;
    }

    .vip-booking__summary {
        padding: 18px;
    }

    .vip-booking__summary-row {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .vip-booking__summary-value {
        text-align: left;
    }

    .vip-booking__confirm-btn {
        height: 52px;
        font-size: 1rem;
    }

    .vip-booking__trust-badges {
        gap: 16px;
        flex-wrap: wrap;
    }

    .vip-booking__trust-badge {
        min-width: 60px;
    }

    .vip-booking__counter {
        height: 44px;
    }

    .vip-booking__counter-btn {
        width: 36px;
    }
}

/* ==========================================================================
   ADMIN SETTINGS LAYOUT (WordPress Admin Area)
   ========================================================================== */

.vip-settings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}

.vip-settings-layout__main {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px;
}

.vip-settings-layout__sidebar {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px;
}

.vip-shortcode-doc h2 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
    color: #1d2327;
}

.vip-shortcode-doc__item {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.vip-shortcode-doc__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.vip-shortcode-doc__item h3 {
    margin: 0 0 10px;
    color: #1d2327;
}

.vip-shortcode-doc__code {
    display: block;
    background: #f0f0f1;
    padding: 8px 14px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    color: #1d2327;
    margin-bottom: 12px;
    user-select: all;
    cursor: text;
    word-break: break-all;
}

.vip-shortcode-doc__params {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-bottom: 10px;
}

.vip-shortcode-doc__params th,
.vip-shortcode-doc__params td {
    padding: 6px 10px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.vip-shortcode-doc__params th {
    background: #f6f7f7;
    font-weight: 600;
}

.vip-shortcode-doc__params code {
    font-size: 11px;
    background: #f0f0f1;
    padding: 2px 5px;
    border-radius: 3px;
}

.vip-shortcode-doc__example-label {
    margin: 8px 0 4px;
    font-size: 12px;
    font-weight: 600;
    color: #50575e;
}

.vip-shortcode-doc__desc {
    font-size: 13px;
    color: #50575e;
    margin: 0 0 10px;
}

.vip-shortcode-doc__steps p {
    margin: 4px 0;
    font-size: 12px;
    color: #50575e;
}

.vip-status-select {
    font-size: 12px;
    padding: 2px 6px;
    min-width: 100px;
}

.vip-status--pending { color: #996800; }
.vip-status--confirmed { color: #0073aa; }
.vip-status--completed { color: #00a32a; }
.vip-status--cancelled { color: #d63638; }

@media (max-width: 782px) {
    .vip-settings-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   REDUCED MOTION — ACCESSIBILITY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .vip-vehicle-card,
    .vip-booking__vehicle-card,
    .vip-vehicle-card__figure img,
    .vip-booking__vehicle-image img,
    .vip-vehicle-card__cta,
    .vip-booking__confirm-btn,
    .vip-booking__btn,
    .vip-route-item,
    .vip-booking__type-card,
    .vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider,
    .vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider::before {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .vip-vehicle-card,
    .vip-booking__vehicle-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .vip-vehicle-card:hover,
    .vip-booking__vehicle-card:hover {
        transform: none !important;
    }

    .vip-vehicle-card:hover .vip-vehicle-card__figure img,
    .vip-booking__vehicle-card:hover .vip-booking__vehicle-image img {
        transform: none !important;
    }

    .vip-skeleton {
        animation: none !important;
    }

    .vip-spinner {
        animation-duration: 1.5s !important;
    }
}

/* ==========================================================================
   HIGH CONTRAST MODE
   ========================================================================== */

@media (forced-colors: active) {
    .vip-vehicle-card,
    .vip-route-item,
    .vip-booking__step,
    .vip-booking__vehicle-card,
    .vip-booking__summary,
    .vip-booking__type-card {
        border: 2px solid CanvasText !important;
    }

    .vip-vehicle-card__cta,
    .vip-booking__confirm-btn,
    .vip-booking__btn--primary,
    .vip-route-item__book-btn {
        border: 2px solid ButtonText !important;
    }

    .vip-booking__progress-number {
        border: 2px solid CanvasText !important;
    }

    .vip-booking__progress-step--active .vip-booking__progress-number {
        border: 3px solid Highlight !important;
        background: Highlight !important;
        color: HighlightText !important;
    }

    .vip-spinner {
        border-color: CanvasText !important;
        border-top-color: Highlight !important;
    }
}

/* ==========================================================================
   FOCUS VISIBLE GLOBAL STYLES
   ========================================================================== */

.vip-vehicles *:focus-visible,
.vip-vehicle-filter *:focus-visible,
.vip-routes *:focus-visible,
.vip-booking *:focus-visible {
    outline: 2px solid var(--vip-accent);
    outline-offset: 2px;
}

.vip-vehicles input:focus-visible,
.vip-vehicles select:focus-visible,
.vip-vehicles textarea:focus-visible,
.vip-vehicle-filter input:focus-visible,
.vip-vehicle-filter select:focus-visible,
.vip-routes input:focus-visible,
.vip-routes select:focus-visible,
.vip-booking input:focus-visible,
.vip-booking select:focus-visible,
.vip-booking textarea:focus-visible {
    outline: none;
    border-color: var(--vip-accent);
    box-shadow: 0 0 0 3px var(--vip-accent-glow);
}

/* ==========================================================================
   CLASS NAME BRIDGE
   Maps HTML template class names to CSS styles where naming diverged.
   ========================================================================== */

/* --- Booking: Header --- */
.vip-booking__heading {
    font-family: "Poppins", var(--vip-font-body) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.02em;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    line-height: 1.3 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    text-transform: none !important;
    text-shadow: none !important;
}

.vip-booking__heading i {
    color: var(--vip-accent) !important;
    flex-shrink: 0;
}

.vip-booking__subheading {
    font-size: 0.9375rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    font-weight: 400 !important;
    text-align: center;
}

/* --- Booking: Transfer type cards — Premium Redesign --- */
.vip-booking__transfer-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vip-booking__type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 20px 24px;
    background: var(--vip-bg-card);
    border: 2px solid var(--vip-border);
    border-radius: var(--vip-radius-xl);
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        transform 0.25s ease;
    text-align: center;
    font-family: inherit;
    position: relative;
    overflow: visible;
}

/* Checkmark badge — hidden by default */
.vip-booking__type-card::after {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--vip-accent);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.vip-booking__type-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(201, 168, 76, 0.1);
    transform: translateY(-3px);
}

/* Active/selected */
.vip-booking__type-card:has(input:checked),
.vip-booking__type-card--active {
    border-color: var(--vip-accent);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 100%);
    box-shadow: 0 0 0 3px var(--vip-accent-glow), 0 8px 32px rgba(201, 168, 76, 0.12);
}

/* Badge visible when selected */
.vip-booking__type-card:has(input:checked)::after,
.vip-booking__type-card--active::after {
    opacity: 1;
    transform: scale(1);
}

/* Focus ring */
.vip-booking__type-card:focus-within {
    outline: 2px solid var(--vip-accent);
    outline-offset: 3px;
}

/* Icon pill container */
.vip-booking__type-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--vip-bg-light);
    border-radius: var(--vip-radius-pill);
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.vip-booking__type-icon i {
    font-size: 22px;
    line-height: 1;
    color: var(--vip-primary);
    transition: color 0.3s ease;
}

/* Arrow between icons */
.vip-booking__type-arrow {
    display: flex;
    align-items: center;
    color: var(--vip-text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.vip-booking__type-arrow i {
    font-size: 14px !important;
    line-height: 1;
}

.vip-booking__type-card:hover .vip-booking__type-arrow {
    transform: translateX(3px);
    color: var(--vip-accent);
}

/* Selected: icon pill gold tint */
.vip-booking__type-card:has(input:checked) .vip-booking__type-icon,
.vip-booking__type-card--active .vip-booking__type-icon {
    background: rgba(201, 168, 76, 0.1);
}

.vip-booking__type-card:has(input:checked) .vip-booking__type-icon i,
.vip-booking__type-card--active .vip-booking__type-icon i {
    color: var(--vip-accent);
}

.vip-booking__type-card:has(input:checked) .vip-booking__type-arrow,
.vip-booking__type-card--active .vip-booking__type-arrow {
    color: var(--vip-accent-dark);
}

/* Title */
.vip-booking__type-title {
    font-family: var(--vip-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--vip-text);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.vip-booking__type-card:has(input:checked) .vip-booking__type-title,
.vip-booking__type-card--active .vip-booking__type-title {
    color: var(--vip-accent-dark);
    font-weight: 700;
}

/* --- Booking: Route form layout --- */
.vip-booking__route-form {
    margin-top: 24px;
    animation: vipFadeInUp 0.35s ease forwards;
}

.vip-booking__form-row--locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
    margin-bottom: 20px;
}

/* --- Booking: Toggle switch (checkbox-based) --- */
.vip-booking__field--toggle {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    gap: 12px !important;
}

/* Hidden checkbox */
.vip-booking__toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Track — navy dark unchecked state */
.vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider {
    position: relative;
    display: block;
    width: 56px;
    height: 30px;
    background: var(--vip-primary);
    border-radius: 15px;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Track hover — unchecked */
.vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider:hover {
    background: #2d2d4e;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 0 3px rgba(26, 26, 46, 0.15);
}

/* Knob — spring-bounce animation */
.vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25),
                0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Knob hover — scale up */
.vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider:hover::before {
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3),
                0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Track — checked gold gradient */
.vip-booking__toggle input[type="checkbox"]:checked + .vip-booking__toggle-slider {
    background: linear-gradient(135deg, #c9a84c 0%, #d4b85c 50%, #c9a84c 100%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1),
                0 0 12px rgba(201, 168, 76, 0.3),
                0 0 0 1px rgba(201, 168, 76, 0.2);
}

/* Track — checked hover */
.vip-booking__toggle input[type="checkbox"]:checked + .vip-booking__toggle-slider:hover {
    background: linear-gradient(135deg, #d4b85c 0%, #c9a84c 50%, #d4b85c 100%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1),
                0 0 16px rgba(201, 168, 76, 0.4),
                0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* Knob — checked position (56 - 24 - 3 - 3 = 26px) */
.vip-booking__toggle input[type="checkbox"]:checked + .vip-booking__toggle-slider::before {
    transform: translateX(26px);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4),
                0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Focus-visible ring */
.vip-booking__toggle input[type="checkbox"]:focus-visible + .vip-booking__toggle-slider {
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.35);
    outline: none;
}

/* --- Booking: Counter input (number type) --- */
.vip-booking__counter input[type="number"] {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--vip-text);
    min-width: 48px;
    background: transparent;
    border: none;
    font-family: inherit;
    height: 100%;
    -moz-appearance: textfield;
}

.vip-booking__counter input[type="number"]::-webkit-outer-spin-button,
.vip-booking__counter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --- Booking: Counter small variant --- */
.vip-booking__counter--small {
    height: 40px;
    border-radius: var(--vip-radius);
}

.vip-booking__counter--small .vip-booking__counter-btn {
    width: 40px;
    font-size: 1rem;
}

.vip-booking__counter--small input[type="number"] {
    font-size: 0.875rem;
    min-width: 40px;
    flex: 1;
    text-align: center;
    font-weight: 700;
    color: var(--vip-text);
    background: transparent;
    border: none;
}

/* --- Booking: Field icon variant --- */
.vip-booking__field--icon {
    position: relative;
}

/* --- Booking: Field status (validation) --- */
.vip-booking__field-status {
    display: none;
    font-size: 0.75rem;
    margin-top: 2px;
}

.vip-booking__field--valid .vip-booking__field-status,
.vip-field--valid .vip-booking__field-status {
    display: block;
    color: var(--vip-success);
}

.vip-booking__field--invalid .vip-booking__field-status,
.vip-field--error .vip-booking__field-status {
    display: block;
    color: var(--vip-danger);
}

.vip-field--error input,
.vip-field--error select,
.vip-field--error textarea {
    border-color: var(--vip-danger) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.vip-field--valid input,
.vip-field--valid select {
    border-color: var(--vip-success) !important;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1) !important;
}

/* --- Booking: Details form --- */
.vip-booking__details-form {
    animation: vipFadeInUp 0.35s ease forwards;
}

/* --- Booking: Extras section --- */
.vip-booking__extras {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 24px 0;
    padding: 20px;
    background: var(--vip-bg-light, #f8fafc);
    border-radius: var(--vip-radius);
    border: 1px solid var(--vip-border-light);
}

.vip-booking__extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex: 1;
    min-width: 200px;
}

.vip-booking__extra-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vip-text);
}

.vip-booking__extra-label i {
    color: var(--vip-accent);
    flex-shrink: 0;
}

/* --- Booking: Character counter --- */
.vip-booking__char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: var(--vip-text-muted);
    margin-top: 4px;
}

/* --- Booking: Checkbox (custom) --- */
.vip-booking__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--vip-text-light);
    line-height: 1.5;
}

.vip-booking__checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vip-booking__checkbox-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--vip-border);
    border-radius: 6px;
    background: var(--vip-bg);
    transition: all var(--vip-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    position: relative;
    flex-shrink: 0;
}

.vip-booking__checkbox-mark::after {
    content: '';
    display: none;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) translate(-0.5px, -0.5px);
}

.vip-booking__checkbox input:checked + .vip-booking__checkbox-mark {
    background: var(--vip-accent);
    border-color: var(--vip-accent);
}

.vip-booking__checkbox input:checked + .vip-booking__checkbox-mark::after {
    display: block;
}

.vip-booking__checkbox input:focus-visible + .vip-booking__checkbox-mark {
    outline: 2px solid var(--vip-accent);
    outline-offset: 2px;
}

/* --- Booking: Confirm button (WhatsApp green gradient) --- */
.vip-booking__btn--confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-family: "Poppins", var(--vip-font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none !important;
    border-radius: var(--vip-radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    letter-spacing: -0.01em;
    padding: 0 32px;
    line-height: 1;
    flex: 1;
    min-width: 0;
}

.vip-booking__btn--confirm i {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.vip-booking__btn--confirm .fa-whatsapp {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    color: currentColor;
}

.vip-booking__btn--confirm:hover:not(:disabled) {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #2be06e 0%, #14a08e 100%);
}

.vip-booking__btn--confirm:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
}

.vip-booking__btn--confirm:disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #cccccc;
    color: #888888;
}

.vip-booking__btn--confirm:focus-visible {
    outline: 2px solid var(--vip-whatsapp);
    outline-offset: 2px;
}

/* --- Booking: Stacked actions (legacy, now uses row) --- */
.vip-booking__actions--stacked {
    flex-direction: row;
    gap: 16px;
}

/* --- Booking: Trust section --- */
.vip-booking__trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--vip-bg-light);
    border-radius: var(--vip-radius-lg);
    border: 1px solid var(--vip-border-light);
}

.vip-booking__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vip-text-light);
    font-size: 0.8125rem;
    font-weight: 600;
}

.vip-booking__trust-item i {
    font-size: 20px;
    line-height: 1;
    color: var(--vip-accent);
    flex-shrink: 0;
}

/* --- Booking: Vehicle check overlay --- */
.vip-booking__vehicle-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #c9a84c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--vip-transition);
    z-index: 2;
    color: #1a1a2e;
}

.vip-booking__vehicle-check i {
    font-size: 16px;
    line-height: 1;
}

.vip-booking__vehicle-card--selected .vip-booking__vehicle-check {
    opacity: 1;
}

/* --- Booking: Vehicle select label (button-style CTA) --- */
.vip-booking__vehicle-select-label {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: center;
    background: transparent;
    border: 2px solid var(--vip-accent);
    border-radius: var(--vip-radius);
    color: var(--vip-accent);
    font-family: var(--vip-font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 14px;
    letter-spacing: 0.02em;
    line-height: 1;
}

.vip-booking__vehicle-card:hover .vip-booking__vehicle-select-label {
    background: var(--vip-accent);
    color: var(--vip-primary);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
    transform: translateY(-1px);
}

.vip-booking__vehicle-card--selected .vip-booking__vehicle-select-label {
    background: var(--vip-accent);
    color: var(--vip-primary);
    border-color: var(--vip-accent);
    font-weight: 700;
}

/* --- Booking: Vehicle tags (feature pills) --- */
.vip-booking__vehicle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.vip-booking__vehicle-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--vip-bg-dark);
    border-radius: var(--vip-radius-pill);
    font-size: 0.6875rem;
    color: var(--vip-text-light);
    font-weight: 500;
    line-height: 1.4;
}

/* --- Booking: Vehicle image wrap --- */
.vip-booking__vehicle-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--vip-bg-dark);
}

.vip-booking__vehicle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vip-booking__vehicle-card:hover .vip-booking__vehicle-img-wrap img {
    transform: scale(1.08);
}

/* --- Booking: Vehicle label --- */
.vip-booking__vehicle-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--vip-accent);
    margin-top: auto;
    padding-top: 8px;
}

/* --- Booking: Summary rows (JS generated) --- */
.vip-booking__summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vip-booking__summary-price {
    font-family: "Poppins", var(--vip-font-body);
    font-size: 1.375rem !important;
    font-weight: 800 !important;
    color: #c9a84c !important;
}

/* --- Vehicle Card: Specs / Tags (HTML uses __specs/__spec, CSS has __meta/__features) --- */
.vip-vehicle-card__specs {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-top: 1px solid var(--vip-border-light);
    border-bottom: 1px solid var(--vip-border-light);
}

.vip-vehicle-card__spec {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--vip-text-light);
    font-size: 0.8125rem;
}

.vip-vehicle-card__spec i {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    color: var(--vip-accent);
}

.vip-vehicle-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vip-vehicle-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--vip-bg-dark);
    border-radius: var(--vip-radius-pill);
    font-size: 0.75rem;
    color: var(--vip-text-light);
    font-weight: 500;
    line-height: 1.4;
}

.vip-vehicle-card__price-from {
    font-size: 0.8125rem;
    color: var(--vip-text-muted);
    margin-inline-end: 4px;
}

.vip-vehicle-card__price-value {
    font-family: "Poppins", var(--vip-font-body);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--vip-accent);
    letter-spacing: -0.02em;
}

.vip-vehicle-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Vehicle Filter: Redesigned (bridge — HTML uses __pills/__pill/__select) --- */

/* Filter bar: gold top accent, refined card */
.vip-vehicle-filter__bar {
    background: linear-gradient(to bottom, rgba(26, 39, 68, 0.02), transparent);
    border: 1px solid var(--vip-border);
    border-top: 3px solid var(--vip-accent);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Controls: transparent inside bar */
.vip-vehicle-filter__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    background: transparent;
}

/* Pills container */
.vip-vehicle-filter__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Pill buttons: larger touch targets, full pill shape */
.vip-vehicle-filter__pill {
    min-height: 42px;
    padding: 10px 22px;
    border: 2px solid rgba(26, 26, 46, 0.08);
    border-radius: 24px;
    background: var(--vip-bg);
    color: var(--vip-text);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--vip-font-body);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    cursor: pointer;
}

.vip-vehicle-filter__pill:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.05);
    color: var(--vip-accent);
    transform: translateY(-1px);
}

/* Pill active: gold gradient */
.vip-vehicle-filter__pill--active {
    background: linear-gradient(135deg, #c9a84c, #d4b85c);
    border-color: transparent;
    color: #1a1a2e;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
    transform: translateY(-1px);
}

.vip-vehicle-filter__pill--active:hover {
    background: linear-gradient(135deg, #d4b85c, #c9a84c);
    border-color: transparent;
    color: #1a1a2e;
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.35);
}

/* Select: refined, matching pill height */
.vip-vehicle-filter__select {
    height: 42px;
    padding: 0 44px 0 16px;
    border: 2px solid rgba(26, 26, 46, 0.08);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vip-text);
    background-color: var(--vip-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--vip-font-body);
    min-width: 160px;
    -webkit-appearance: none;
    appearance: none;
}

.vip-vehicle-filter__select:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.vip-vehicle-filter__select:focus {
    outline: none;
    border-color: var(--vip-accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* Mobile toggle: larger touch target */
.vip-vehicle-filter__mobile-toggle {
    min-height: 48px;
    border: 2px solid rgba(26, 26, 46, 0.08);
    border-radius: 14px;
    background: var(--vip-bg-card);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--vip-text);
    gap: 10px;
    transition: all 0.25s ease;
}

.vip-vehicle-filter__mobile-toggle:hover {
    border-color: var(--vip-accent);
    background: rgba(201, 168, 76, 0.04);
}

.vip-vehicle-filter__mobile-toggle:active {
    transform: scale(0.98);
}

.vip-vehicle-filter__mobile-toggle[aria-expanded="true"] {
    border-color: var(--vip-accent);
    background: rgba(201, 168, 76, 0.06);
}

.vip-vehicle-filter__mobile-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
    transition: transform 0.25s ease;
}

/* Clear button: dashed ghost style */
.vip-vehicle-filter__clear {
    min-height: 42px;
    padding: 10px 20px;
    border: 2px dashed rgba(26, 26, 46, 0.12);
    border-radius: 12px;
    color: var(--vip-text-muted);
    font-weight: 600;
    background: transparent;
}

.vip-vehicle-filter__clear:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.04);
}

/* Results count: badge style */
.vip-vehicle-filter__count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(26, 26, 46, 0.04);
    border-radius: var(--vip-radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Chips: refined */
.vip-vehicle-filter__chips {
    gap: 10px;
    margin-bottom: 20px;
}

.vip-vehicle-filter__chip {
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.8125rem;
}

/* Grid container */
.vip-vehicle-filter__grid {
    /* Inherits from .vip-vehicles__grid */
}

/* Results header */
.vip-vehicle-filter__results-header {
    margin-bottom: 16px;
}

/* Controls open (mobile) */
.vip-vehicle-filter__controls--open {
    display: flex !important;
}

/* --- Routes: Search bar --- */
/* --- Routes: Search Bar (redesigned) --- */
.vip-routes__search-bar {
    position: relative;
    margin-bottom: 28px;
    background: var(--vip-bg-card);
    border: 1px solid var(--vip-border);
    border-radius: var(--vip-radius-lg);
    padding: 4px;
    box-shadow: var(--vip-shadow-sm);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.vip-routes__search-bar:focus-within {
    border-color: var(--vip-accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12), var(--vip-shadow);
}

.vip-routes__search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vip-text-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    z-index: 1;
}

.vip-routes__search-bar:focus-within .vip-routes__search-icon {
    color: var(--vip-accent);
}

.vip-routes__search {
    width: 100%;
    height: 52px;
    padding: 0 20px 0 52px;
    border: none;
    border-radius: var(--vip-radius);
    font-size: 1rem;
    color: var(--vip-text);
    background: transparent;
    transition: none;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.vip-routes__search:hover {
    border-color: transparent;
}

.vip-routes__search:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

.vip-routes__search::placeholder {
    color: var(--vip-text-muted);
    font-weight: 400;
}

/* --- Routes: Location spans (redesigned) --- */
.vip-route-item__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--vip-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--vip-text);
    letter-spacing: -0.01em;
}

.vip-route-item__location i {
    flex-shrink: 0;
    color: var(--vip-accent);
    font-size: 16px;
    line-height: 1;
}

/* --- Routes: Table (redesigned) --- */
.vip-route-item__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.vip-route-item__table thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
    color: #fff;
}

.vip-route-item__table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
}

.vip-route-item__table th:first-child {
    padding-left: 24px;
}

.vip-route-item__table th:last-child {
    text-align: right;
    padding-right: 24px;
}

.vip-route-item__table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--vip-border-light);
    font-family: inherit;
    vertical-align: middle;
}

.vip-route-item__table td:first-child {
    padding-left: 24px;
}

.vip-route-item__table td:last-child {
    text-align: right;
    padding-right: 24px;
}

.vip-route-item__table tbody tr:last-child td {
    border-bottom: none;
}

.vip-route-item__table tbody tr {
    transition: background-color 0.2s ease;
}

.vip-route-item__table tbody tr:nth-child(even) {
    background: rgba(249, 249, 251, 0.5);
}

.vip-route-item__table tbody tr:hover {
    background: rgba(201, 168, 76, 0.04);
}

/* Vehicle name styling */
.vip-route-item__table td strong {
    font-weight: 700;
    color: var(--vip-text);
    font-size: 0.9375rem;
}

/* --- Routes: Type badge (redesigned) --- */
.vip-route-item__type-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.06), rgba(26, 26, 46, 0.03));
    color: var(--vip-primary);
    border: 1px solid rgba(26, 26, 46, 0.1);
    border-radius: var(--vip-radius-pill);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Routes: Price cell (redesigned — more prominent) --- */
.vip-route-item__price-cell {
    white-space: nowrap;
}

.vip-route-item__price-cell small {
    font-size: 0.8125rem;
    color: var(--vip-text-muted);
    margin-right: 2px;
    font-weight: 400;
}

.vip-route-item__price-cell strong {
    font-family: var(--vip-font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--vip-accent);
    letter-spacing: -0.02em;
}

/* --- Routes: Book button (redesigned — larger, more tappable) --- */
.vip-route-item__book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #c9a84c 0%, #d4b85c 50%, #c9a84c 100%);
    color: #1a1a2e;
    border-radius: var(--vip-radius-pill);
    font-family: var(--vip-font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.02em;
    min-height: 38px;
}

.vip-route-item__book-btn:hover {
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
    color: #1a1a2e;
    text-decoration: none;
}

.vip-route-item__book-btn:active {
    transform: translateY(0) scale(0.98);
}

.vip-route-item__book-btn i {
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vip-route-item__book-btn:hover i {
    transform: translateX(2px);
}

/* --- Routes: No results --- */
.vip-routes__no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--vip-text-muted);
}

.vip-routes__no-results p {
    margin: 0;
    font-size: 0.9375rem;
}

/* --- Routes: Empty state --- */
.vip-routes__empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--vip-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.vip-routes__empty i {
    opacity: 0.35;
}

.vip-routes__empty p {
    margin: 0;
    font-size: 0.9375rem;
}

/* --- Vehicles: Toolbar --- */
.vip-vehicles__toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.vip-vehicles__view-toggle {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--vip-border);
    border-radius: 8px;
    overflow: hidden;
}

.vip-vehicles__view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    background: var(--vip-bg);
    border: none;
    cursor: pointer;
    color: var(--vip-text-muted);
    transition: all var(--vip-transition);
    padding: 0;
}

.vip-vehicles__view-btn:hover {
    color: var(--vip-text);
    background: var(--vip-bg-light, #f8fafc);
}

.vip-vehicles__view-btn--active,
.vip-vehicles__view-btn[aria-pressed="true"] {
    background: var(--vip-primary);
    color: #fff;
}

.vip-vehicles__view-btn:focus-visible {
    outline: 2px solid var(--vip-accent);
    outline-offset: -2px;
}

/* --- Vehicles: Empty state --- */
.vip-vehicles__empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--vip-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.vip-vehicles__empty i {
    opacity: 0.35;
}

.vip-vehicles__empty p {
    margin: 0;
    font-size: 0.9375rem;
}

/* --- Vehicles: List view --- */
.vip-vehicles__grid--list {
    grid-template-columns: 1fr !important;
}

.vip-vehicles__grid--list .vip-vehicle-card {
    flex-direction: row;
    border-radius: var(--vip-radius);
}

.vip-vehicles__grid--list .vip-vehicle-card__figure {
    width: 260px;
    min-width: 260px;
    aspect-ratio: auto;
}

.vip-vehicles__grid--list .vip-vehicle-card__body {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

/* --- Scroll animation visible state (JS toggles) --- */
.vip-fade-in-up--visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* --- Required asterisk --- */
.vip-required {
    color: var(--vip-danger);
    font-weight: 400;
}

/* --- Screen reader only --- */
.vip-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --- Bridge responsive overrides --- */
@media (max-width: 768px) {
    .vip-booking__form-row--locations {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .vip-booking__trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .vip-booking__extras {
        flex-direction: column;
    }

    /* Transfer type cards: single column, horizontal */
    .vip-booking__transfer-types {
        grid-template-columns: 1fr;
        gap: 14px;
        overflow: hidden;
        width: 100%;
    }

    .vip-booking__type-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 18px;
        padding: 20px 24px;
        min-height: 72px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        border-radius: var(--vip-radius-lg);
    }

    .vip-booking__type-card:last-child {
        grid-column: auto;
    }

    /* Badge reposition for horizontal */
    .vip-booking__type-card::after {
        top: 50%;
        right: 16px;
        transform: translateY(-50%) scale(0.5);
    }

    .vip-booking__type-card:has(input:checked)::after,
    .vip-booking__type-card--active::after {
        transform: translateY(-50%) scale(1);
    }

    /* Icon pill compact */
    .vip-booking__type-icon {
        padding: 12px 18px;
        gap: 8px;
        flex-shrink: 0;
        overflow: visible;
    }

    .vip-booking__type-icon i {
        font-size: 22px;
        line-height: 1;
    }

    .vip-booking__type-title {
        font-size: 1rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hover disabled on touch */
    .vip-booking__type-card:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--vip-border);
    }

    .vip-booking__type-card:has(input:checked):hover,
    .vip-booking__type-card--active:hover {
        border-color: var(--vip-accent);
        box-shadow: 0 0 0 3px var(--vip-accent-glow), 0 8px 32px rgba(201, 168, 76, 0.12);
    }

    /* Tap feedback */
    .vip-booking__type-card:active {
        transform: scale(0.98);
        border-color: var(--vip-accent);
        background: rgba(201, 168, 76, 0.04);
        transition-duration: 0.1s;
    }

    .vip-booking__type-card:focus-within {
        outline: 2px solid var(--vip-accent);
        outline-offset: 2px;
        box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
    }

    .vip-booking__heading {
        font-size: 1.25rem !important;
    }

    .vip-booking__step {
        padding: 24px 20px;
    }

    .vip-booking__counter-btn {
        width: 48px;
    }

    .vip-booking__form-grid {
        grid-template-columns: 1fr;
    }

    .vip-vehicles__grid--list .vip-vehicle-card {
        flex-direction: column;
    }

    .vip-vehicles__grid--list .vip-vehicle-card__figure {
        width: 100%;
        min-width: auto;
        aspect-ratio: 16 / 10;
    }

    .vip-vehicles__grid--list .vip-vehicle-card__body {
        flex-direction: column;
        align-items: stretch;
    }

    /* === Routes: 768px responsive === */

    /* Search bar: tighter */
    .vip-routes__search-bar {
        padding: 3px;
    }

    .vip-routes__search {
        height: 48px;
        font-size: 0.9375rem;
        padding: 0 16px 0 48px;
    }

    .vip-routes__search-icon {
        left: 14px;
    }

    /* Route items: tighter header */
    .vip-route-item__header {
        padding: 16px 18px;
        gap: 12px;
    }

    /* Route name: stack origin → dest on separate lines */
    .vip-route-item__route {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .vip-route-item__arrow {
        transform: rotate(90deg);
        margin: -2px 0 -2px 10px;
    }

    .vip-route-item__arrow i {
        font-size: 16px;
        line-height: 1;
    }

    .vip-route-item__location {
        font-size: 0.9375rem;
    }

    /* Details row: wrap tighter */
    .vip-route-item__details {
        gap: 10px;
    }

    /* Table → stacked card layout on mobile */
    .vip-route-item__table thead {
        display: none;
    }

    .vip-route-item__table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 18px 20px;
        gap: 0;
        border-radius: 14px;
        background: var(--vip-bg-card);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        margin-bottom: 12px;
        border-bottom: none;
    }

    .vip-route-item__table tbody tr:last-child {
        margin-bottom: 0;
    }

    .vip-route-item__table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: none;
        text-align: right;
        font-size: 0.8125rem;
    }

    /* Vehicle name as card title — no data-label, prominent styling */
    .vip-route-item__table td:first-child {
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 10px;
        margin-bottom: 6px;
        border-bottom: 1px solid var(--vip-border-light);
        justify-content: flex-start;
    }

    .vip-route-item__table td:first-child::before {
        display: none;
    }

    .vip-route-item__table td:first-child strong {
        font-size: 1rem;
        font-weight: 700;
        color: var(--vip-primary);
    }

    /* Info rows (Tip, Kapasite) — subtle labels */
    .vip-route-item__table td:nth-child(2),
    .vip-route-item__table td:nth-child(3) {
        font-size: 0.8125rem;
    }

    /* Price row — visually prominent */
    .vip-route-item__table td:nth-child(4) {
        padding-top: 10px;
        margin-top: 4px;
        border-top: 1px dashed var(--vip-border-light);
    }

    .vip-route-item__table td:nth-child(4) .vip-route-item__price-cell strong,
    .vip-route-item__table .vip-route-item__price-cell strong {
        font-size: 1.25rem;
        color: var(--vip-accent);
    }

    /* Book button — full-width, separated */
    .vip-route-item__table td:last-child {
        padding-right: 0;
        padding-top: 12px;
        padding-bottom: 0;
        margin-top: 4px;
        justify-content: flex-start;
    }

    /* Data label pseudo-element for stacked cards */
    .vip-route-item__table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.75rem;
        color: var(--vip-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: left;
        flex-shrink: 0;
    }

    .vip-route-item__table td[data-label=""]::before {
        display: none;
    }

    /* Book button full-width on mobile */
    .vip-route-item__book-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        min-height: 44px;
        font-size: 0.875rem;
    }

    /* Hover → active on touch */
    .vip-route-item:hover {
        box-shadow: var(--vip-shadow-sm);
        border-left-color: transparent;
    }

    .vip-route-item:active {
        border-left-color: var(--vip-accent);
    }

    .vip-route-item__header:hover {
        background: transparent;
    }

    .vip-route-item__header:active {
        background: var(--vip-bg-light);
    }

    .vip-route-item__book-btn:hover {
        transform: none;
        box-shadow: none;
    }

    .vip-route-item__book-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
    }

    /* Container breathing room */
    .vip-booking {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Step title: tighter on tablet */
    .vip-booking__step-title {
        font-size: 1.125rem !important;
        margin: 0 0 20px 0 !important;
        padding-left: 12px;
    }

    .vip-booking__step-desc {
        margin-bottom: 20px;
    }

    /* Actions gap tighter */
    .vip-booking__actions {
        gap: 12px;
    }

    /* Vehicle grid: 2 -> 1 column on tablet */
    .vip-booking__vehicles-grid {
        grid-template-columns: 1fr;
    }

    /* === Vehicle Filter: responsive — 768px === */
    .vip-vehicle-filter__bar {
        padding: 20px;
    }

    .vip-vehicle-filter__controls {
        flex-direction: column;
        gap: 16px;
    }

    .vip-vehicle-filter__mobile-toggle {
        display: flex;
    }

    .vip-vehicle-filter__pills {
        gap: 8px;
    }

    .vip-vehicle-filter__pill {
        min-height: 40px;
        padding: 8px 18px;
        font-size: 0.8125rem;
    }

    .vip-vehicle-filter__select {
        width: 100%;
        min-width: unset;
    }

    .vip-vehicle-filter__group {
        width: 100%;
    }

    .vip-vehicle-filter__clear {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   RESPONSIVE — 600px (Small Tablets / Large Phones)
   ========================================================================== */

@media (max-width: 600px) {
    /* Transfer types: tighter spacing */
    .vip-booking__transfer-types {
        gap: 12px;
    }

    .vip-booking__type-card {
        padding: 18px 20px;
        gap: 14px;
        min-height: 64px;
    }

    .vip-booking__type-icon {
        padding: 10px 16px;
        gap: 7px;
    }

    .vip-booking__type-icon i {
        font-size: 20px;
        line-height: 1;
    }

    .vip-booking__type-title {
        font-size: 0.9375rem;
    }

    /* Step padding reduction */
    .vip-booking__step {
        padding: 22px 18px;
    }

    /* Step title tighter */
    .vip-booking__step-title {
        font-size: 1.0625rem !important;
        padding-bottom: 12px;
        margin-bottom: 20px !important;
    }

    /* Header tighter */
    .vip-booking__header {
        padding: 24px 20px !important;
    }

    .vip-booking__heading {
        font-size: 1.1875rem !important;
    }

    /* Summary price smaller */
    .vip-booking__summary-price {
        font-size: 1.25rem !important;
    }

    /* Actions: stack vertically on all steps */
    .vip-booking__actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .vip-booking__actions .vip-booking__btn {
        width: 100%;
        justify-content: center;
    }

    /* Extras section tighter */
    .vip-booking__extras {
        padding: 16px;
        gap: 16px;
    }

    /* Trust badges tighter */
    .vip-booking__trust {
        padding: 16px 20px;
        gap: 20px;
    }

    /* Progress bar: reduce margin */
    .vip-booking__progress {
        margin-bottom: 24px;
    }

    /* Form label spacing */
    .vip-booking__field label {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    /* Type cards: compact touch-optimized */
    .vip-booking__type-card {
        grid-column: auto;
        padding: 16px 18px;
        gap: 12px;
        min-height: 60px;
        border-radius: var(--vip-radius-lg);
    }

    .vip-booking__type-card::after {
        right: 12px;
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .vip-booking__type-icon {
        padding: 10px 14px;
        gap: 6px;
        flex-shrink: 0;
    }

    .vip-booking__type-icon i {
        font-size: 18px;
        line-height: 1;
    }

    .vip-booking__type-arrow i {
        font-size: 12px !important;
    }

    .vip-booking__type-title {
        font-size: 0.9375rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .vip-booking__transfer-types {
        gap: 10px;
    }

    .vip-booking__summary-row {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        padding: 12px 12px;
    }

    .vip-booking__summary-value {
        text-align: left;
    }

    .vip-booking__heading {
        font-size: 1.125rem !important;
        gap: 8px;
    }

    .vip-booking__header {
        padding: 20px 16px !important;
    }

    .vip-booking__step {
        padding: 20px 16px;
    }

    .vip-booking__progress {
        padding: 16px 8px 0;
    }

    .vip-booking__progress-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .vip-booking__progress-line {
        margin: 0 6px;
    }

    .vip-booking__trust {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .vip-booking__vehicles-grid {
        grid-template-columns: 1fr;
    }

    .vip-booking__counter-btn {
        width: 44px;
    }

    .vip-booking__btn {
        padding: 12px 20px;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .vip-booking__btn--primary {
        padding: 14px 24px;
        min-height: 48px;
    }

    .vip-booking__btn--confirm {
        height: 48px;
        font-size: 0.9375rem;
        padding: 0 20px;
    }

    /* Step 4 actions: stack on mobile */
    .vip-booking__step[data-step="4"] .vip-booking__actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .vip-booking__step[data-step="4"] .vip-booking__btn--confirm {
        width: 100%;
    }

    .vip-booking__step[data-step="4"] .vip-booking__btn--secondary {
        width: 100%;
        justify-content: center;
    }

    /* Progress label: hide on mobile, show only numbers */
    .vip-booking__progress-label {
        display: none;
    }

    /* Container side padding */
    .vip-booking {
        padding-left: 8px;
        padding-right: 8px;
    }

    /* Step title: tighter on mobile */
    .vip-booking__step-title {
        font-size: 1rem !important;
        margin: 0 0 18px 0 !important;
        padding-left: 10px;
        border-left-width: 3px !important;
        padding-bottom: 12px;
    }

    .vip-booking__step-desc {
        margin: -8px 0 18px 10px;
        padding-left: 12px;
        font-size: 0.8125rem;
    }

    /* Summary price smaller */
    .vip-booking__summary-price {
        font-size: 1.125rem !important;
    }

    /* Extras min-width reset */
    .vip-booking__extra-item {
        min-width: unset;
    }

    /* === Routes: 480px responsive === */

    /* Search bar compact */
    .vip-routes__search-bar {
        margin-bottom: 20px;
        border-radius: var(--vip-radius);
    }

    .vip-routes__search {
        height: 44px;
        font-size: 0.875rem;
        padding-left: 44px;
    }

    .vip-routes__search-icon {
        left: 12px;
    }

    .vip-routes__search-icon i {
        font-size: 16px;
        line-height: 1;
    }

    /* Route list tighter gap */
    .vip-routes__list {
        gap: 10px;
    }

    /* Route item header: very compact */
    .vip-route-item__header {
        padding: 14px 14px;
        gap: 10px;
    }

    .vip-route-item__location {
        font-size: 0.875rem;
    }

    .vip-route-item__location i {
        font-size: 14px;
        line-height: 1;
    }

    /* Details smaller */
    .vip-route-item__details {
        gap: 8px;
    }

    .vip-route-item__detail {
        font-size: 0.75rem;
    }

    .vip-route-item__detail i {
        font-size: 12px;
        line-height: 1;
    }

    /* Table cards tighter */
    .vip-route-item__table tbody tr {
        padding: 14px 14px;
    }

    .vip-route-item__table td {
        padding: 6px 0;
        font-size: 0.8125rem;
    }

    .vip-route-item__table td::before {
        font-size: 0.6875rem;
    }

    /* Price cell */
    .vip-route-item__price-cell strong {
        font-size: 1rem;
    }

    /* Type badge */
    .vip-route-item__type-badge {
        padding: 3px 10px;
        font-size: 0.625rem;
    }

    /* Book button */
    .vip-route-item__book-btn {
        padding: 11px 16px;
        font-size: 0.8125rem;
        min-height: 42px;
    }

    /* Toggle icon smaller */
    .vip-route-item__toggle-icon {
        width: 20px;
        height: 20px;
    }

    /* Empty & no-results */
    .vip-routes__empty {
        padding: 48px 16px;
    }

    .vip-routes__no-results {
        padding: 36px 16px;
    }

    /* Route card enhancements — 480px */
    .vip-route-item__table tbody tr {
        padding: 14px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .vip-route-item__table td:first-child {
        font-size: 0.9375rem;
        padding-bottom: 8px;
        margin-bottom: 4px;
    }

    .vip-route-item__table td:nth-child(4) {
        padding-top: 8px;
    }

    .vip-route-item__price-cell strong {
        font-size: 1.125rem;
    }

    /* === Vehicle Filter: compact — 480px === */
    .vip-vehicle-filter__bar {
        padding: 16px;
        border-radius: 12px;
    }

    .vip-vehicle-filter__pill {
        min-height: 38px;
        padding: 7px 14px;
        font-size: 0.8125rem;
        border-radius: 20px;
    }

    .vip-vehicle-filter__select {
        height: 40px;
        border-radius: 10px;
        font-size: 0.8125rem;
    }

    .vip-vehicle-filter__mobile-toggle {
        min-height: 44px;
        font-size: 0.875rem;
        border-radius: 12px;
    }

    .vip-vehicle-filter__label {
        font-size: 0.65rem;
    }

    .vip-vehicle-filter__chip {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .vip-vehicle-filter__count {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    /* Toggle slider: 56x30 -> 50x28 on mobile */
    .vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider {
        width: 50px;
        height: 28px;
        border-radius: 14px;
    }

    .vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider::before {
        width: 22px;
        height: 22px;
    }

    .vip-booking__toggle input[type="checkbox"]:checked + .vip-booking__toggle-slider::before {
        transform: translateX(22px);
    }
}

/* ==========================================================================
   RESPONSIVE — 360px (Ultra-Small Screens)
   ========================================================================== */

@media (max-width: 360px) {
    /* Header: minimal padding */
    .vip-booking__header {
        padding: 16px 12px !important;
    }

    .vip-booking__heading {
        font-size: 1rem !important;
        gap: 6px;
    }

    .vip-booking__subheading,
    .vip-booking__header-subtitle {
        font-size: 0.8125rem !important;
    }

    /* Progress bar: smaller circles */
    .vip-booking__progress-number {
        width: 28px;
        height: 28px;
        font-size: 0.6875rem;
    }

    .vip-booking__progress-line {
        margin: 0 4px;
    }

    .vip-booking__progress {
        padding: 12px 4px 0;
    }

    /* Step: minimal padding */
    .vip-booking__step {
        padding: 16px 12px;
    }

    /* Step title */
    .vip-booking__step-title {
        font-size: 0.9375rem !important;
        margin: 0 0 14px 0 !important;
        padding-left: 8px;
        padding-bottom: 10px;
    }

    .vip-booking__step-desc {
        margin: -6px 0 14px 8px;
        padding-left: 10px;
        font-size: 0.75rem;
    }

    /* Buttons */
    .vip-booking__btn {
        padding: 10px 16px;
        font-size: 0.8125rem;
        min-height: 42px;
    }

    .vip-booking__btn--primary {
        padding: 12px 20px;
        min-height: 44px;
    }

    .vip-booking__btn--confirm {
        height: 44px;
        font-size: 0.875rem;
        padding: 0 16px;
    }

    /* Counter buttons */
    .vip-booking__counter-btn {
        width: 40px;
    }

    /* Summary */
    .vip-booking__summary {
        padding: 14px;
    }

    .vip-booking__summary-row {
        padding: 10px;
        font-size: 0.8125rem;
    }

    .vip-booking__summary-price {
        font-size: 1rem !important;
    }

    /* Trust badges */
    .vip-booking__trust {
        padding: 12px;
        gap: 10px;
    }

    .vip-booking__trust-item {
        font-size: 0.75rem;
        gap: 6px;
    }

    /* Toggle: smallest size */
    .vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider {
        width: 46px;
        height: 26px;
        border-radius: 13px;
    }

    .vip-booking__toggle input[type="checkbox"] + .vip-booking__toggle-slider::before {
        width: 20px;
        height: 20px;
    }

    .vip-booking__toggle input[type="checkbox"]:checked + .vip-booking__toggle-slider::before {
        transform: translateX(20px);
    }

    /* Container: minimal side padding */
    .vip-booking {
        padding-left: 4px;
        padding-right: 4px;
    }

    /* Extras */
    .vip-booking__extras {
        padding: 12px;
        gap: 12px;
    }

    /* Form fields */
    .vip-booking__field textarea {
        font-size: 0.875rem;
    }

    /* Transfer type cards: ultra-compact */
    .vip-booking__transfer-types {
        gap: 8px;
    }

    .vip-booking__type-card {
        padding: 14px 14px;
        gap: 10px;
        min-height: 54px;
        border-radius: 10px;
    }

    .vip-booking__type-card::after {
        right: 10px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .vip-booking__type-icon {
        padding: 8px 12px;
        gap: 5px;
        border-radius: 50px;
    }

    .vip-booking__type-icon i {
        font-size: 16px;
        line-height: 1;
    }

    .vip-booking__type-arrow i {
        font-size: 10px !important;
    }

    .vip-booking__type-title {
        font-size: 0.875rem;
    }

    /* === Routes: 360px responsive === */
    .vip-routes__search-bar {
        padding: 2px;
        margin-bottom: 16px;
    }

    .vip-routes__search {
        height: 42px;
        font-size: 0.8125rem;
        padding-left: 40px;
    }

    .vip-route-item__header {
        padding: 12px 12px;
        gap: 8px;
    }

    .vip-route-item__location {
        font-size: 0.8125rem;
        gap: 4px;
    }

    .vip-route-item__location i {
        font-size: 12px;
        line-height: 1;
    }

    .vip-route-item__detail {
        font-size: 0.6875rem;
    }

    .vip-route-item__table tbody tr {
        padding: 12px 12px;
        margin-bottom: 8px;
    }

    .vip-route-item__table td {
        font-size: 0.75rem;
    }

    /* Route card: vehicle name title - 360px */
    .vip-route-item__table td:first-child {
        font-size: 0.875rem;
        padding-bottom: 6px;
    }

    .vip-route-item__price-cell strong {
        font-size: 1rem;
    }

    .vip-route-item__book-btn {
        padding: 10px 14px;
        font-size: 0.75rem;
        min-height: 40px;
    }

    .vip-routes__list {
        gap: 8px;
    }

    /* === Vehicle Filter: ultra-compact — 360px === */
    .vip-vehicle-filter__bar {
        padding: 12px;
        border-radius: 10px;
        border-top-width: 2px;
    }

    .vip-vehicle-filter__pill {
        min-height: 36px;
        padding: 6px 12px;
        font-size: 0.75rem;
        border-radius: 18px;
        border-width: 1.5px;
    }

    .vip-vehicle-filter__select {
        height: 38px;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    .vip-vehicle-filter__mobile-toggle {
        min-height: 42px;
        font-size: 0.8125rem;
        border-radius: 10px;
    }

    .vip-vehicle-filter__clear {
        min-height: 38px;
        font-size: 0.75rem;
    }

    .vip-vehicle-filter__chips {
        gap: 6px;
    }
}
