/* ========================================
   RESERVATION.CSS - Typeform-style Reservation
   Vanity Transport VIP - Luxury Chauffeur Service
   ======================================== */

/* ========================================
   VARIABLES
   ======================================== */
:root {
    --gold: #D8B96F;
    --gold-light: #E5C97F;
    --white: #FFFFFF;
    --text-light: #EAEAEA;
    --text-muted: #CCCCCC;
    --black: #000000;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Futura PT', 'Century Gothic', 'Futura', Arial, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    --tf-bg: #0A0A0A;
    --tf-card-bg: rgba(255, 255, 255, 0.04);
    --tf-card-border: rgba(216, 185, 111, 0.15);
    --tf-card-border-hover: rgba(216, 185, 111, 0.4);
    --tf-card-border-active: #D8B96F;
    --tf-input-border: rgba(255, 255, 255, 0.2);
    --tf-input-border-focus: #D8B96F;
    --tf-transition-speed: 0.6s;
    --tf-transition-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--tf-bg);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Dark overlay on the reservation page */
.reservation-page {
    position: relative;
    z-index: 1;
    background: var(--tf-bg);
}

.reservation-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(216, 185, 111, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   TYPEFORM CONTAINER
   ======================================== */
.tf-form {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    overflow-y: auto;
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.tf-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1100;
}

.tf-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: width 0.5s var(--tf-transition-ease);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(216, 185, 111, 0.4);
}

/* ========================================
   STEP COUNTER
   ======================================== */
.tf-step-counter {
    position: fixed;
    top: 100px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 2px;
    z-index: 1050;
    user-select: none;
}

.tf-step-counter .tf-current-step {
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
}

.tf-step-counter .tf-total-steps {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   BACK BUTTON — hidden (now rendered inline inside step content)
   ======================================== */
.tf-back {
    display: none !important;
}

/* Inline back button inside step content */
.tf-back-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 0;
    margin-bottom: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tf-back-inline:hover {
    color: var(--gold);
}

.tf-back-inline svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tf-back:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(216, 185, 111, 0.08);
}

.tf-back svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tf-back.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ========================================
   STEPS - LAYOUT & TRANSITIONS
   ======================================== */
.tf-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 160px 40px 40px;
    opacity: 0;
    transform: translateY(60px);
    pointer-events: none;
    transition:
        opacity var(--tf-transition-speed) var(--tf-transition-ease),
        transform var(--tf-transition-speed) var(--tf-transition-ease);
    z-index: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.tf-step.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 10;
}

.tf-step.exit-up {
    opacity: 0;
    transform: translateY(-80px);
    pointer-events: none;
    z-index: 5;
}

.tf-step.enter-down {
    opacity: 0;
    transform: translateY(80px);
    pointer-events: none;
    z-index: 5;
}

/* ========================================
   STEP CONTENT WRAPPER
   ======================================== */
.tf-step-content {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.tf-step-content.wide {
    max-width: 900px;
}

.tf-step-content.extra-wide {
    max-width: 1100px;
}

/* ========================================
   STEP NUMBERING & QUESTION
   ======================================== */
.tf-step-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tf-step-number .tf-arrow {
    display: inline-block;
    font-size: 11px;
    opacity: 0.6;
}

.tf-question {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.tf-question-sub {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ========================================
   TEXT INPUTS
   ======================================== */
.tf-input {
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--tf-input-border);
    outline: none;
    transition: border-color 0.3s ease;
    caret-color: var(--gold);
}

.tf-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

.tf-input:focus {
    border-bottom-color: var(--tf-input-border-focus);
}

/* Input with icon */
.tf-input-wrapper {
    position: relative;
    width: 100%;
}

.tf-input-wrapper .tf-input-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
    pointer-events: none;
}

/* Small text input (for inline fields) */
.tf-input.tf-input-sm {
    font-size: 18px;
    padding: 12px 0;
}

/* Two-column input row */
.tf-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

/* ========================================
   DATE & TIME INPUTS
   ======================================== */
.tf-input[type="date"],
.tf-input[type="time"],
.tf-input[type="datetime-local"] {
    font-size: 20px;
    color-scheme: dark;
}

.tf-input[type="date"]::-webkit-calendar-picker-indicator,
.tf-input[type="time"]::-webkit-calendar-picker-indicator,
.tf-input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) saturate(2) hue-rotate(10deg);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.tf-input[type="date"]::-webkit-calendar-picker-indicator:hover,
.tf-input[type="time"]::-webkit-calendar-picker-indicator:hover,
.tf-input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* ========================================
   SELECT / DROPDOWN
   ======================================== */
.tf-select {
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--tf-input-border);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D8B96F' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 30px;
}

.tf-select:focus {
    border-bottom-color: var(--tf-input-border-focus);
}

.tf-select option {
    background: #1a1a1a;
    color: var(--white);
    padding: 10px;
}

