/* ========================================
   CSS Variables / Theme
   ======================================== */
:root {
  /* Colors - Orange adventure theme */
  --color-primary: #ff9900;
  --color-primary-dark: #e68a00;
  --color-primary-light: #ffad33;
  --color-secondary: #e8b84a;
  --color-secondary-dark: #c99a2e;

  --color-text: #2c2c2c;
  --color-text-light: #666666;
  --color-text-muted: #999999;

  --color-bg: #ffffff;
  --color-bg-alt: #f7f8f6;
  --color-bg-dark: #1a1a1a;
  --color-surface: #f5f5f5;
  --color-header-bg: rgba(255, 255, 255, 0.95);

  --color-border: #e0e0e0;
  --color-border-light: #f0f0f0;

  --color-success: #28a745;
  --color-error: #dc3545;
  --color-warning: #ffc107;
  --color-success-bg: #d4edda;
  --color-success-text: #155724;
  --color-error-bg: #f8d7da;
  --color-error-text: #721c24;
  --color-warning-bg: #fff3cd;
  --color-input-bg: #fafafa;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --header-height: 90px;
  --container-max: 1200px;
  --sidebar-width: 340px;
}

/* ========================================
   Dark Mode Theme
   ======================================== */
[data-theme="dark"] {
  --color-text: #e4e4e7;
  --color-text-light: #a1a1aa;
  --color-text-muted: #71717a;

  --color-bg: #0f1117;
  --color-bg-alt: #16171e;
  --color-bg-dark: #07080b;
  --color-surface: #1e1f28;
  --color-header-bg: rgba(15, 17, 23, 0.97);

  --color-border: #2a2b36;
  --color-border-light: #1e1f28;

  --color-success-bg: #0d2a1a;
  --color-success-text: #6ee7a7;
  --color-error-bg: #2a0d0f;
  --color-error-text: #fca5a5;
  --color-warning-bg: #2a1f00;
  --color-input-bg: #16171e;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* Smooth theme transition — only active briefly during toggle */
.theme-transitioning *,
.theme-transitioning *::before,
.theme-transitioning *::after {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  font-size: var(--font-size-md);
  background: var(--color-bg);
  color: var(--color-text);
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-md);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: white;
}

.btn-secondary {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-border);
}

.btn-block {
  width: 100%;
}

/* Loading spinner state for buttons */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: white;
  border-radius: 50%;
  animation: btn-spin 0.55s linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.85rem;
  padding: var(--space-xs) var(--space-sm);
}

.nav-link:hover {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-2xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  margin-bottom: var(--space-2xl);
}

.hero-content h1 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: var(--font-size-xl);
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ========================================
   Booking Panel
   ======================================== */
.booking-panel {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 700px;
}

/* ========================================
   Stepper
   ======================================== */
.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  position: relative;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  z-index: 1;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-normal);
}

.step-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.step.active .step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.step.active .step-label {
  color: var(--color-primary);
}

.step.completed .step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.step.completed .step-label {
  color: var(--color-primary);
}

/* Stepper in booking sections */
.stepper-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

/* ========================================
   Forms
   ======================================== */
.form-row {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group.full-width {
  flex: 100%;
}

.form-group label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--color-error);
}

.form-error {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  min-height: 20px;
  margin-bottom: var(--space-sm);
}

/* ========================================
   Modern Calendar Picker
   ======================================== */
.date-selection-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.date-box {
  flex: 1;
  text-align: center;
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.date-box:hover,
.date-box.active {
  border-color: var(--color-primary);
}

.date-box.selected {
  border-color: var(--color-primary);
  background: rgba(255, 153, 0, 0.05);
}

.date-box-label {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.date-box-value {
  display: block;
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-text);
}

.date-box-value small {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--color-primary);
}

.date-arrow {
  color: var(--color-text-muted);
  font-size: var(--font-size-xl);
}

.calendar-wrapper {
  position: relative;
  margin-bottom: var(--space-lg);
}

.calendar-container {
  display: none;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-md);
  border: 1px solid var(--color-border-light);
  max-width: 100%;
  overflow: hidden;
}

.calendar-container.open {
  display: block;
}

.calendar-container .time-selection {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
  margin-bottom: 0;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-xl);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calendar-nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.calendar-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-nav:disabled:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
  color: var(--color-text);
}

.calendar-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.calendar-weekdays span {
  text-align: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: var(--space-sm);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-day {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-bg);
  border: none;
  color: var(--color-text);
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--color-bg-alt);
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.disabled {
  color: var(--color-text-muted);
  opacity: 0.4;
  cursor: not-allowed;
}

.calendar-day.today {
  font-weight: 700;
  border: 2px solid var(--color-primary);
}

.calendar-day.selected-start,
.calendar-day.selected-end {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
}

.calendar-day.in-range {
  background: rgba(255, 153, 0, 0.2);
  border-radius: 0;
}

.calendar-day.selected-start {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.calendar-day.selected-end {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.calendar-day.selected-start.selected-end {
  border-radius: var(--radius-md);
}

/* Dates within advance-booking window — not available as pickup */
.calendar-day.too-soon {
  color: var(--color-text-muted);
  opacity: 0.35;
  cursor: not-allowed;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 6px
  );
}

/* Days locked in by the minimum rental period (shown when choosing return date) */
.calendar-day.min-range {
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 153, 0, 0.18),
    rgba(255, 153, 0, 0.18) 3px,
    rgba(255, 153, 0, 0.06) 3px,
    rgba(255, 153, 0, 0.06) 6px
  );
  color: var(--color-text-muted);
  cursor: not-allowed;
  border-radius: 0;
}

