/* ============================================= */
/* ATAV Vehicle Detail Page — Stylesheet         */
/* vp- prefix for all classes                    */
/* ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1e2a40;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- PROTOTYPE BANNER ---- */
.proto-banner {
    background: #ff6b00;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10000;
    position: relative;
}

/* ---- CONTAINER ---- */
.vp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================= */
/* HEADER                                        */
/* ============================================= */
.vp-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.vp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
}

.vp-nav-logo img { height: 36px; width: auto; }

.vp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.vp-nav-links > li > a {
    color: #1e2a40;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.vp-nav-links > li > a:hover {
    background: rgba(214,0,0,0.06);
    color: #D60000;
}

.vp-nav-book {
    background: #D60000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: background 0.2s;
}
.vp-nav-book:hover { background: #b30000; }

.vp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.vp-hamburger span {
    width: 24px;
    height: 2px;
    background: #1e2a40;
    border-radius: 2px;
    transition: transform 0.3s;
}

/* Mobile Menu */
.vp-mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    padding: 80px 30px 30px;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.vp-mobile-menu.open { right: 0; }

.vp-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1e2a40;
}

.vp-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.vp-mobile-nav a {
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e2a40;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.vp-mobile-nav a:hover { color: #D60000; }

.vp-mobile-book {
    display: block;
    text-align: center;
    margin-top: 24px;
    background: #D60000;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
}

/* ============================================= */
/* HERO                                          */
/* ============================================= */
.vp-hero {
    background: linear-gradient(135deg, #1e2a40 0%, #2d426c 50%, #3b5998 100%);
    text-align: center;
    padding: 80px 20px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.vp-hero-badge {
    display: inline-block;
    background: #D60000;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.vp-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.vp-hero-red { color: #D60000; }

.vp-hero-model {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.vp-hero-image {
    max-width: 500px;
    margin: 0 auto 30px;
}

.vp-hero-specs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.vp-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #fff;
}
.vp-spec svg {
    width: 22px;
    height: 22px;
    stroke: #D60000;
}

.vp-hero-price-box {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 20px 40px;
    margin-bottom: 24px;
}

.vp-hero-price-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #D60000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vp-hero-price-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.vp-hero-cta {
    display: inline-block;
    background: #D60000;
    color: #fff;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
}
.vp-hero-cta:hover {
    background: #b30000;
    transform: translateY(-2px);
}

/* ============================================= */
/* FEATURES                                      */
/* ============================================= */
.vp-features {
    padding: 60px 0;
    background: #fff;
}

.vp-features-desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 36px;
    text-align: center;
}

.vp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.vp-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 10px;
}
.vp-feature-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.vp-feature-item span { font-size: 0.92rem; font-weight: 500; }

/* ============================================= */
/* WIZARD SECTION                                */
/* ============================================= */
.vp-wizard-section {
    background: linear-gradient(135deg, #1e2a40 0%, #2d426c 50%, #3b5998 100%);
    padding: 80px 0 100px;
}

.vp-section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

/* Progress Bar */
.vp-progress {
    max-width: 500px;
    margin: 0 auto 40px;
}

.vp-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vp-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.vp-step-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    transition: color 0.3s;
}

.vp-progress-step.active .vp-step-num {
    background: #D60000;
    border-color: #D60000;
    color: #fff;
}
.vp-progress-step.active .vp-step-label { color: #fff; }

.vp-progress-step.done .vp-step-num {
    background: #00b67a;
    border-color: #00b67a;
    color: #fff;
}
.vp-progress-step.done .vp-step-label { color: rgba(255,255,255,0.7); }

.vp-progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin: 0 8px;
    margin-bottom: 24px;
    position: relative;
}

.vp-progress-line-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0;
    background: #00b67a;
    transition: width 0.4s;
}

/* Step Panels */
.vp-step-panel {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* Card */
.vp-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    max-width: 100%;
}


.vp-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e2a40;
}

.vp-card-confirm {
    text-align: center;
    padding: 50px 36px;
}

/* ============================================= */
/* FORM ELEMENTS                                 */
/* ============================================= */
.vp-form-group {
    margin-bottom: 20px;
}

.vp-form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e2a40;
    margin-bottom: 6px;
}

.vp-input {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
    color: #1e2a40;
}
.vp-input:focus {
    outline: none;
    border-color: #D60000;
}
.vp-input.vp-input-error { border-color: #D60000; }

/* Flatpickr mobile fallback — native inputs it creates */
.vp-form-group .flatpickr-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: #1e2a40;
}

.vp-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
    height: 48px;
}

.vp-textarea {
    resize: vertical;
    min-height: 80px;
}

.vp-input-hint {
    font-size: 0.78rem;
    color: #888;
    margin-top: 4px;
    display: block;
}

.vp-form-row {
    display: flex;
    gap: 16px;
}
.vp-form-half { flex: 1; min-width: 0; }