/* ========================================
   CUSTOM DATETIME PICKER
   ======================================== */
.tf-datetime-custom {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.tf-datetime-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tf-datetime-label {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

.tf-date-input {
    font-size: 20px !important;
    cursor: pointer !important;
    -webkit-appearance: none;
}

/* Make the entire date input clickable, not just the icon */
.tf-date-input::-webkit-date-and-time-value {
    cursor: pointer;
}

.tf-date-input::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
    cursor: pointer;
}

.tf-time-selects {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tf-time-selects .tf-select {
    width: auto;
    min-width: 80px;
    font-size: 20px;
    text-align: center;
    padding-right: 30px;
}

.tf-time-sep {
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

/* ========================================
   TEXTAREA
   ======================================== */
.tf-textarea {
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--tf-input-border);
    outline: none;
    resize: vertical;
    min-height: 100px;
    max-height: 250px;
    transition: border-color 0.3s ease;
    caret-color: var(--gold);
    line-height: 1.6;
}

.tf-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

.tf-textarea:focus {
    border-bottom-color: var(--tf-input-border-focus);
}

/* ========================================
   RADIO / CHECKBOX CARDS
   ======================================== */
.tf-choices {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.tf-choices.tf-choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tf-choice {
    display: block;
    cursor: pointer;
}

.tf-choice input[type="radio"],
.tf-choice input[type="checkbox"] {
    display: none;
}

.tf-choice-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--tf-card-bg);
    border: 1px solid var(--tf-card-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.tf-choice-card:hover {
    border-color: var(--tf-card-border-hover);
    background: rgba(255, 255, 255, 0.06);
}

.tf-choice input:checked + .tf-choice-card {
    border-color: var(--tf-card-border-active);
    background: rgba(216, 185, 111, 0.06);
    box-shadow: 0 0 20px rgba(216, 185, 111, 0.08);
}

/* Choice key shortcut indicator */
.tf-choice-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tf-choice input:checked + .tf-choice-card .tf-choice-key {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.tf-choice-label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.4;
}

.tf-choice input:checked + .tf-choice-card .tf-choice-label {
    color: var(--white);
}

/* Choice with description */
.tf-choice-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tf-choice-text .tf-choice-label {
    font-weight: 500;
}

.tf-choice-text .tf-choice-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Choice card with image - vertical layout */
.tf-choice-card.tf-choice-card-with-image {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.tf-choice-card.tf-choice-card-with-image .tf-choice-key,
.tf-choice-card.tf-choice-card-with-image .tf-choice-text {
    padding-left: 20px;
    padding-right: 20px;
}

.tf-choice-card.tf-choice-card-with-image .tf-choice-key {
    padding-top: 16px;
}

.tf-choice-card.tf-choice-card-with-image .tf-choice-text {
    padding-bottom: 20px;
}

.tf-choice-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.tf-choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tf-choice-card.tf-choice-card-with-image:hover .tf-choice-image img {
    transform: scale(1.05);
}

/* Checkmark indicator for selected choice */
.tf-choice input:checked + .tf-choice-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 16px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ========================================
   NUMBER INPUT WITH +/- BUTTONS
   ======================================== */
.tf-number-input {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.tf-number-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    line-height: 1;
    font-family: var(--font-heading);
}

.tf-number-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(216, 185, 111, 0.08);
}

.tf-number-btn:active {
    transform: scale(0.95);
}

.tf-number-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    min-width: 60px;
    text-align: center;
    line-height: 1;
}

.tf-number-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 10px;
}

/* Hidden actual number input */
.tf-number-input input[type="number"] {
    display: none;
}

/* ========================================
   VEHICLE SELECTION CARDS (Step 10)
   ======================================== */
.tf-vehicle-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.tf-vehicle-choice {
    display: block;
    cursor: pointer;
}

.tf-vehicle-choice input[type="radio"] {
    display: none;
}

.tf-vehicle-card {
    position: relative;
    background: var(--tf-card-bg);
    border: 1px solid var(--tf-card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tf-vehicle-card:hover {
    border-color: var(--tf-card-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.tf-vehicle-choice input:checked + .tf-vehicle-card,
.tf-vehicle-card.selected {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(216, 185, 111, 0.15);
}

/* Selected badge */
.tf-vehicle-choice input:checked + .tf-vehicle-card .tf-vehicle-badge,
.tf-vehicle-card.selected .tf-vehicle-badge {
    opacity: 1;
    transform: translateY(0);
}

.tf-vehicle-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 5;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Vehicle image — single hero (fallback) */
.tf-vehicle-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

/* Vehicle image duo: exterior + interior */
.tf-vehicle-img-duo {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}

.tf-vehicle-img-main,
.tf-vehicle-img-interior {
    overflow: hidden;
    position: relative;
}

.tf-vehicle-img-main img,
.tf-vehicle-img-interior img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tf-vehicle-card:hover .tf-vehicle-img-main img {
    transform: scale(1.04);
}

.tf-vehicle-card:hover .tf-vehicle-img-interior img {
    transform: scale(1.06);
}

.tf-interior-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-family: var(--font-heading);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* Vehicle category sections (Berlines / Vans) */
.tf-vehicle-category {
    margin-bottom: 36px;
}

.tf-vehicle-category:last-child {
    margin-bottom: 0;
}

.tf-vehicle-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(216, 185, 111, 0.15);
}

.tf-vehicle-category-header svg {
    color: var(--gold);
    flex-shrink: 0;
}

.tf-vehicle-category-header span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tf-vehicle-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

/* Upsell suggestion — bottom of card info */
.tf-vehicle-upsell {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(216, 185, 111, 0.06);
    border: 1px solid rgba(216, 185, 111, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gold);
    line-height: 1.4;
}

.tf-vehicle-upsell svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* ========================================
   VEHICLE LIGHTBOX — full-screen overlay
   with swipeable photo carousel
   ======================================== */
.tf-vehicle-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    overflow: hidden;
}

.tf-vehicle-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.tf-vehicle-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    line-height: 1;
}

.tf-vehicle-lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(216, 185, 111, 0.15);
}

.tf-vehicle-lightbox-inner {
    width: 94%;
    max-width: 640px;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #111;
    border: 1px solid rgba(216, 185, 111, 0.2);
    border-radius: 16px;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s var(--tf-transition-ease);
}

.tf-vehicle-lightbox.open .tf-vehicle-lightbox-inner {
    transform: translateY(0) scale(1);
}

/* ========================================
   CAROUSEL — swipeable, one photo at a time
   ======================================== */
.tf-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #0a0a0a;
    touch-action: pan-y;
}