.time-selection {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* Booking vehicle picker tabs */
.booking-vehicle-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.booking-vehicle-tab {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  text-align: left;
  min-width: 0;
}
.booking-vehicle-tab:hover {
  border-color: var(--color-primary);
}
.booking-vehicle-tab.active {
  border-color: var(--color-primary);
  background: rgba(255,153,0,0.06);
  box-shadow: 0 0 0 3px rgba(255,153,0,0.15);
}
.booking-vehicle-tab-img {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.booking-vehicle-tab-info {
  min-width: 0;
  flex: 1;
}
.booking-vehicle-tab-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-vehicle-tab-price {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.booking-vehicle-tab-check {
  font-size: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Vehicle step selection cards */
.vehicle-step-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  margin-bottom: var(--space-md);
}
.vehicle-step-card:hover {
  border-color: var(--color-primary);
}
.vehicle-step-card.selected {
  border-color: var(--color-primary);
  background: rgba(255,153,0,0.06);
  box-shadow: 0 0 0 3px rgba(255,153,0,0.15);
}
.vehicle-step-card.unavailable {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--color-bg-alt);
}
.vehicle-step-img {
  width: 110px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.vehicle-step-info {
  flex: 1;
  min-width: 0;
}
.vehicle-step-name {
  font-size: var(--font-size-md);
  font-weight: 700;
  margin-bottom: 2px;
}
.vehicle-step-price {
  font-size: var(--font-size-sm);
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.vehicle-step-features {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vehicle-step-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.vehicle-avail-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.vehicle-avail-badge.available {
  background: var(--color-success-bg);
  color: var(--color-success-text);
}
.vehicle-avail-badge.unavailable {
  background: var(--color-error-bg);
  color: var(--color-error-text);
}
.vehicle-step-check {
  font-size: 22px;
  color: var(--color-primary);
}
@media (max-width: 480px) {
  .vehicle-step-img { width: 80px; height: 54px; }
  .vehicle-step-name { font-size: var(--font-size-sm); }
}

/* Two-month calendar layout */
.calendar-header {
  align-items: flex-start;
}
.calendar-months {
  display: flex;
  gap: var(--space-lg);
  flex: 1;
  min-width: 0;
}
.calendar-month {
  flex: 1;
  min-width: 0;
}
.calendar-month-title {
  font-size: var(--font-size-md);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-sm);
  padding-top: 6px;
}
.calendar-month .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: var(--space-sm);
}
.calendar-month .calendar-weekdays span {
  text-align: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: var(--space-sm);
}
.calendar-month .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* Booked (all vehicles taken) */
.calendar-day.booked {
  color: var(--color-text-muted);
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  background: var(--color-surface);
}

/* Selected vehicle booked but other vehicle free */
.calendar-day.other-available {
  background: rgba(59, 130, 246, 0.09);
  color: var(--color-text-muted);
  font-style: italic;
}
.calendar-day.other-available:hover:not(.disabled) {
  background: rgba(59, 130, 246, 0.18);
  color: var(--color-text);
}

/* Suggestion banner */
.calendar-suggestion {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 153, 0, 0.1);
  border: 1px solid rgba(255, 153, 0, 0.35);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  line-height: 1.4;
  flex-wrap: wrap;
}
.calendar-suggestion.visible {
  display: flex;
}
.suggestion-btn {
  margin-left: auto;
  padding: 4px 10px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.suggestion-btn:hover {
  opacity: 0.85;
}

.time-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.time-group label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.time-group select {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: var(--font-size-md);
  cursor: pointer;
}

.time-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

/* ========================================
   Main Content Layout
   ======================================== */
.main-content {
  display: flex;
  gap: var(--space-xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.content-wrapper {
  flex: 1;
  min-width: 0;
}

/* ========================================
   Booking Sections
   ======================================== */
.booking-section {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.section-subtitle {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.section-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

/* ========================================
   RV Cards
   ======================================== */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.rv-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.rv-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.rv-card.selected {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

.rv-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.rv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rv-card:hover .rv-image img {
  transform: scale(1.05);
}

.rv-content {
  padding: var(--space-lg);
}

.rv-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.rv-specs {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.rv-spec {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.rv-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.rv-price span {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--color-text-light);
}

/* ========================================
   Add-ons
   ======================================== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.addon-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.addon-card:hover {
  border-color: var(--color-primary-light);
  background: var(--color-bg-alt);
}

.addon-card.selected {
  border-color: var(--color-primary);
  background: rgba(255, 153, 0, 0.05);
}

.addon-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.addon-card.selected .addon-checkbox {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.addon-info {
  flex: 1;
}

.addon-name {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.addon-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.addon-price {
  font-weight: 600;
  color: var(--color-primary);
}

/* ========================================
   Insurance Options
   ======================================== */
.insurance-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.insurance-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.insurance-card:hover {
  border-color: var(--color-primary-light);
}

.insurance-card.selected {
  border-color: var(--color-primary);
  background: rgba(255, 153, 0, 0.05);
}

.insurance-radio {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.insurance-card.selected .insurance-radio {
  border-color: var(--color-primary);
}

.insurance-card.selected .insurance-radio::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.insurance-info {
  flex: 1;
}

.insurance-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.insurance-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.insurance-price {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-primary);
}

.insurance-description {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.insurance-features {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.insurance-feature {
  font-size: var(--font-size-xs);
  background: var(--color-bg-alt);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
}

/* ========================================
   Price Summary Sidebar
   ======================================== */
.price-summary {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
  width: var(--sidebar-width);
  flex-shrink: 0;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  align-self: flex-start;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  background: var(--color-primary);
  color: white;
}

.summary-header h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.summary-toggle {
  color: white;
  font-size: var(--font-size-sm);
  display: none;
}

.summary-content {
  padding: var(--space-lg);
}

.summary-section {
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.summary-label {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.edit-link {
  font-size: var(--font-size-xs);
  color: var(--color-primary);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

.edit-link:hover {
  color: var(--color-primary-dark);
}

.summary-value {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.summary-days {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.summary-price {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
}

.summary-list {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.summary-divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-md) 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.summary-total span:last-child {
  color: var(--color-primary);
}

/* ========================================
   Confirmation
   ======================================== */
.confirmation-panel {
  text-align: center;
  padding: var(--space-2xl);
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: white;
  font-size: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}

.confirmation-ref {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.confirmation-msg {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.confirmation-summary {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: left;
  margin-bottom: var(--space-xl);
}

.confirmation-summary .summary-row {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.confirmation-summary .summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: var(--font-size-lg);
}

/* ========================================
   Info Sections (Fleet, FAQ, Contact)
   ======================================== */
.info-section {
  padding: var(--space-3xl) 0;
}

.info-section--alt {
  background: var(--color-bg-alt);
}

.info-section .section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.info-section .section-subtitle {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Fleet Preview */
.fleet-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) 0;
  font-size: var(--font-size-lg);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: var(--space-lg);
  color: var(--color-text-light);
}

/* Contact */
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.contact-item a,
.contact-item p {
  color: var(--color-text-light);
}

.contact-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-bg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.contact-form-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.contact-form .form-group {
  margin-bottom: var(--space-md);
}

.contact-form .form-group label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  display: block;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-md);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  width: 100%;
  margin-top: var(--space-md);
}

.form-success {
  background: var(--color-success);
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  text-align: center;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-bg-dark);
  color: white;
  padding: var(--space-xl) 0;
  text-align: center;
}

.footer p {
  opacity: 0.7;
  font-size: var(--font-size-sm);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .main-content {
    flex-direction: column;
  }

  .price-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 100;
    max-height: 60vh;
    overflow-y: auto;
  }

  .summary-toggle {
    display: block;
  }

  .summary-content {
    display: none;
  }

  .price-summary.expanded .summary-content {
    display: block;
  }

  .price-summary.expanded .summary-toggle {
    transform: rotate(180deg);
  }

  .content-wrapper {
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.25rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-height) + var(--space-lg));
    min-height: auto;
    padding-bottom: var(--space-lg);
  }

  .booking-panel {
    padding: var(--space-lg);
  }

  .stepper {
    overflow-x: auto;
    gap: var(--space-xs);
    padding-bottom: var(--space-sm);
  }

  .stepper::before {
    display: none;
  }

  .step-label {
    display: none;
  }

  .form-row {
    flex-direction: column;
  }

  .date-selection-display {
    flex-direction: row;
    gap: var(--space-sm);
  }

  .date-box {
    padding: var(--space-sm);
  }

  .date-box-value {
    font-size: var(--font-size-sm);
  }

  .date-arrow {
    font-size: var(--font-size-md);
  }

  .calendar-day {
    font-size: var(--font-size-xs);
  }

  .calendar-months {
    flex-direction: column;
    gap: var(--space-md);
  }

  .time-selection {
    flex-direction: column;
  }

  .rv-grid,
  .addons-grid,
  .fleet-preview {
    grid-template-columns: 1fr;
  }

  .insurance-card {
    flex-direction: column;
    gap: var(--space-md);
  }

  .insurance-header {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-info {
    gap: var(--space-lg);
  }

  .section-actions {
    flex-direction: column;
  }

  .section-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }

  .hero-content p {
    font-size: var(--font-size-md);
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: var(--font-size-xs);
  }
}

/* ========================================
   Single Camper Display
   ======================================== */
.fleet-preview--single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.fleet-preview--single .rv-card--single {
  max-width: 500px;
  width: 100%;
}

.rv-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.rv-feature {
  font-size: var(--font-size-xs);
  background: var(--color-bg-alt);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
}

.rv-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  width: 100%;
  max-width: 900px;
}

.rv-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.rv-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.rv-gallery-item:hover img {
  transform: scale(1.05);
}

/* ========================================
   Blog Section
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: var(--space-lg);
}

.blog-card-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.blog-card-excerpt {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.blog-read-more {
  font-size: var(--font-size-sm);
}

/* Blog Modal */
.blog-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.blog-modal-content {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  position: relative;
}

.blog-modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text);
}

.blog-modal-close:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.blog-modal-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  padding-right: var(--space-2xl);
  color: var(--color-text);
}

.blog-modal-body {
  line-height: 1.7;
  color: var(--color-text);
}

.blog-modal-body h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

.blog-modal-body p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-modal-content {
    max-height: 90vh;
    padding: var(--space-lg);
  }

  .blog-modal-title {
    font-size: var(--font-size-xl);
  }

  /* Booking summary bottom bar — compact on mobile */
  .summary-header {
    padding: var(--space-md) var(--space-lg);
  }

  .summary-header h3 {
    font-size: var(--font-size-md);
  }

  .summary-content {
    padding: var(--space-md) var(--space-lg);
  }

  .summary-total {
    font-size: var(--font-size-lg);
  }

  .summary-value,
  .summary-price,
  .summary-days {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Contact info cards on mobile */
  .contact-item {
    padding: var(--space-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
  }

  .contact-item a,
  .contact-item p {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .rv-gallery {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Mobile Menu Improvements
   ======================================== */
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 280ms ease, opacity 200ms ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 260ms ease, transform 260ms ease;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    gap: var(--space-sm);
  }

  .nav.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* ========================================
   Booking Panel Title
   ======================================== */
.booking-panel-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

/* ========================================
   Booking Flow — Horizontal Carousel
   ======================================== */
.booking-flow {
  display: none;
  background: var(--color-bg-alt);
  padding: var(--space-xl) 0 var(--space-3xl);
}

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

.booking-flow.visible {
  display: block;
  animation: bookingFlowIn 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.booking-flow-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.booking-flow-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* --- Progress header --- */
.booking-flow-header {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  position: sticky;
  top: calc(var(--header-height) + 8px);
  z-index: 10;
}

.flow-steps {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.flow-step-dot {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-normal);
}

.flow-step span {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.flow-step.active .flow-step-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(255,153,0,0.15);
}

.flow-step.active span {
  color: var(--color-primary);
  font-weight: 600;
}

.flow-step.completed .flow-step-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.flow-step.completed span {
  color: var(--color-primary);
}

.flow-step-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 6px 20px;
  min-width: 16px;
  transition: background var(--transition-normal);
}

.flow-step-line.done {
  background: var(--color-primary);
}

.flow-progress-bar {
  height: 4px;
  background: var(--color-border-light);
  border-radius: 2px;
  overflow: hidden;
}

.flow-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: 2px;
  transition: width 450ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* --- Carousel --- */
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: height 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.carousel-track {
  display: flex;
  align-items: flex-start;
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-panel {
  min-width: 100%;
  display: flex;
  flex-direction: column;
}

.panel-content {
  padding: var(--space-xl);
}

.panel-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.panel-subtitle {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.panel-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
}

.panel-actions .btn-primary {
  flex: 1;
  max-width: 260px;
}

/* Price summary inside booking-flow */
.booking-flow .price-summary {
  width: var(--sidebar-width);
  flex-shrink: 0;
  position: relative;
  align-self: flex-start;
  will-change: transform;
}

/* Hide toggle button on desktop (sidebar is always visible) */
@media (min-width: 1025px) {
  .booking-flow .summary-toggle {
    display: none;
  }
}

/* Mobile: price summary as fixed bottom bar */
@media (max-width: 1024px) {
  .booking-flow-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-flow .price-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 100;
    max-height: 60vh;
    overflow-y: auto;
  }

  .booking-flow .summary-content {
    display: none;
  }

  .booking-flow .price-summary.expanded .summary-content {
    display: block;
  }

  .summary-toggle {
    display: block;
    transition: transform var(--transition-fast);
  }

  .booking-flow .price-summary.expanded .summary-toggle {
    transform: rotate(180deg);
  }

  .booking-flow-main {
    width: 100%;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  /* Full-width panels — remove side padding so carousel fills the screen */
  .booking-flow {
    padding: 0 0 var(--space-2xl);
    overflow: hidden;
  }

  .booking-flow-inner {
    padding: 0;
    width: 100%;
  }

  .booking-flow-header {
    border-radius: 0;
    padding: var(--space-md) var(--space-lg);
  }

  .carousel-viewport {
    border-radius: 0;
  }

  .flow-step span {
    display: none;
  }

  .flow-step-dot {
    width: 28px;
    height: 28px;
    font-size: var(--font-size-xs);
  }

  .flow-step-line {
    min-width: 8px;
  }

  .panel-content {
    padding: var(--space-lg);
  }

  .panel-actions {
    padding: var(--space-md) var(--space-lg);
  }

  .panel-title {
    font-size: var(--font-size-xl);
  }

  .booking-flow-main {
    gap: 0;
  }

  /* Compact panel content */
  .panel-content {
    padding: var(--space-md);
  }

  .panel-actions {
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .panel-actions .btn-primary {
    max-width: none;
  }

  /* Compact addon cards */
  .addon-card {
    padding: var(--space-md);
  }

  /* Compact insurance cards */
  .insurance-card {
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  /* Compact form rows */
  .panel-content .form-row {
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
  }

  /* Shorter blog images on mobile */
  .blog-card-image {
    aspect-ratio: 16 / 7;
  }
}

/* Mobile-only: single-month calendar + compact insurance */
@media (max-width: 639px) {
  /* Tighter calendar padding on small screens */
  .calendar-container {
    padding: var(--space-md);
  }

  /* Smaller day cells so the single month grid breathes */
  .calendar-day {
    height: 38px;
    font-size: 13px;
  }

  .calendar-weekdays span {
    padding: 4px 2px;
    font-size: 11px;
  }

  /* Hide second month via CSS safety-net (JS already renders one month) */
  .calendar-month:nth-child(2) {
    display: none;
  }

  /* Insurance: hide decorative icon to save horizontal space */
  .insurance-icon-wrap {
    display: none;
  }

  /* Insurance feature pills: smaller */
  .insurance-feature {
    font-size: 11px;
    padding: 2px 6px;
  }

  /* Booking panel: reduce horizontal padding on very narrow screens */
  .booking-panel {
    padding: var(--space-md);
  }
}

/* ========================================
   Vehicle Showcase — Modern View
   ======================================== */
/* Vehicle selector cards */
.vehicle-selector-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.vehicle-selector-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  text-align: left;
  padding: 0;
}

.vehicle-selector-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.vehicle-selector-card.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255,153,0,0.15);
}

.vehicle-selector-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.vehicle-selector-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.vehicle-selector-card:hover .vehicle-selector-img-wrap img {
  transform: scale(1.04);
}

.vehicle-selector-info {
  padding: var(--space-md) var(--space-lg);
}

.vehicle-selector-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.vehicle-selector-sub {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.vehicle-selector-price {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.vehicle-selector-price span {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--color-text-light);
}

.may-badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--color-primary);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .vehicle-selector-row {
    grid-template-columns: 1fr;
  }
}

.summary-discount-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-sm);
  color: var(--color-primary-dark);
  font-weight: 600;
  padding: var(--space-xs) 0;
}

.vehicle-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.vehicle-gallery {}

.vehicle-main-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: var(--space-sm);
  cursor: zoom-in;
  position: relative;
}

.vehicle-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.vehicle-main-wrap:hover img {
  transform: scale(1.03);
}

.vehicle-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-xs);
}

.vehicle-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  transition: border-color var(--transition-fast), opacity var(--transition-fast);
  opacity: 0.7;
}

.vehicle-thumb:hover,
.vehicle-thumb.active {
  border-color: var(--color-primary);
  opacity: 1;
}

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

/* Details panel */
.vehicle-details {
  padding: var(--space-md) 0;
}

.vehicle-name {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  line-height: 1.2;
}

.vehicle-tagline {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
}

.vehicle-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

@media (max-width: 900px) {
  .vehicle-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vehicle-spec-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.vehicle-spec-icon {
  width: 40px;
  height: 40px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem !important;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
}

.vehicle-spec-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.vehicle-spec-value {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.vehicle-sleeping-layout {
  margin-bottom: var(--space-xl);
}

.vehicle-section-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.vehicle-beds-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-sm);
}

.vehicle-bed-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.vehicle-bed-item .material-symbols-outlined {
  font-size: 1.25rem !important;
  color: var(--color-primary);
  flex-shrink: 0;
}

.vehicle-bed-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.vehicle-bed-size {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: 1px;
}

.vehicle-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.vehicle-feature-tag {
  font-size: var(--font-size-xs);
  padding: 5px 14px;
  background: rgba(255, 153, 0, 0.1);
  color: var(--color-primary-dark);
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(255,153,0,0.2);
}

.vehicle-price-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.vehicle-price-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.vehicle-price-amount {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.vehicle-price-unit {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--color-text-light);
}

@media (max-width: 900px) {
  .vehicle-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .vehicle-thumbs {
    grid-template-columns: repeat(6, 1fr);
  }

  .vehicle-name {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .vehicle-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .vehicle-specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-price-cta {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .vehicle-price-cta .btn {
    width: 100%;
  }
}

/* ========================================
   Blog Carousel
   ======================================== */
.blog-carousel-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.blog-carousel-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.blog-carousel-track {
  display: flex;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.blog-carousel-slide {
  flex: 0 0 33.333%;
  padding: 0 var(--space-sm);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .blog-carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}

.blog-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  color: var(--color-text);
  line-height: 1;
}

.blog-nav-btn:hover:not(:disabled) {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.blog-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blog-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.blog-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 300ms ease;
}

.blog-dot.active {
  width: 28px;
  background: var(--color-primary);
}

@media (max-width: 768px) {
  /* Hide arrow buttons on mobile — swipe + dots handle navigation */
  .blog-nav-btn {
    display: none;
  }
}

/* ========================================
   Material Symbols
   ======================================== */
.material-symbols-outlined {
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
  user-select: none;
}

/* ========================================
   Addon Icons & Tooltips
   ======================================== */
.addon-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.addon-card--included {
  opacity: 0.9;
  cursor: default;
  border-style: dashed;
}

.addon-card--included:hover {
  border-color: var(--color-border);
  background: none;
}

.addon-price--free {
  color: var(--color-success);
  font-weight: 600;
}

/* Quantity controls */
.addon-card--qty.selected {
  cursor: default;
}

.addon-qty-ctrl {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.addon-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: var(--color-bg);
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
  line-height: 1;
}

.addon-qty-btn:hover:not(:disabled) {
  background: var(--color-primary);
  color: white;
}

.addon-qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: var(--color-border);
  color: var(--color-text-muted);
}

.addon-qty-value {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
  font-size: var(--font-size-md);
  color: var(--color-text);
}

/* Info tooltip button */
.addon-tooltip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  color: var(--color-text-muted);
  cursor: help;
  position: relative;
  vertical-align: middle;
}

.addon-tooltip-btn .material-symbols-outlined {
  font-size: 1rem;
}

.addon-tooltip-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.4;
  width: 220px;
  white-space: normal;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.addon-tooltip-btn:hover::after,
.addon-tooltip-btn:focus::after,
.addon-tooltip-btn.tooltip-active::after {
  opacity: 1;
}

/* ========================================
   Bundle Section
   ======================================== */
.bundles-section {
  margin-bottom: var(--space-xl);
}

.bundles-heading {
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.bundle-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.bundle-card:hover {
  border-color: var(--color-primary-light);
}

.bundle-card.selected {
  border-color: var(--color-primary);
  background: rgba(255, 153, 0, 0.05);
}

.bundle-checkbox {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: white;
  transition: background 0.2s, border-color 0.2s;
}

.bundle-card.selected .bundle-checkbox {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.bundle-icon {
  font-size: 2rem !important;
  color: var(--color-primary);
  flex-shrink: 0;
}

.bundle-info {
  flex: 1;
}

.bundle-name {
  font-weight: 600;
  font-size: var(--font-size-md);
  margin-bottom: 2px;
}

.bundle-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.bundle-price-new {
  font-weight: 700;
  color: var(--color-primary);
  margin-right: var(--space-sm);
}

.bundle-price-old {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* ========================================
   Insurance Icons & Deposit
   ======================================== */
.insurance-icon-wrap {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.insurance-icon {
  font-size: 1.75rem !important;
  color: var(--color-primary);
}

.insurance-deposit {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.insurance-deposit .material-symbols-outlined {
  font-size: 1rem;
}

.deposit--zero {
  color: var(--color-success);
  font-weight: 600;
}

/* ========================================
   Mobile: Bundles & Tooltips
   ======================================== */
@media (max-width: 768px) {
  .bundles-grid {
    grid-template-columns: 1fr;
  }

  .addon-tooltip-btn::after {
    left: auto;
    right: 0;
    transform: none;
    width: 200px;
  }
}

/* ========================================
   Language Switcher
   ======================================== */

.lang-switcher {
  position: relative;
  margin-right: var(--space-sm);
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-md);
  color: var(--color-text);
  padding: 6px 10px;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.lang-current:hover {
  background: rgba(255,153,0,0.08);
  border-color: var(--color-primary);
}

.lang-current .material-symbols-outlined {
  font-size: 18px;
}

.lang-chevron {
  font-size: 16px !important;
  transition: transform var(--transition-fast);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  z-index: 200;
  overflow: hidden;
}

.lang-dropdown.open {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  text-align: left;
  transition: background var(--transition-fast);
}

.lang-option:hover { background: var(--color-bg-alt); }
.lang-option.active { background: rgba(255,153,0,0.08); font-weight: 600; color: var(--color-primary-dark); }

/* ========================================
   Photo Gallery
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--color-bg-alt);
  display: block;
  width: 100%;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal);
}

.gallery-item-overlay .material-symbols-outlined {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0,0,0,0.28);
}

.gallery-item:hover .gallery-item-overlay .material-symbols-outlined {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}

.lightbox-counter {
  color: rgba(255,255,255,0.6);
  font-size: var(--font-size-sm);
  margin-top: var(--space-sm);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  z-index: 9001;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  line-height: 1;
  transition: background var(--transition-fast);
  z-index: 9001;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

@media (max-width: 600px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-nav { padding: 8px 12px; font-size: 2rem; }
}

/* ========================================
   Reviews Section
   ======================================== */

.reviews-overall {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.reviews-score {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.reviews-stars {
  font-size: 1.6rem;
  color: #f5a623;
  line-height: 1;
}

.reviews-source {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.reviews-grid {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reviews-track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  animation: reviews-scroll 55s linear infinite;
}

.reviews-grid:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  width: 300px;
  flex-shrink: 0;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta { flex: 1; }

.review-name {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.review-stars {
  font-size: 0.85rem;
  color: #f5a623;
}

.review-google-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.review-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  font-style: italic;
}

/* ========================================
   Travel Guides Section
   ======================================== */

.winter-warning {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-warning-bg);
  border: 2px solid #ffc107;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.winter-warning .material-symbols-outlined {
  color: #e67e00;
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.winter-warning strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-size: var(--font-size-md);
}

.winter-warning p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin: 0;
  line-height: 1.6;
}

.guides-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.guide-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.guide-card:hover {
  box-shadow: var(--shadow-md);
}

.guide-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  user-select: none;
}

.guide-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,153,0,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-card-icon .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 24px;
}

.guide-card-meta { flex: 1; }

.guide-card-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.guide-card-duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.guide-card-duration .material-symbols-outlined {
  font-size: 14px;
}

.guide-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.guide-highlight-tag {
  font-size: var(--font-size-xs);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2px 10px;
  color: var(--color-text-light);
}

.guide-chevron {
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-top: 4px;
}

.guide-card-body {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg) calc(var(--space-lg) + 48px + var(--space-md));
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-lg);
}

.guide-card.open .guide-card-body {
  display: block;
}

.guide-card-body p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.guide-card-body h4 {
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--color-text);
  margin: var(--space-lg) 0 var(--space-sm);
}

.guide-card-body h4:first-child { margin-top: 0; }

@media (max-width: 600px) {
  .guide-card-body {
    padding-left: var(--space-lg);
  }
}

/* ========================================
   What Happens Next (booking confirmation)
   ======================================== */

.what-happens-next {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  text-align: left;
}

.whn-title {
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.whn-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.whn-steps li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.5;
  counter-increment: none;
}

.whn-step-icon {
  color: var(--color-primary);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========================================
   T&C Checkbox
   ======================================== */

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.checkbox-label a:hover { color: var(--color-primary); }

/* ========================================
   Payment Options (panel 4 checkout)
   ======================================== */

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--color-border, #ddd);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--color-bg);
}

.payment-option-label:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(255, 153, 0, 0.08);
}

.payment-option-label input[type="radio"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.payment-option-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option-title {
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--color-text);
}

.payment-option-amount {
  font-size: var(--font-size-base);
  color: var(--color-primary);
  font-weight: 700;
}

.payment-option-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.summary-promo {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px dashed var(--color-border);
}

.promo-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  cursor: pointer;
  text-align: center;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-style: dotted;
}

.promo-toggle:hover {
  color: var(--color-primary-dark);
}

.promo-input-area {
  margin-top: var(--space-sm);
}

.promo-code-row {
  display: flex;
  gap: 6px;
}

.promo-code-row input {
  flex: 1;
  min-width: 0;
  font-size: var(--font-size-sm);
  font-family: monospace;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  background: var(--color-input-bg);
  color: var(--color-text);
  transition: border-color 0.15s;
}

.promo-code-row input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg);
}