.vp-form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ---- Trip Type Toggle ---- */
.vp-trip-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.vp-trip-btn {
    flex: 1;
    padding: 12px 8px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    color: #555;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.vp-trip-btn:hover { border-color: #D60000; color: #D60000; }
.vp-trip-btn.active {
    background: #D60000;
    border-color: #D60000;
    color: #fff;
}

/* ---- Price Result Box ---- */
.vp-price-result {
    margin: 24px 0;
}
.vp-price-result-inner {
    background: #f0fdf4;
    border: 2px solid #00b67a;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vp-price-route {
    font-size: 0.9rem;
    color: #555;
}
.vp-price-amount {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vp-price-label {
    font-size: 0.9rem;
    color: #555;
}
.vp-price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #D60000;
}

/* ---- Return Transfer Toggle ---- */
.vp-return-toggle {
    margin: 24px 0 16px;
}

.vp-toggle-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e2a40;
    margin-bottom: 8px;
}

.vp-toggle-btns {
    display: flex;
    gap: 8px;
}

.vp-toggle-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    color: #555;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.vp-toggle-btn:hover { border-color: #D60000; color: #D60000; }
.vp-toggle-btn.active { background: #D60000; border-color: #D60000; color: #fff; }

/* ---- Night Tariff Notice ---- */
.vp-night-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #92400e;
    margin: 12px 0;
}
.vp-night-notice svg { width: 18px; height: 18px; stroke: #f59e0b; flex-shrink: 0; }

/* ---- Child Seats ---- */
.vp-child-seats-section {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
}

.vp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
}
.vp-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #D60000;
}

.vp-child-seats-fields { margin-top: 16px; }

.vp-child-seats-cost {
    margin-top: 8px;
    font-size: 0.88rem;
    color: #555;
}

/* ---- Price Breakdown ---- */
.vp-price-breakdown {
    margin-bottom: 24px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.vp-price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 0.92rem;
    border-bottom: 1px solid #f0f0f0;
}
.vp-price-row:last-child { border-bottom: none; }