.tf-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}

.tf-carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.tf-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.tf-carousel-prev,
.tf-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    padding: 0;
}

.tf-carousel-prev { left: 12px; }
.tf-carousel-next { right: 12px; }

.tf-carousel-prev:hover,
.tf-carousel-next:hover {
    background: rgba(216, 185, 111, 0.6);
    color: var(--black);
}

.tf-carousel-counter {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 5;
}

/* ========================================
   LIGHTBOX BODY — info below carousel
   ======================================== */
.tf-lightbox-body {
    padding: 24px 28px 28px;
}

.tf-lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.tf-lightbox-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tf-lightbox-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}

.tf-lightbox-meta svg {
    fill: var(--text-muted);
    flex-shrink: 0;
}

.tf-lightbox-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
}

.tf-lightbox-price span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Equipment tags */
.tf-lightbox-equips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tf-lightbox-equip {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* Confirm button */
.tf-lightbox-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.tf-lightbox-actions .tf-btn {
    flex: 1;
    justify-content: center;
}

/* ========================================
   UPSELL — visual card with interior photo
   ======================================== */
.tf-lightbox-upsell {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 0;
    background: rgba(216, 185, 111, 0.04);
    border: 1px solid rgba(216, 185, 111, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tf-lightbox-upsell:hover {
    border-color: var(--gold);
    background: rgba(216, 185, 111, 0.1);
}

.tf-upsell-photo {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

.tf-upsell-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tf-lightbox-upsell:hover .tf-upsell-photo img {
    transform: scale(1.05);
}

.tf-upsell-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px 12px 0;
}

.tf-upsell-badge {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tf-upsell-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tf-upsell-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

/* Go back button — return to previous vehicle after upsell */
.tf-lightbox-goback {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.tf-lightbox-goback:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.tf-lightbox-goback svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.tf-lightbox-goback:hover svg {
    color: var(--white);
}

/* ========================================
   LIGHTBOX — RESPONSIVE (TABLET)
   ======================================== */
@media (max-width: 1024px) {
    .tf-vehicle-lightbox-inner {
        max-width: 560px;
    }
}

/* ========================================
   LIGHTBOX — RESPONSIVE (MOBILE)
   ======================================== */
@media (max-width: 768px) {
    .tf-vehicle-lightbox-inner {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
        border: none;
    }

    .tf-carousel {
        border-radius: 0;
        aspect-ratio: 16 / 10;
    }

    .tf-carousel-prev,
    .tf-carousel-next {
        width: 36px;
        height: 36px;
    }

    .tf-carousel-prev svg,
    .tf-carousel-next svg {
        width: 20px;
        height: 20px;
    }

    .tf-lightbox-body {
        padding: 18px 16px 24px;
    }

    .tf-lightbox-header {
        flex-direction: column;
        gap: 8px;
    }

    .tf-lightbox-title {
        font-size: 18px;
    }

    .tf-lightbox-price {
        font-size: 24px;
        text-align: left;
    }

    .tf-lightbox-price span {
        display: inline;
        margin-left: 6px;
    }

    .tf-lightbox-equip {
        font-size: 10px;
        padding: 4px 8px;
    }

    .tf-lightbox-actions .tf-btn {
        padding: 14px 20px;
        font-size: 12px;
    }

    .tf-vehicle-lightbox-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .tf-upsell-photo {
        width: 80px;
        height: 70px;
    }

    .tf-upsell-name {
        font-size: 12px;
    }

    .tf-upsell-price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tf-lightbox-body {
        padding: 14px 12px 20px;
    }

    .tf-lightbox-title {
        font-size: 16px;
    }

    .tf-lightbox-price {
        font-size: 20px;
    }

    .tf-lightbox-equips {
        gap: 4px;
    }

    .tf-lightbox-equip {
        font-size: 9px;
        padding: 3px 7px;
    }

    .tf-upsell-photo {
        width: 70px;
        height: 60px;
    }
}

/* Equipment tags */
.tf-vehicle-equips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tf-vehicle-equip {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

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

.tf-vehicle-card:hover .tf-vehicle-img img {
    transform: scale(1.05);
}

.tf-vehicle-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    pointer-events: none;
}

/* Vehicle info */
.tf-vehicle-info {
    padding: 24px;
}

.tf-vehicle-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tf-vehicle-details {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.tf-vehicle-passengers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}

.tf-vehicle-passengers svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 1.5;
}

.tf-vehicle-features {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tf-vehicle-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.tf-vehicle-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

.tf-vehicle-rate-detail {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    opacity: 0.7;
}

/* Upgrade hint between cards */
.tf-upgrade-hint {
    text-align: center;
    padding: 10px 0;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    opacity: 0.7;
}

/* ========================================
   SUMMARY STEP (Step 11)
   ======================================== */
.tf-summary {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.tf-summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--tf-card-border);
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}

.tf-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.tf-summary-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tf-summary-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Summary section */
.tf-summary-section {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.tf-summary-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tf-summary-section-title {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Summary rows */
.tf-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4px 0;
    gap: 16px;
}

.tf-summary-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tf-summary-value {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    text-align: right;
}

.tf-summary-value.tf-highlight {
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Edit button in summary */
.tf-summary-edit {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 4px 0;
}

.tf-summary-edit:hover {
    opacity: 1;
}

/* Summary total price */
.tf-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 24px;
    border-top: 2px solid rgba(216, 185, 111, 0.3);
}

.tf-summary-total-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tf-summary-total-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

/* Comment + Confirm inside summary card */
.tf-summary-comment {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tf-summary-comment .tf-textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--white);
    resize: vertical;
}

.tf-summary-comment .tf-textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.tf-summary-confirm {
    margin-top: 28px;
    text-align: center;
}

.tf-summary-confirm .tf-btn-confirm {
    width: 100%;
}

/* ========================================
   SUMMARY STEP - OVERFLOW FIX
   ======================================== */
.tf-step[data-step] .tf-step-content.wide {
    overflow-y: visible;
    max-height: none;
    padding-right: 0;
}

.tf-step[data-step] .tf-step-content.wide::-webkit-scrollbar {
    width: 4px;
}

.tf-step[data-step] .tf-step-content.wide::-webkit-scrollbar-track {
    background: transparent;
}

.tf-step[data-step] .tf-step-content.wide::-webkit-scrollbar-thumb {
    background: rgba(216, 185, 111, 0.3);
    border-radius: 2px;
}

/* ========================================
   VEHICLE IMAGE GRID — 1 hero + thumbnails
   ======================================== */
.tf-vehicle-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
}

/* 1 image: full width */
.tf-vehicle-img-grid.tf-vehicle-img-grid-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

/* 2 images: side by side */
.tf-vehicle-img-grid.tf-vehicle-img-grid-2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

/* 3 images: hero on top, 2 below */
.tf-vehicle-img-grid.tf-vehicle-img-grid-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
}

.tf-vehicle-img-grid.tf-vehicle-img-grid-3 img:first-child {
    grid-column: 1 / -1;
}

/* 4 images: hero left (tall), 2 stacked right + 1 bottom full */
.tf-vehicle-img-grid.tf-vehicle-img-grid-4 {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
}

.tf-vehicle-img-grid.tf-vehicle-img-grid-4 img:first-child {
    grid-row: 1 / 3;
}

.tf-vehicle-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    min-height: 0;
}

.tf-vehicle-card:hover .tf-vehicle-img-grid img:first-child {
    transform: scale(1.03);
}

/* ========================================
   NAVIGATION BUTTONS
   ======================================== */
.tf-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

/* Primary CTA - Gold pill button */
.tf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    background: var(--gold);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.tf-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 185, 111, 0.3);
}