.promo-code-btn {
  padding: 8px 14px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.promo-code-btn:hover {
  background: var(--color-primary-dark);
}

.promo-feedback {
  margin-top: 6px;
  font-size: var(--font-size-xs);
  padding: 5px 8px;
  border-radius: var(--radius-sm);
}

.promo-feedback.success {
  color: var(--color-success-text);
  background: var(--color-success-bg);
}

.promo-feedback.error {
  color: var(--color-error-text);
  background: var(--color-error-bg);
}

.promo-applied {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-success-bg);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.promo-applied-check {
  font-size: var(--font-size-md);
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

.promo-applied #promo-applied-label {
  flex: 1;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-success-text);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.promo-remove {
  background: none;
  border: none;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 1px;
  padding: 0;
  flex-shrink: 0;
}

.promo-remove:hover {
  color: var(--color-error);
}

/* ========================================
   Included items callout (panel 2)
   ======================================== */

.included-callout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--color-success-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-success-text);
}

.included-callout .material-symbols-outlined {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========================================
   Footer improvements
   ======================================== */

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: #fff; }

.footer-sep {
  color: rgba(255,255,255,0.3);
}

/* ========================================
   Terms / Privacy page base styles
   ======================================== */

.legal-page .container {
  max-width: 780px;
  padding: var(--space-3xl) var(--space-xl);
}

.legal-page h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-xs);
}