.vp-price-row-extra { color: #666; }

.vp-price-total {
    background: #1e2a40;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 20px;
}

/* ---- Radio Groups ---- */
.vp-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vp-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.vp-radio-label:hover { border-color: #D60000; }

.vp-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #D60000;
}

.vp-radio-text {
    flex: 1;
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vp-radio-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: #D60000;
    background: rgba(214,0,0,0.08);
    padding: 2px 10px;
    border-radius: 20px;
}

.vp-radio-desc {
    margin: -2px 0 6px 28px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #666;
}

/* ---- Terms ---- */
.vp-terms {
    margin-bottom: 24px;
}
.vp-terms a { color: #D60000; text-decoration: underline; }

/* ---- Error Message ---- */
.vp-error {
    background: #fef2f2;
    border: 1px solid #D60000;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: #D60000;
    margin: 16px 0;
}

/* ---- Step FAQ ---- */
.vp-step-faq { margin: 24px 0 0; }

.vp-faq-mini {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
}
.vp-faq-mini strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: #1e2a40;
}
.vp-faq-mini p {
    font-size: 0.82rem;
    color: #666;
    margin: 0;
}

/* ---- Step Actions ---- */
.vp-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.vp-btn-primary {
    background: #D60000;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
}
.vp-btn-primary:hover { background: #b30000; transform: translateY(-1px); }

.vp-btn-outline {
    background: transparent;
    color: #D60000;
    padding: 14px 24px;
    border: 2px solid #D60000;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.vp-btn-outline:hover { background: rgba(214,0,0,0.06); }

.vp-btn-book {
    flex: 1;
    background: #D60000;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
}
.vp-btn-book:hover { background: #b30000; transform: translateY(-1px); }

/* ---- Confirmation ---- */
.vp-confirm-icon svg { width: 60px; height: 60px; margin: 0 auto 16px; }
.vp-card-confirm h3 { font-size: 1.6rem; color: #00b67a; margin-bottom: 16px; }
.vp-confirm-id { font-size: 1.1rem; margin-bottom: 8px; }
.vp-confirm-id strong { color: #D60000; font-size: 1.2rem; }
.vp-confirm-return-id { font-size: 1rem; margin-bottom: 16px; }
.vp-confirm-email { font-size: 0.95rem; margin-bottom: 8px; }
.vp-confirm-email strong { color: #1e2a40; }
.vp-confirm-note { font-size: 0.85rem; color: #888; margin-bottom: 24px; }

/* ---- Loading Overlay ---- */
.vp-loading {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26,26,46,0.85);
    z-index: 20000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.vp-loading p { color: #fff; font-size: 1rem; font-weight: 600; }

.vp-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: #D60000;
    border-radius: 50%;
    animation: vp-spin 0.8s linear infinite;
}
@keyframes vp-spin { to { transform: rotate(360deg); } }

/* ---- Wheel Time Picker ---- */
.vp-wheel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 30000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.vp-wheel-overlay.vp-wheel-open {
    opacity: 1;
    pointer-events: auto;
}

/* Desktop: dropdown near field */
.vp-wheel-modal {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    width: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
    touch-action: none;
    user-select: none;
    z-index: 30001;
}
.vp-wheel-open .vp-wheel-modal {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile: bottom-sheet */
@media (max-width: 768px) {
    .vp-wheel-modal {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        top: auto !important;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding-bottom: env(safe-area-inset-bottom, 0);
        transform: translateY(100%);
    }
    .vp-wheel-open .vp-wheel-modal {
        transform: translateY(0);
    }
}
.vp-wheel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}
.vp-wheel-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e2a40;
}
.vp-wheel-done {
    background: #D60000;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 24px;
    border-radius: 8px;
}
.vp-wheel-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    position: relative;
    overflow: hidden;
    touch-action: none;
}
.vp-wheel-col {
    height: 220px;
    width: 80px;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-y;
    overscroll-behavior: contain;
}
.vp-wheel-col::-webkit-scrollbar { display: none; }
.vp-wheel-item {
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ccc;
    scroll-snap-align: start;
    user-select: none;
    pointer-events: none;
    flex-shrink: 0;
}
.vp-wheel-item.vp-wheel-active {
    color: #1e2a40;
    font-size: 1.6rem;
}
.vp-wheel-item.vp-wheel-pad {
    visibility: hidden;
}
.vp-wheel-sep {
    font-size: 2rem;
    font-weight: 700;
    color: #1e2a40;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}
.vp-wheel-highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 210px;
    height: 46px;
    border-top: 2px solid #D60000;
    border-bottom: 2px solid #D60000;
    pointer-events: none;
    background: rgba(214, 0, 0, 0.04);
    border-radius: 0;
}

/* ============================================= */
/* OTHER VEHICLES                                */
/* ============================================= */
.vp-other-vehicles {
    padding: 80px 0;
    background: #fff;
}

.vp-section-title-dark {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #1e2a40;
}

.vp-other-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.vp-other-card {
    text-align: center;
    padding: 20px 12px;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.vp-other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #D60000;
}
.vp-other-card img {
    height: 60px;
    object-fit: contain;
    margin: 0 auto 10px;
}
.vp-other-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.vp-other-model {
    font-size: 0.72rem;
    color: #888;
    display: block;
    margin-bottom: 6px;
}
.vp-other-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #D60000;
}

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
.vp-footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 30px 0;
}

.vp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vp-footer-logo { height: 28px; margin-bottom: 4px; }

.vp-footer-brand p {
    font-size: 0.78rem;
    color: #888;
}

.vp-footer-links {
    display: flex;
    gap: 24px;
}
.vp-footer-links a {
    font-size: 0.85rem;
    color: #555;
    transition: color 0.2s;
}
.vp-footer-links a:hover { color: #D60000; }

/* ============================================= */
/* RESPONSIVE — TABLET (max-width: 992px)        */
/* ============================================= */
@media (max-width: 992px) {
    .vp-nav-links, .vp-nav-right { display: none; }
    .vp-hamburger { display: flex; }

    .vp-hero h1 { font-size: 2.2rem; }

    .vp-features-grid { grid-template-columns: 1fr; }

    .vp-other-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vp-footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .vp-footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ============================================= */
/* RESPONSIVE — MOBILE (max-width: 768px)        */
/* ============================================= */
@media (max-width: 768px) {
    .vp-container { padding: 0 16px; }

    .vp-hero { padding: 60px 20px 50px; }
    .vp-hero h1 { font-size: 1.8rem; }
    .vp-hero-image { max-width: 320px; }
    .vp-hero-price-number { font-size: 2.2rem; }
    .vp-hero-price-box { padding: 16px 28px; }

    .vp-hero-specs { gap: 20px; }
    .vp-spec { font-size: 0.88rem; }

    .vp-card { padding: 24px 16px; }
    .vp-card h3 { font-size: 1.2rem; }

    .vp-form-row { flex-direction: column; gap: 0; }
    .vp-form-half { width: 100%; }

    .vp-trip-toggle { flex-direction: column; }

    .vp-price-result-inner { flex-direction: column; gap: 12px; text-align: center; }

    .vp-step-actions {
        flex-direction: column;
    }
    .vp-btn-primary, .vp-btn-outline, .vp-btn-book { width: 100%; text-align: center; }

    .vp-other-grid { grid-template-columns: repeat(2, 1fr); }

    .vp-form-row-3 { grid-template-columns: 1fr; }

    .vp-section-title { font-size: 1.5rem; }
    .vp-wizard-section { padding: 60px 0 80px; }
}

/* ============================================= */
/* RESPONSIVE — SMALL MOBILE (max-width: 480px)  */
/* ============================================= */
@media (max-width: 480px) {
    .vp-container { padding: 0 10px; }

    .vp-hero h1 { font-size: 1.5rem; }
    .vp-hero-price-number { font-size: 1.8rem; }

    .vp-card { padding: 20px 12px; }

    .vp-other-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .vp-other-card { padding: 14px 8px; }
    .vp-other-card img { height: 45px; }
}