.tf-btn:active {
    transform: translateY(0);
}

.tf-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Submit CTA - Larger */
.tf-btn.tf-btn-submit {
    padding: 18px 50px;
    font-size: 14px;
    letter-spacing: 2.5px;
    box-shadow: 0 6px 20px rgba(216, 185, 111, 0.25);
}

.tf-btn.tf-btn-submit:hover {
    box-shadow: 0 10px 35px rgba(216, 185, 111, 0.4);
}

/* Confirm button - prominent CTA */
.tf-btn.tf-btn-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    font-size: 15px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold), #e8d48b);
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(216, 185, 111, 0.35);
}
.tf-btn.tf-btn-confirm svg {
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tf-btn.tf-btn-confirm:hover {
    background: linear-gradient(135deg, #e8d48b, var(--gold));
    box-shadow: 0 12px 40px rgba(216, 185, 111, 0.5);
    transform: translateY(-2px);
}

/* Outline variant */
.tf-btn.tf-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.tf-btn.tf-btn-outline:hover {
    background: rgba(216, 185, 111, 0.1);
    box-shadow: 0 8px 25px rgba(216, 185, 111, 0.15);
}

/* Skip link */
.tf-skip {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    text-transform: uppercase;
}

.tf-skip:hover {
    color: var(--white);
}

/* Enter hint */
.tf-enter-hint {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin-left: auto;
}

.tf-enter-hint kbd {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 4px;
}

/* ========================================
   SUCCESS SCREEN
   ======================================== */
.tf-success {
    text-align: center;
}

.tf-success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    animation: tf-success-pop 0.5s var(--tf-transition-ease) forwards;
}

@keyframes tf-success-pop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tf-success-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: tf-checkmark 0.6s 0.3s ease forwards;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
}