.legal-page .legal-updated {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2xl);
}

.legal-page h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: var(--space-2xl) 0 var(--space-sm);
  color: var(--color-text);
}

.legal-page p, .legal-page li {
  font-size: var(--font-size-md);
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-page ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-page a {
  color: var(--color-primary-dark);
}

/* ========================================
   Addons — Included / Optional Sections
   ======================================== */

.addons-included-section {
  margin-bottom: 1.5rem;
  background: var(--color-success-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 10px);
  padding: 1.25rem 1.25rem 1rem;
}

.addons-section-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.addons-section-heading .material-symbols-outlined {
  font-size: 1.1rem;
}

.addons-section-heading--included {
  color: var(--color-success-text);
}

.addons-section-heading--included .material-symbols-outlined {
  color: var(--color-success);
}

.addons-section-heading--optional {
  color: var(--color-text);
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.addons-section-heading--optional .material-symbols-outlined {
  color: var(--color-primary);
}

.addons-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.addon-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-sm, 6px);
  padding: 0.75rem;
  border: 1px solid var(--color-border);
}

.addon-included-item .addon-icon {
  color: var(--color-success);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.addons-optional-section {
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .addons-included-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Footer — Trust Signals
   ======================================== */

.footer-trust {
  text-align: center;
  padding: 1rem 0 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.75rem;
}

.footer-trust p {
  opacity: 0.75;
  font-size: 0.78rem;
  line-height: 1.7;
  margin: 0;
}

.footer-trust strong {
  color: rgba(255,255,255,0.95);
}

.footer-trust a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-trust a:hover {
  color: #fff;
  text-decoration: underline;
}


/* ========================================
   About Section
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-fact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--light);
  border-radius: 12px;
}

.about-fact .material-symbols-outlined {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-fact div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-fact strong {
  font-size: 0.95rem;
  color: var(--dark);
}

.about-fact span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Footer guide links */
.footer-guides {
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.footer-guides a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.82rem;
  margin: 0 6px;
  transition: color 0.2s;
}

.footer-guides a:hover { color: #fff; }

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================
   Booking Page Intro (booking.html Step 1)
   ========================================== */

.booking-page-intro {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.booking-page-intro-inner {
  width: 100%;
  max-width: 520px;
}

.booking-page-intro .booking-panel {
  position: static;
  transform: none;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

@media (max-width: 600px) {
  .booking-page-intro { padding: 64px 12px 32px; min-height: 200px; }
}

/* ==========================================
   Vehicle Spotlight (Step 3)
   ========================================== */

.spotlight-wrap { padding: 20px; max-width: 700px; margin: 0 auto; }

.spotlight-gallery { margin-bottom: 20px; }
.spotlight-hero { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: #111; }
.spotlight-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.spotlight-thumb { width: 80px; height: 56px; border-radius: 6px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: none; flex-shrink: 0; }
.spotlight-thumb.active { border-color: var(--color-primary, #e67e22); }
.spotlight-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.spotlight-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; gap: 16px; }
.spotlight-name { font-size: 1.5rem; margin: 0 0 4px; }
.spotlight-subtitle { color: var(--color-text-muted, #888); font-size: 0.9rem; margin: 0; }
.spotlight-price { font-size: 1.6rem; font-weight: 700; color: var(--color-primary, #e67e22); white-space: nowrap; }
.spotlight-price span { font-size: 0.85rem; font-weight: 400; color: var(--color-text-muted, #888); }

.spotlight-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.spec-item { background: var(--color-surface); border-radius: 8px; padding: 12px; text-align: center; }
.spec-label { display: block; font-size: 0.75rem; color: var(--color-text-muted, #888); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.spec-val { font-size: 0.95rem; font-weight: 600; }

.spotlight-features h3,
.spotlight-sleeping h3,
.spotlight-alternatives h3 { font-size: 1rem; margin: 0 0 12px; }
.spotlight-features ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 0 24px; }
.spotlight-features li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.spotlight-features .material-symbols-outlined { font-size: 1.1rem; color: var(--color-success); flex-shrink: 0; }

.sleeping-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.sleeping-item { display: flex; justify-content: space-between; background: var(--color-surface); border-radius: 6px; padding: 10px 14px; }
.sleeping-name { font-weight: 500; }
.sleeping-size { color: var(--color-text-muted, #888); font-size: 0.9rem; }

.spotlight-alternatives { margin-bottom: 8px; }
.alt-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.alt-card { display: flex; align-items: center; gap: 14px; background: var(--color-surface); border-radius: 10px; padding: 10px 14px; cursor: pointer; transition: background .15s; }
.alt-card:hover { background: var(--color-surface-hover, #ebebeb); }
.alt-card img { width: 72px; height: 52px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.alt-card-info { flex: 1; min-width: 0; }
.alt-card-info strong { display: block; font-size: 0.95rem; }
.alt-card-info span { font-size: 0.8rem; color: var(--color-text-muted, #888); }
.alt-switch-btn { background: var(--color-primary, #e67e22); color: #fff; border-radius: 6px; padding: 6px 14px; font-size: 0.85rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }

@media (max-width: 480px) {
  .spotlight-specs { grid-template-columns: repeat(2, 1fr); }
  .spotlight-features ul { grid-template-columns: 1fr; }
  .spotlight-header { flex-direction: column; gap: 8px; }
  .spotlight-thumb { width: 64px; height: 46px; }
}

/* ========================================
   Dark Mode Toggle
   ======================================== */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  margin-right: var(--space-sm);
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.theme-toggle .material-symbols-outlined {
  font-size: 20px;
}

/* Input fields dark mode */
/* Inputs use --color-input-bg (slightly different from --color-bg) */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: var(--color-input-bg);
  border-color: var(--color-border);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: var(--color-text-muted);
}

/* Mobile menu */
[data-theme="dark"] .mobile-menu-btn span {
  background: var(--color-text);
}

/* Hover states that used hardcoded light colors */
[data-theme="dark"] .alt-card:hover {
  background: rgba(255,255,255,0.06);
}

[data-theme="dark"] .lang-current:hover {
  background: rgba(255,255,255,0.06);
}

/* May discount badge */
[data-theme="dark"] .may-badge {
  background: rgba(255,153,0,0.25);
  color: var(--color-primary-light);
}

/* Suggestion banner (if shown) */
[data-theme="dark"] .suggestion-banner {
  background: rgba(255,153,0,0.12);
  border-color: rgba(255,153,0,0.3);
}

/* Vehicle selector card hover */
[data-theme="dark"] .vehicle-selector-card:hover {
  background: var(--color-surface);
}

/* Booking panel / sections use surface color for depth */
[data-theme="dark"] .booking-flow-header,
[data-theme="dark"] .carousel-viewport,
[data-theme="dark"] .booking-panel,
[data-theme="dark"] .price-summary,
[data-theme="dark"] .booking-section,
[data-theme="dark"] .rv-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .blog-modal-content,
[data-theme="dark"] .contact-form-wrapper,
[data-theme="dark"] .vehicle-selector-card {
  background: var(--color-surface);
}

/* Winter warning text stays readable */
[data-theme="dark"] .winter-warning {
  border-color: rgba(255,193,7,0.4);
}

.confirmation-note {
  background: var(--color-warning-bg);
  border: 1px solid #ffc107;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: left;
  color: var(--color-text);
}

[data-theme="dark"] .confirmation-note {
  border-color: rgba(255,193,7,0.4);
}