@keyframes tf-checkmark {
    to {
        stroke-dashoffset: 0;
    }
}

.tf-success-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.tf-success-message {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 16px;
}

.tf-success-detail {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 40px;
}

.tf-success .tf-btn {
    margin: 0 auto;
}

/* ========================================
   VALIDATION & ERRORS
   ======================================== */
.tf-input.tf-error,
.tf-textarea.tf-error,
.tf-select.tf-error {
    border-bottom-color: #E74C3C;
}

.tf-error-message {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: #E74C3C;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.tf-error-message.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Required field asterisk */
.tf-required {
    color: var(--gold);
    margin-left: 2px;
}

/* Optional badge */
.tf-optional {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    opacity: 0.5;
}

/* ========================================
   LOADING SPINNER (for submit)
   ======================================== */
.tf-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: tf-spin 0.7s linear infinite;
}

@keyframes tf-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.tf-separator {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0;
}

.tf-note {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    opacity: 0.7;
    margin-top: 16px;
}

/* Subtle background pattern per step */
.tf-step .tf-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: 0.02;
    pointer-events: none;
    background: radial-gradient(ellipse at 70% 50%, var(--gold), transparent 70%);
}

/* ========================================
   HEADER
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 80px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(216, 185, 111, 0.3);
}

.header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 50px;
    position: relative;
    gap: 14px;
}

.logo {
    position: relative;
    left: auto;
    transform: none;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-right {
    display: flex;
    gap: 25px;
    margin-left: 0;
    align-items: center;
    justify-content: center;
}

.nav-right > a,
.dropdown-toggle {
    color: #D8B96F;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    cursor: pointer;
    line-height: 1;
}

.nav-right > a:hover,
.dropdown-toggle:hover {
    color: #FFFFFF;
}

/* ========================================
   LANGUAGE SELECTOR
   ======================================== */
.lang-selector {
    position: relative;
}
.lang-btn {
    background: rgba(216,185,111,0.08);
    border: 1px solid rgba(216,185,111,0.4);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 18px;
    line-height: 1;
}
.lang-btn:hover {
    background: rgba(216,185,111,0.2);
    border-color: #D8B96F;
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(216,185,111,0.4);
    border-radius: 12px;
    padding: 6px 0;
    min-width: 160px;
    display: none;
    z-index: 9999;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.lang-dropdown.open {
    display: block;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    color: #EAEAEA;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}
.lang-option:hover {
    background: rgba(216,185,111,0.12);
    color: #D8B96F;
}
.lang-option.active {
    color: #D8B96F;
    font-weight: 600;
}

/* Bouton principal Reservation dans le header */
.nav-right > a.btn-reservation {
    padding: 10px 24px;
    border-radius: 999px;
    background-color: #D8B96F;
    color: #000;
    border: 1px solid #D8B96F;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
    box-shadow: 0 4px 14px rgba(216, 185, 111, 0.35);
}

.nav-right > a.btn-reservation:hover {
    background-color: #c4a55e;
    border-color: #c4a55e;
    color: #000;
    transform: translateY(-1px);
}

/* ========================================
   DROPDOWN
   ======================================== */

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(216, 185, 111, 0.3);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 11px;
    color: #D8B96F;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.dropdown-menu a:hover {
    background: rgba(216, 185, 111, 0.1);
    border-left-color: #D8B96F;
    padding-left: 25px;
    color: #FFFFFF;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: #000;
    padding: 60px 50px 30px;
    border-top: 1px solid rgba(216, 185, 111, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-address p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #EAEAEA;
    line-height: 1.8;
}

.footer-address a {
    color: #EAEAEA;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-address a:hover {
    color: #D8B96F;
}

.footer-availability {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 12px;
    color: #D8B96F;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #EAEAEA;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #D8B96F;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(216, 185, 111, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #D8B96F;
    border-color: #D8B96F;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: #EAEAEA;
    transition: fill 0.3s;
}

.social-icon:hover svg {
    fill: #000;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(216, 185, 111, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #888;
}

.footer-bottom a {
    color: #D8B96F;
    text-decoration: none;
}

/* ========================================
   HAMBURGER BUTTON
   ======================================== */

.hamburger-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #D8B96F;
    transition: all 0.3s;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   STEP PROGRESS STEPPER — hidden globally
   (now rendered inline inside step content)
   ======================================== */
.tf-stepper {
    display: none !important;
}

/* Inline stepper rendered inside each step */
.tf-stepper-inline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 30px 0 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.tf-stepper-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.tf-stepper-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tf-stepper-dot.completed {
    background: var(--gold);
}

.tf-stepper-dot.active {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(216, 185, 111, 0.4);
    width: 12px;
    height: 12px;
}

.tf-stepper-line {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    margin-top: 5px;
    align-self: flex-start;
    flex-shrink: 0;
}

.tf-stepper-line.completed {
    background: var(--gold);
}

.tf-stepper-label {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    text-align: center;
    white-space: nowrap;
}

.tf-stepper-label.active {
    color: var(--gold);
}

.tf-stepper-label.completed {
    color: var(--gold);
}

/* ========================================
   RESERVATION PAGE — HIDE FOOTER
   The reservation page is fullscreen,
   footer must not interfere.
   ======================================== */
.reservation-page ~ footer {
    display: none !important;
}

/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .tf-step {
        padding: 120px 30px 40px;
    }

    .tf-step-content.extra-wide {
        max-width: 800px;
    }

    .tf-vehicle-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .tf-question {
        font-size: 24px;
    }

    .tf-summary-card {
        padding: 28px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    /* Header mobile — compact fixed bar */
    header {
        min-height: 60px;
        height: auto;
        padding: 0;
    }

    .header-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 10px 16px;
        gap: 0;
    }

    .logo img {
        height: 30px;
    }

    /* Mobile nav overlay */
    .nav-right {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        right: 0;
        bottom: 0;
        background: #000;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 22px;
        z-index: 9999;
        padding: 80px 20px;
        overflow-y: auto;
    }

    .nav-right.nav-open {
        display: flex;
    }

    header:has(.nav-open) {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .nav-right > a,
    .nav-right .dropdown-toggle {
        font-size: 15px !important;
        letter-spacing: 3px;
    }

    .nav-right .dropdown-toggle::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 1.5px solid #D8B96F;
        border-bottom: 1.5px solid #D8B96F;
        transform: rotate(45deg);
        margin-left: 8px;
        vertical-align: middle;
        transition: transform 0.3s;
    }

    .nav-right .dropdown.open .dropdown-toggle::after {
        transform: rotate(-135deg);
    }

    .nav-right .btn-reservation {
        padding: 14px 36px;
        font-size: 14px;
    }

    .nav-right .dropdown {
        flex-direction: column;
        align-items: center;
    }

    .nav-right .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        text-align: center;
        min-width: auto;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.35s ease;
        margin: 0;
    }

    .nav-right .dropdown.open .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .nav-right .dropdown-menu a {
        font-size: 12px;
        border-left: none;
        padding: 6px 10px;
        text-align: center;
    }

    .hamburger-btn {
        display: flex;
        top: 14px;
        right: 16px;
    }

    .lang-selector { margin-top: 10px; }

    /* === FORM STEPS ON MOBILE === */
    .tf-form {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .tf-step {
        padding: 80px 20px 30px;
        justify-content: flex-start;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tf-step-content {
        max-width: 100%;
    }

    .tf-step-content.wide {
        max-width: 100%;
        max-height: none;
        overflow-y: visible;
    }

    .tf-step-content.extra-wide {
        max-width: 100%;
    }

    /* Step counter — repositioned for compact header */
    .tf-step-counter {
        top: 76px;
        right: 16px;
        font-size: 11px;
    }

    /* === INLINE BACK BUTTON — tablet adjustments === */
    .tf-back-inline {
        font-size: 11px;
        margin-bottom: 16px;
    }

    /* === INLINE STEPPER — tablet adjustments === */
    .tf-stepper-inline {
        margin-top: 30px;
        padding: 20px 0 0;
    }

    .tf-stepper-line {
        width: 12px;
    }

    .tf-stepper-label {
        font-size: 7px;
        letter-spacing: 0.3px;
        max-width: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tf-stepper-dot {
        width: 7px;
        height: 7px;
    }

    .tf-stepper-dot.active {
        width: 9px;
        height: 9px;
    }

    /* === TYPOGRAPHY === */
    .tf-question {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .tf-question-sub {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .tf-step-number {
        font-size: 11px;
        margin-bottom: 14px;
    }

    /* === INPUTS === */
    .tf-input {
        font-size: 17px;
        padding: 12px 0;
    }

    .tf-select {
        font-size: 17px;
        padding: 12px 30px 12px 0;
    }

    .tf-input-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* === DATETIME PICKER === */
    .tf-datetime-custom {
        gap: 20px;
    }

    .tf-time-selects .tf-select {
        min-width: 65px;
        font-size: 17px;
    }

    .tf-time-sep {
        font-size: 22px;
    }

    /* === CHOICE CARDS (Step 0 — type selection) === */
    .tf-choices.tf-choices-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tf-choice-card {
        padding: 14px 18px;
    }

    .tf-choice-card.tf-choice-card-with-image {
        flex-direction: row;
        align-items: center;
    }

    .tf-choice-card.tf-choice-card-with-image .tf-choice-image {
        width: 100px;
        min-width: 100px;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .tf-choice-card.tf-choice-card-with-image .tf-choice-text {
        padding: 12px 14px;
    }

    .tf-choice-card.tf-choice-card-with-image .tf-choice-key {
        display: none;
    }

    .tf-choice-label {
        font-size: 14px;
    }

    .tf-choice-text .tf-choice-desc {
        font-size: 12px;
    }

    /* === VEHICLE CARDS — mobile stack === */
    .tf-vehicle-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tf-vehicle-category {
        margin-bottom: 24px;
    }

    .tf-vehicle-category-header {
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .tf-vehicle-category-header span {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .tf-vehicle-upsell {
        font-size: 10px;
        padding: 6px 10px;
    }

    .tf-vehicle-card {
        border-radius: 10px;
    }

    .tf-vehicle-img-duo {
        aspect-ratio: 16 / 7;
    }

    .tf-vehicle-img-main img,
    .tf-vehicle-img-interior img {
        object-fit: cover;
    }

    .tf-interior-label {
        font-size: 8px;
        padding: 2px 6px;
    }

    .tf-vehicle-upgrade {
        font-size: 9px;
        padding: 4px 10px;
        top: 10px;
        left: 10px;
    }

    .tf-vehicle-badge {
        top: 10px;
        right: 10px;
        font-size: 9px;
        padding: 5px 10px;
    }

    .tf-vehicle-info {
        padding: 16px;
    }

    .tf-vehicle-name {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .tf-vehicle-details {
        margin-bottom: 10px;
    }

    .tf-vehicle-passengers {
        font-size: 12px;
    }

    .tf-vehicle-equips {
        margin-bottom: 8px;
        gap: 4px;
    }

    .tf-vehicle-equip {
        font-size: 9px;
        padding: 2px 6px;
    }

    .tf-vehicle-price {
        font-size: 20px;
    }

    .tf-vehicle-price span {
        font-size: 11px;
    }

    /* === SUMMARY — compact, no scroll needed === */
    .tf-summary {
        max-width: 100%;
    }

    .tf-summary-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .tf-summary-title {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .tf-summary-subtitle {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .tf-summary-section {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .tf-summary-section-title {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .tf-summary-row {
        padding: 2px 0;
        gap: 4px;
    }

    .tf-summary-label {
        font-size: 10px;
    }

    .tf-summary-value {
        font-size: 13px;
    }

    .tf-summary-total {
        padding: 14px 0 0;
        margin-top: 16px;
    }

    .tf-summary-total-label {
        font-size: 12px;
    }

    .tf-summary-total-price {
        font-size: 24px;
    }

    .tf-summary-comment {
        margin-top: 16px;
        padding-top: 16px;
    }

    .tf-summary-comment .tf-textarea {
        font-size: 13px;
        padding: 10px 12px;
        min-height: 60px;
    }

    .tf-summary-confirm {
        margin-top: 18px;
    }

    .tf-summary-confirm .tf-btn-confirm {
        padding: 16px 24px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    /* === NAVIGATION BUTTONS === */
    .tf-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 28px;
    }

    .tf-btn {
        justify-content: center;
        padding: 15px 28px;
        font-size: 12px;
    }

    .tf-btn.tf-btn-confirm {
        padding: 16px 20px;
        font-size: 13px;
    }

    .tf-skip {
        text-align: center;
        padding: 8px;
    }

    .tf-enter-hint {
        display: none;
    }

    /* === NUMBER INPUT === */
    .tf-number-value {
        font-size: 36px;
    }

    .tf-number-btn {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .tf-number-label {
        font-size: 12px;
    }

    /* === SUCCESS SCREEN === */
    .tf-success-title {
        font-size: 20px;
    }

    .tf-success-message {
        font-size: 14px;
    }

    .tf-success-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 24px;
    }

    .tf-success-icon svg {
        width: 28px;
        height: 28px;
    }

    .tf-success-detail {
        font-size: 13px;
        margin-bottom: 28px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .tf-step {
        padding: 76px 14px 20px;
    }

    .tf-back-inline {
        font-size: 10px;
        margin-bottom: 12px;
        gap: 6px;
    }

    .tf-back-inline svg {
        width: 14px;
        height: 14px;
    }

    .tf-step-counter {
        top: 70px;
        right: 12px;
        font-size: 10px;
    }

    .tf-question {
        font-size: 18px;
    }

    .tf-question-sub {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .tf-step-number {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .tf-input {
        font-size: 16px;
    }

    .tf-select {
        font-size: 16px;
    }

    .tf-textarea {
        font-size: 14px;
    }

    .tf-choice-card {
        padding: 12px 14px;
        gap: 10px;
    }

    .tf-choice-label {
        font-size: 13px;
    }

    .tf-choice-key {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .tf-choice-card.tf-choice-card-with-image .tf-choice-image {
        width: 80px;
        min-width: 80px;
    }

    .tf-btn {
        padding: 13px 22px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    /* Vehicle cards — even more compact */
    .tf-vehicle-img-duo {
        aspect-ratio: 16 / 6;
    }

    .tf-vehicle-info {
        padding: 14px;
    }

    .tf-vehicle-name {
        font-size: 14px;
    }

    .tf-vehicle-price {
        font-size: 18px;
    }

    /* Summary extra-compact */
    .tf-summary-card {
        padding: 16px 12px;
        border-radius: 10px;
    }

    .tf-summary-title {
        font-size: 15px;
    }

    .tf-summary-total-price {
        font-size: 22px;
    }

    .tf-summary-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }

    .tf-summary-value {
        text-align: right;
        font-size: 12px;
    }

    .tf-summary-label {
        font-size: 9px;
    }

    .tf-summary-confirm .tf-btn-confirm {
        padding: 14px 16px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .tf-step-content.wide,
    .tf-step-content.extra-wide {
        max-width: 100%;
    }

    /* Inline stepper — smaller on small mobile */
    .tf-stepper-inline {
        margin-top: 24px;
        padding: 16px 0 0;
    }

    .tf-stepper-line {
        width: 8px;
    }

    .tf-stepper-label {
        font-size: 6px;
        max-width: 40px;
    }

    .tf-stepper-dot {
        width: 6px;
        height: 6px;
    }

    .tf-stepper-dot.active {
        width: 8px;
        height: 8px;
    }
}

/* ========================================
   ACCESSIBILITY & FOCUS STATES
   ======================================== */
.tf-btn:focus-visible,
.tf-back:focus-visible,
.tf-back-inline:focus-visible,
.tf-skip:focus-visible,
.tf-choice-card:focus-visible,
.tf-number-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.tf-input:focus-visible,
.tf-textarea:focus-visible,
.tf-select:focus-visible {
    outline: none;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .tf-step {
        transition: opacity 0.2s ease;
        transform: none !important;
    }

    .tf-step.active {
        transform: none !important;
    }

    .tf-step.exit-up {
        transform: none !important;
    }

    .tf-step.enter-down {
        transform: none !important;
    }

    .tf-success-icon {
        animation: none;
    }

    .tf-success-icon svg {
        animation: none;
        stroke-dashoffset: 0;
    }

    .tf-progress-bar {
        transition: width 0.1s linear;
    }
}

/* ========================================
   KEYBOARD NAVIGATION HINTS
   ======================================== */
.tf-keyboard-nav .tf-choice-card:focus-within {
    border-color: var(--gold);
    background: rgba(216, 185, 111, 0.04);
}

/* ========================================
   PRINT STYLES (for summary)
   ======================================== */
@media print {
    header,
    footer,
    .tf-progress,
    .tf-back,
    .tf-back-inline,
    .tf-step-counter,
    .tf-stepper,
    .tf-stepper-inline,
    .tf-actions,
    .tf-summary-edit {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .tf-summary-card {
        border: 1px solid #ccc;
        background: white;
        box-shadow: none;
    }

    .tf-summary-title,
    .tf-summary-value {
        color: black;
    }

    .tf-summary-label {
        color: #666;
    }

    .tf-summary-total-price {
        color: #333;
    }
}
