/* ============================================
   WHEELSO — Brand System
   ============================================ */
:root {
  /* Brand colors (from PDF guidelines) */
  --wh-blue-dark: #093D5E;     /* Pantone 2955 C */
  --wh-blue-mid:  #1C5875;     /* Pantone 7700 C */
  --wh-lime:      #CFDD28;     /* Pantone 380 C */

  /* Derived shades */
  --wh-blue-deep: #062b42;
  --wh-blue-soft: #e6eef3;
  --wh-lime-hover: #b8c422;
  --wh-lime-soft:  #f1f6c2;

  /* Neutrals */
  --wh-white: #ffffff;
  --wh-gray-50:  #f7f8fa;
  --wh-gray-100: #eef0f4;
  --wh-gray-200: #dfe3eb;
  --wh-gray-300: #c4cad6;
  --wh-gray-500: #6b7280;
  --wh-gray-700: #374151;
  --wh-gray-900: #111827;

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Spacing & sizes */
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(9, 61, 94, 0.06);
  --shadow-md: 0 4px 12px rgba(9, 61, 94, 0.08), 0 1px 3px rgba(9, 61, 94, 0.05);
  --shadow-lg: 0 20px 40px rgba(9, 61, 94, 0.15), 0 8px 16px rgba(9, 61, 94, 0.08);
  --shadow-xl: 0 30px 60px rgba(9, 61, 94, 0.2), 0 12px 24px rgba(9, 61, 94, 0.1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--wh-gray-900);
  background: var(--wh-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* Mobile Safari overflow guard */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (-webkit-touch-callout: none) {
  body {
    position: relative;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
}
.btn-primary:hover {
  background: var(--wh-lime-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(207, 221, 40, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  color: var(--wh-white);
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wh-blue-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 32px;
}

.logo img {
  height: 38px;
  width: auto;
  transition: transform 0.2s;
}
.logo:hover img { transform: scale(1.02); }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: all 0.2s;
}
.nav-link:hover {
  color: var(--wh-white);
  background: rgba(255,255,255,0.06);
}
.nav-link.active {
  color: var(--wh-blue-dark);
  background: var(--wh-lime);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.lang-btn {
  padding: 4px 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--wh-white); }
.lang-btn.active { color: var(--wh-lime); }
.lang-divider { color: rgba(255,255,255,0.3); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--wh-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--wh-blue-dark);
  overflow: visible;
  padding-bottom: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.hero::after {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Fallback for browsers without image-set support */
  background: url('./assets/hero.webp') center center / cover no-repeat;
  /* Retina/HiDPI screens get the 2x version */
  background-image: image-set(
    url('./assets/hero.webp') 1x,
    url('./assets/hero-2x.webp') 2x
  );
}

/* Tablet: smaller hero image */
@media (max-width: 1200px) {
  .hero-bg {
    background-image: url('./assets/hero-1200.webp');
  }
}

@media (max-width: 720px) {
  .hero-bg {
    background: url('./assets/hero-768.webp') center center / cover no-repeat;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(9, 61, 94, 0.4) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 70%, var(--wh-blue-dark) 100%);
}

/* Decorative car silhouette */
.hero::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: 100px;
  width: 600px;
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 280' fill='none'%3E%3Cpath d='M50 180 L100 180 C100 200 120 220 140 220 C160 220 180 200 180 180 L420 180 C420 200 440 220 460 220 C480 220 500 200 500 180 L550 180 L550 140 L520 130 L460 90 C450 80 430 75 410 75 L240 75 C220 75 200 80 185 95 L130 140 L80 145 C60 148 50 158 50 170 Z' stroke='%23CFDD28' stroke-width='2' opacity='0.15'/%3E%3Ccircle cx='140' cy='220' r='28' stroke='%23CFDD28' stroke-width='2' opacity='0.2'/%3E%3Ccircle cx='460' cy='220' r='28' stroke='%23CFDD28' stroke-width='2' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  flex: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-copy {
  color: var(--wh-white);
  max-width: 540px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(207, 221, 40, 0.12);
  border: 1px solid rgba(207, 221, 40, 0.3);
  color: var(--wh-lime);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wh-lime);
  box-shadow: 0 0 0 4px rgba(207, 221, 40, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--wh-white);
}
.hero-title em {
  font-style: italic;
  color: var(--wh-lime);
  font-weight: 700;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 460px;
}

/* ============================================
   BOOKING WIDGET
   ============================================ */
.booking-widget {
  background: var(--wh-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: visible;
  position: relative;
  z-index: 5;
}

.booking-tabs {
  display: flex;
  background: var(--wh-gray-50);
  border-bottom: 1px solid var(--wh-gray-100);
  padding: 6px;
  gap: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  color: var(--wh-gray-500);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.booking-tab.active {
  background: var(--wh-white);
  color: var(--wh-blue-dark);
  box-shadow: var(--shadow-sm);
}

.booking-fields {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wh-gray-500);
}
.optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--wh-gray-300);
  font-weight: 500;
}

.select-wrap,
.datetime-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--wh-gray-50);
  border: 1.5px solid var(--wh-gray-100);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  padding-left: 40px;
}
.select-wrap:focus-within,
.datetime-wrap:focus-within,
.field-input:focus {
  border-color: var(--wh-blue-mid);
  background: var(--wh-white);
  box-shadow: 0 0 0 3px rgba(28, 88, 117, 0.1);
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--wh-blue-mid);
  pointer-events: none;
  z-index: 1;
}

.field-select,
.field-input {
  width: 100%;
  flex: 1;
  padding: 14px 40px 14px 4px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--wh-gray-900);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 0;
}
.field-select:focus,
.field-input:focus { outline: none; }

.field-input-text {
  cursor: text;
  padding-left: 14px;
}

.field-chevron {
  position: absolute;
  right: 14px;
  color: var(--wh-gray-500);
  pointer-events: none;
}

/* ============================================
   DATE RANGE PICKER
   ============================================ */
.daterange-container {
  position: relative;
}
.field-daterange { position: static; }

.daterange-trigger {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--wh-gray-50);
  border: 1.5px solid var(--wh-gray-100);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all 0.2s;
}
.daterange-trigger:hover {
  border-color: var(--wh-gray-200);
}
.daterange-trigger.open,
.daterange-trigger:focus-visible {
  border-color: var(--wh-blue-mid);
  background: var(--wh-white);
  box-shadow: 0 0 0 3px rgba(28, 88, 117, 0.1);
  outline: none;
}

.daterange-side {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.field-icon-static {
  color: var(--wh-blue-mid);
  flex-shrink: 0;
}

.daterange-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.daterange-mini-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--wh-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.daterange-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--wh-blue-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.daterange-value.placeholder { color: var(--wh-gray-300); font-weight: 500; }

.daterange-arrow {
  color: var(--wh-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Time row */
.time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.time-field {
  display: flex;
  flex-direction: column;
  background: var(--wh-gray-50);
  border: 1.5px solid var(--wh-gray-100);
  border-radius: var(--radius-md);
  padding: 8px 12px 6px;
  transition: all 0.2s;
}
.time-field:focus-within {
  border-color: var(--wh-blue-mid);
  background: var(--wh-white);
  box-shadow: 0 0 0 3px rgba(28, 88, 117, 0.1);
}
.time-mini-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--wh-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field-time-select {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--wh-blue-dark);
  padding: 2px 22px 2px 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
}
.field-time-select:focus { outline: none; }

/* ============================================
   DATE RANGE POPOVER
   ============================================ */
.daterange-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 100;
  width: max(100%, 560px);
  background: var(--wh-white);
  border: 1px solid var(--wh-gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0;
  animation: popoverIn 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.daterange-popover[hidden] { display: none; }

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

.daterange-popover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 8px;
  gap: 12px;
}

.cal-nav-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--wh-blue-dark);
  background: var(--wh-gray-50);
  transition: all 0.15s;
}
.cal-nav-btn:hover {
  background: var(--wh-blue-soft);
  color: var(--wh-blue-mid);
}
.cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cal-months-titles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
  text-align: center;
}
.cal-months-titles span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  letter-spacing: -0.01em;
}

.daterange-popover-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 8px 20px 16px;
}

.cal-month {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
  font-size: 13px;
  min-width: 0;
}
.cal-dow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--wh-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 0 6px;
}
.cal-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--wh-gray-900);
  cursor: pointer;
  border-radius: 0;
  transition: color 0.1s;
  user-select: none;
  min-width: 0;
}
.cal-day::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  z-index: 0;
  transition: background 0.1s;
}
.cal-day > span {
  position: relative;
  z-index: 1;
}
.cal-day:hover::before {
  background: var(--wh-gray-100);
}
.cal-day.empty {
  cursor: default;
  pointer-events: none;
}
.cal-day.disabled {
  color: var(--wh-gray-300);
  cursor: not-allowed;
}
.cal-day.disabled:hover::before { background: transparent; }

/* In-range styling: square background spanning days */
.cal-day.in-range {
  background: var(--wh-blue-soft);
}
.cal-day.range-start,
.cal-day.range-end {
  color: var(--wh-white);
  font-weight: 700;
}
.cal-day.range-start::before,
.cal-day.range-end::before {
  background: var(--wh-blue-dark);
}
.cal-day.range-start.range-end {
  background: transparent;
}
/* Half-fill for start (right side blue-soft) */
.cal-day.range-start:not(.range-end) {
  background: linear-gradient(to right, transparent 50%, var(--wh-blue-soft) 50%);
}
.cal-day.range-end:not(.range-start) {
  background: linear-gradient(to right, var(--wh-blue-soft) 50%, transparent 50%);
}

/* Hover preview range (while picking second date) */
.cal-day.preview-range {
  background: var(--wh-gray-100);
}
.cal-day.preview-end {
  color: var(--wh-blue-dark);
  font-weight: 700;
}
.cal-day.preview-end::before {
  background: var(--wh-blue-soft);
  border: 2px dashed var(--wh-blue-mid);
}
.cal-day.preview-end:not(.range-start) {
  background: linear-gradient(to right, var(--wh-gray-100) 50%, transparent 50%);
}

.cal-day.today:not(.range-start):not(.range-end) {
  font-weight: 700;
}
.cal-day.today:not(.range-start):not(.range-end) span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--wh-lime);
}

.daterange-popover-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--wh-gray-100);
  background: var(--wh-gray-50);
}

.daterange-hint {
  font-size: 13px;
  color: var(--wh-gray-500);
  font-weight: 500;
}
.daterange-hint strong {
  color: var(--wh-blue-dark);
  font-weight: 700;
}

.daterange-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-text {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wh-gray-500);
  border-radius: 8px;
  transition: all 0.15s;
}
.btn-text:hover {
  color: var(--wh-blue-dark);
  background: var(--wh-gray-100);
}
.btn-confirm {
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  background: var(--wh-lime);
  border-radius: 999px;
  transition: all 0.15s;
}
.btn-confirm:hover {
  background: var(--wh-lime-hover);
  transform: translateY(-1px);
}
.btn-confirm:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Mobile: bottom drawer (90vh) — shows header peek behind */
@media (max-width: 720px) {
  /* Backdrop element (created by JS, appended to body) */
  .daterange-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 61, 94, 0.45);
    z-index: 9998;
    animation: backdropFadeIn 0.25s ease;
    pointer-events: auto;
  }

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

  /* Drawer panel — 90vh from bottom, opaque white */
  .daterange-popover {
    position: fixed !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 90vh;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: #ffffff !important;
    animation: sheetIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(9, 61, 94, 0.18);
    overflow: hidden;
  }

  @keyframes sheetIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  /* Sticky header with month nav buttons — close button sits in its own row above */
  .daterange-popover-header {
    background: var(--wh-white);
    border-bottom: 1px solid var(--wh-gray-100);
    padding: 8px 16px 12px;
    gap: 8px;
    flex-shrink: 0;
  }

  /* Container for absolute-positioned close button */
  .daterange-popover {
    position: fixed !important;
  }

  /* Drag handle indicator at top of drawer */
  .daterange-popover::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: var(--wh-gray-200);
    border-radius: 2px;
    z-index: 3;
    pointer-events: none;
  }

  /* Bigger touch targets for prev/next month buttons on mobile */
  .cal-nav-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--wh-gray-100);
  }

  /* Mobile close button — own row at top of drawer, right-aligned */
  .daterange-back-btn {
    align-self: flex-end;
    margin: 18px 14px 4px auto;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wh-gray-100);
    color: var(--wh-blue-dark);
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    z-index: 11;
    padding: 0;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .daterange-back-btn:hover,
  .daterange-back-btn:active {
    background: var(--wh-gray-200);
  }

  /* Single month title centered */
  .cal-months-titles {
    grid-template-columns: 1fr;
  }
  .cal-months-titles span {
    font-size: 16px;
  }
  #calTitle2 { display: none; }

  /* Scrollable body — internal scroll only, no body bleed */
  .daterange-popover-body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 16px 16px 100px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* Hide second month — nav to scroll through */
  #calMonth2 { display: none; }

  /* Larger touch targets */
  .cal-dow {
    font-size: 10.5px;
    padding: 10px 0 8px;
  }
  .cal-day {
    font-size: 15px;
  }

  /* Sticky footer */
  .daterange-popover-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    background: var(--wh-white);
    border-top: 1px solid var(--wh-gray-100);
    box-shadow: 0 -4px 16px rgba(9, 61, 94, 0.06);
  }

  .daterange-hint { font-size: 13px; }

  .btn-confirm {
    padding: 12px 24px;
    font-size: 14.5px;
  }

  /* Lock body scroll when drawer is open — iOS-safe */
  body.daterange-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    /* top set by JS to preserve scroll position */
  }
}

/* Hide back button on desktop */
@media (min-width: 721px) {
  .daterange-back-btn { display: none !important; }
}

@media (min-width: 721px) {
  .daterange-popover::before { display: none; }
}
.field-time:focus { outline: none; }

/* Hidden field via hidden attribute */
.field[hidden] { display: none !important; }

/* Rows */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Checkbox toggle */
.field-toggle { padding: 2px 4px; }
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--wh-gray-700);
  font-weight: 500;
  user-select: none;
}
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--wh-gray-300);
  border-radius: 5px;
  background: var(--wh-white);
  position: relative;
  transition: all 0.2s;
}
.checkbox-box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 11px;
  border: solid var(--wh-blue-dark);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s;
}
.checkbox input:checked ~ .checkbox-box {
  border-color: var(--wh-lime);
  background: var(--wh-lime);
}
.checkbox input:checked ~ .checkbox-box::after {
  transform: rotate(45deg) scale(1);
}

/* Submit */
.btn-search {
  width: 100%;
  margin-top: 6px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: auto;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--wh-white);
  flex: 1;
  min-width: 0;
}
.trust-item svg {
  flex-shrink: 0;
  color: var(--wh-lime);
  background: rgba(207, 221, 40, 0.12);
  padding: 9px;
  border-radius: 10px;
  width: 40px;
  height: 40px;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--wh-white);
  letter-spacing: -0.01em;
  margin-bottom: 1px;
}
.trust-item span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Fleet section removed from homepage — see search.html */
.fleet { display: none; }
.next-section-placeholder { display: none; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--wh-blue-soft);
  color: var(--wh-blue-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--wh-blue-dark);
  margin: 0 0 14px;
}
.section-title em {
  font-style: italic;
  color: var(--wh-blue-mid);
  font-weight: 700;
}

.section-sub {
  font-size: 17px;
  color: var(--wh-gray-500);
  line-height: 1.55;
  margin: 0;
}

/* Filter chips */
.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--wh-gray-50);
  border: 1.5px solid var(--wh-gray-100);
  color: var(--wh-gray-700);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-chip:hover {
  background: var(--wh-white);
  border-color: var(--wh-gray-300);
}
.filter-chip.active {
  background: var(--wh-blue-dark);
  border-color: var(--wh-blue-dark);
  color: var(--wh-white);
}
.filter-chip.active .chip-count {
  background: rgba(255,255,255,0.18);
  color: var(--wh-white);
}
.chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--wh-gray-200);
  color: var(--wh-gray-700);
  font-size: 11px;
  font-weight: 700;
}

/* Vehicle grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.vehicle-card {
  background: var(--wh-white);
  border: 1.5px solid var(--wh-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  animation: cardIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
  cursor: pointer;
}
.vehicle-card:hover {
  border-color: var(--wh-lime);
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px var(--wh-lime), var(--shadow-lg);
}
.vehicle-card[hidden] { display: none !important; }
.vehicle-card { cursor: pointer; }

/* ============================================
   VEHICLE MODAL
   ============================================ */
.vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.vehicle-modal[hidden] { display: none; }
.vehicle-modal.open { opacity: 1; }

.vehicle-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 61, 94, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vehicle-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-areas:
    "preview options"
    "preview footer";
  grid-template-rows: 1fr auto;
  width: min(960px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  background: var(--wh-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.vehicle-modal.open .vehicle-modal-panel {
  transform: translateY(0) scale(1);
}
.modal-scroll-area { display: contents; }
.modal-preview { grid-area: preview; }
.modal-options, .modal-step { grid-area: options; }
.modal-footer { grid-area: footer; }

.vehicle-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wh-white);
  color: var(--wh-blue-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}
.vehicle-modal-close:hover {
  background: var(--wh-gray-100);
  transform: rotate(90deg);
}

/* LEFT — preview */
.modal-preview {
  background: linear-gradient(160deg, var(--wh-blue-soft) 0%, var(--wh-white) 100%);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal-preview-image {
  background: var(--wh-white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 11;
}
.modal-preview-image svg {
  width: 85%;
  filter: drop-shadow(0 14px 22px rgba(9, 61, 94, 0.18));
}
.modal-preview-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-preview-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--wh-blue-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.modal-preview-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.02em;
  margin: 2px 0 0;
}
.modal-preview-similar {
  font-size: 13px;
  color: var(--wh-gray-500);
}
.modal-preview-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--wh-gray-200);
}
.modal-preview-specs .spec {
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.modal-preview-specs .spec svg {
  width: 16px;
  height: 16px;
}
.modal-preview-specs .spec-value {
  font-size: 13px;
}

/* RIGHT — options */
.modal-options {
  padding: 28px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  background: var(--wh-white);
  min-height: 0;
}

.modal-section-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  letter-spacing: -0.01em;
  margin: 0;
}

.modal-step-indicator {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.step-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--wh-blue-soft);
  color: var(--wh-blue-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.modal-section-sub {
  font-size: 13.5px;
  color: var(--wh-gray-500);
  line-height: 1.5;
  margin: 0;
}
.step-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  padding: 4px 10px 4px 6px;
  border-radius: 999px;
  background: var(--wh-gray-100);
  color: var(--wh-blue-dark);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: all 0.15s;
}
.step-back:hover {
  background: var(--wh-gray-200);
}

.modal-step[hidden] { display: none !important; }

.modal-option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--wh-gray-200);
  border-radius: var(--radius-md);
  background: var(--wh-white);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}
.modal-option:hover {
  border-color: var(--wh-gray-300);
  background: var(--wh-gray-50);
}
.modal-option.selected {
  border-color: var(--wh-blue-dark);
  background: var(--wh-white);
  box-shadow: 0 0 0 1px var(--wh-blue-dark);
}
.modal-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.modal-option-radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--wh-gray-300);
  border-radius: 50%;
  background: var(--wh-white);
  margin-top: 2px;
  position: relative;
  transition: all 0.15s;
}
.modal-option.selected .modal-option-radio {
  border-color: var(--wh-blue-dark);
}
.modal-option.selected .modal-option-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--wh-blue-dark);
}

.modal-option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.modal-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-option-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  letter-spacing: -0.005em;
}
.modal-option-desc {
  font-size: 13px;
  color: var(--wh-gray-500);
  line-height: 1.45;
}
.modal-option-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-option-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wh-blue-dark);
}
.modal-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--wh-blue-dark);
  color: var(--wh-white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.modal-tag.tag-lime {
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
}
.modal-included {
  font-size: 13px;
  font-weight: 700;
  color: var(--wh-blue-mid);
}

.modal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--wh-gray-100);
}
.modal-feature {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wh-blue-mid);
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 28px;
  border-top: 1px solid var(--wh-gray-100);
  background: var(--wh-white);
}
.modal-pricing {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.modal-price-big {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--wh-blue-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.modal-price-big strong { font-weight: 800; }
.modal-price-big span {
  font-size: 14px;
  font-weight: 500;
  color: var(--wh-gray-500);
}
.modal-price-total {
  font-size: 12.5px;
  color: var(--wh-gray-500);
}

.modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.2s;
}
.modal-cta:hover {
  background: var(--wh-lime-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(207, 221, 40, 0.4);
}

/* Modal responsive */
@media (max-width: 760px) {
  .vehicle-modal {
    align-items: stretch;
    justify-content: stretch;
  }
  .vehicle-modal-panel {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-template-rows: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .modal-option {
    min-width: 0;
    box-sizing: border-box;
  }
  .modal-option-content {
    min-width: 0;
    overflow: hidden;
  }
  .modal-option-row {
    min-width: 0;
  }
  .modal-option-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Scrollable container wraps preview + options */
  .modal-scroll-area {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
  }

  /* Preview compact */
  .modal-preview {
    padding: 8px 16px 10px;
    background: linear-gradient(160deg, var(--wh-blue-soft) 0%, var(--wh-white) 100%);
    border-bottom: 1px solid var(--wh-gray-100);
  }
  .modal-preview-image {
    aspect-ratio: 16 / 5;
    padding: 4px 16px;
  }
  .modal-preview-image svg {
    width: 50%;
  }
  .modal-preview-name {
    font-size: 18px;
  }
  .modal-preview-info {
    gap: 2px;
  }
  .modal-preview-specs {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 6px;
    padding-top: 8px;
    gap: 4px;
  }
  .modal-preview-specs .spec {
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }
  .modal-preview-specs .spec-value {
    font-size: 11px;
  }

  /* Options compact */
  .modal-options {
    padding: 12px 16px;
    overflow: visible;
    gap: 10px;
  }

  /* Footer always visible at bottom */
  .modal-footer {
    position: relative;
    margin-top: auto;
    background: var(--wh-white);
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--wh-gray-200);
    box-shadow: 0 -4px 16px rgba(9, 61, 94, 0.08);
    flex-shrink: 0;
    z-index: 10;
  }
  .modal-cta {
    flex: 0 0 auto;
    padding: 13px 22px;
    font-size: 14.5px;
  }
  .modal-price-big {
    font-size: 20px;
  }
  .modal-price-total {
    font-size: 12px;
  }

  /* Close button stays on top */
  .vehicle-modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    z-index: 10;
  }

  /* Body lock when modal open */
  body.vehicle-modal-open {
    overflow: hidden;
  }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.vehicle-card[hidden] { display: none !important; }

.vehicle-image {
  position: relative;
  background: linear-gradient(160deg, var(--wh-gray-50) 0%, var(--wh-blue-soft) 100%);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vehicle-image svg {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(9, 61, 94, 0.15));
}

.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--wh-white);
  color: var(--wh-blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.vehicle-badge.transmission-auto {
  background: var(--wh-lime);
}
.vehicle-badge.on-request {
  left: auto;
  right: 12px;
  background: #FEF3C7;
  color: #B45309;
}
.on-request-note {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #B45309;
  opacity: 0.85;
}

.vehicle-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.vehicle-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicle-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--wh-blue-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.vehicle-similar {
  font-size: 12.5px;
  color: var(--wh-gray-500);
  font-weight: 500;
}

/* Specs grid */
.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid var(--wh-gray-100);
  border-bottom: 1px solid var(--wh-gray-100);
}
.spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--wh-gray-700);
}
.spec svg {
  width: 18px;
  height: 18px;
  color: var(--wh-blue-mid);
}
.spec-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--wh-blue-dark);
}

/* Footer of card */
.vehicle-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.vehicle-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-from {
  font-size: 11px;
  font-weight: 600;
  color: var(--wh-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.025em;
  line-height: 1;
}
.price-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--wh-gray-500);
  margin-left: 2px;
}

.vehicle-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--wh-blue-dark);
  color: var(--wh-white);
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s;
  white-space: nowrap;
}
.vehicle-cta:hover {
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
  transform: translateY(-1px);
}
.vehicle-cta svg {
  transition: transform 0.2s;
}
.vehicle-cta:hover svg {
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 720px) {
  .fleet { padding: 60px 0 50px; }
  .section-head { margin-bottom: 28px; }
  .fleet-filters { margin-bottom: 24px; }
  .filter-chip { padding: 8px 14px; font-size: 13px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .vehicle-name { font-size: 17px; }
  .price-amount { font-size: 22px; }
}
.next-section-placeholder {
  padding: 80px 0;
  background: var(--wh-gray-50);
  text-align: center;
}
.placeholder-text {
  color: var(--wh-gray-300);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .hero-copy { max-width: 100%; }
  .hero-title { font-size: clamp(36px, 8vw, 52px); }

  .trust-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 24px;
  }
  .trust-item { flex: 0 0 calc(50% - 12px); }
  .trust-divider { display: none; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }

  .header-inner { gap: 16px; }
  .logo img { height: 36px; }

  .booking-fields { padding: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .booking-tab { padding: 10px 14px; font-size: 13px; }

  .hero-title {
    font-size: clamp(32px, 9vw, 44px);
    text-shadow: none;
  }
  .hero-sub {
    font-size: 16px;
    color: var(--wh-blue-dark);
    text-shadow: none;
  }
  .eyebrow { font-size: 12px; padding: 6px 12px; }

  .trust-strip {
    display: block !important;
    padding: 18px 0 24px;
  }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-inline: 20px;
  }
  .trust-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
  }
  .trust-item svg { width: 22px; height: 22px; padding: 0; }
  .trust-item strong { font-size: 12px; line-height: 1.25; }
  .trust-item span { font-size: 10.5px; opacity: 0.7; line-height: 1.3; }
  .trust-divider { display: none; }

  .field-time { width: 80px; }
}

@media (max-width: 420px) {
  .container { padding-inline: 16px; }
  .booking-fields { padding: 14px; }
  .booking-tabs { padding: 4px; }
  .lang-switcher { font-size: 12px; }
}

/* ============================================
   PROTECTION SELECTION PAGE
   ============================================ */
.protection-page {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--wh-gray-50);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.protection-page[hidden] { display: none; }

.protection-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--wh-white);
  border-bottom: 1px solid var(--wh-gray-100);
  box-shadow: var(--shadow-sm);
}
.protection-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
}
.protection-home-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--wh-blue-dark);
  padding: 6px 10px;
  border-radius: 8px;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.protection-home-logo:hover { opacity: 1; }
.protection-home-logo img {
  height: 28px;
  width: auto;
}
@media (max-width: 500px) {
  .protection-home-logo img { height: 22px; }
}
.protection-back {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wh-gray-100);
  color: var(--wh-blue-dark);
  transition: all 0.15s;
  flex-shrink: 0;
}
.protection-back:hover { background: var(--wh-gray-200); }
.protection-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.02em;
  margin: 0;
  flex: 1;
  text-transform: uppercase;
}
.protection-summary {
  display: flex;
  align-items: center;
  gap: 20px;
}
.protection-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  line-height: 1.2;
}
.protection-total-label {
  font-size: 12px;
  color: var(--wh-gray-500);
  font-weight: 500;
}
.protection-total-amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.02em;
}
.protection-total-sub {
  font-size: 11px;
  color: var(--wh-gray-500);
  font-weight: 400;
}
.protection-breakdown {
  font-size: 12px;
  color: var(--wh-blue-mid);
  text-decoration: underline;
}
.protection-continue {
  padding: 12px 28px;
  font-size: 15px;
}

.protection-main { padding: 32px 0 60px; }

.protection-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--wh-white);
  border: 1px solid var(--wh-gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--wh-gray-700);
}
.protection-notice svg {
  color: var(--wh-blue-mid);
  flex-shrink: 0;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.protection-card {
  background: var(--wh-white);
  border: 2px solid var(--wh-gray-100);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  min-height: 480px;
}
.protection-card:hover {
  border-color: var(--wh-gray-300);
}
.protection-card.selected {
  border-color: var(--wh-blue-dark);
  box-shadow: 0 0 0 2px var(--wh-blue-dark), var(--shadow-lg);
}
.protection-card.recommended {
  border-color: var(--wh-gray-100);
}
.protection-card.recommended.selected {
  border-color: var(--wh-blue-dark);
  box-shadow: 0 0 0 2px var(--wh-blue-dark), var(--shadow-lg);
}

.protection-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 1;
}

.protection-coverage-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.protection-coverage-seg {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--wh-gray-100);
  transition: background 0.15s;
}
.protection-coverage-seg.on {
  background: var(--wh-blue-dark);
}
.protection-coverage-seg.on.lime {
  background: var(--wh-lime);
}

.protection-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--wh-gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.protection-card-radio {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--wh-gray-300);
  border-radius: 50%;
  background: var(--wh-white);
  transition: all 0.15s;
}
.protection-card.selected .protection-card-radio {
  border-color: var(--wh-blue-dark);
}
.protection-card.selected .protection-card-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--wh-blue-dark);
}

.protection-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.015em;
  line-height: 1.15;
  padding-right: 36px;
  margin-bottom: 10px;
}

.protection-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}
.protection-card-name {
  margin: 0;
  line-height: 1.25;
}

.protection-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  background: #EFF6FF;
  color: var(--wh-blue-dark);
  letter-spacing: 0.5px;
  cursor: help;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  outline: none;
}
.protection-tag::after {
  content: '?';
  font-size: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--wh-blue-dark);
  color: #EFF6FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.protection-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--wh-blue-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  padding: 8px 10px;
  border-radius: 6px;
  width: 200px;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(9,61,94,0.18);
}
.protection-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--wh-blue-dark);
}
.protection-tag:hover .protection-tooltip,
.protection-tag:focus .protection-tooltip {
  opacity: 1;
  visibility: visible;
}

.protection-risk {
  padding: 10px 12px;
  border-radius: 6px;
  margin: 0 0 14px;
}
.protection-risk.bad  { background: #FEF2F2; }
.protection-risk.mid  { background: #FFFBEB; }
.protection-risk.good { background: #ECFDF5; }
.protection-risk-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.protection-risk.bad  .protection-risk-label { color: #991B1B; }
.protection-risk.mid  .protection-risk-label { color: #92400E; }
.protection-risk.good .protection-risk-label { color: #065F46; }
.protection-risk-value {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}
.protection-risk.bad  .protection-risk-value { color: #B91C1C; }
.protection-risk.mid  .protection-risk-value { color: #B45309; }
.protection-risk.good .protection-risk-value { color: #047857; }

.protection-discount {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.protection-excess {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wh-gray-100);
}
.protection-excess strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--wh-gray-500);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.protection-excess.danger { color: #c0392b; }
.protection-excess.warning { color: var(--wh-blue-dark); }
.protection-excess.good { color: #1f8a4a; }

.protection-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  flex: 1;
}
.protection-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}
.protection-feature.included { color: var(--wh-blue-dark); }
.protection-feature.excluded { color: var(--wh-gray-300); }
.protection-feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.protection-feature.included .protection-feature-icon { color: var(--wh-blue-mid); }
.protection-feature.excluded .protection-feature-icon { color: var(--wh-gray-300); }

.protection-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--wh-gray-100);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.protection-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--wh-gray-500);
}
.protection-price-old {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--wh-gray-300);
  text-decoration: line-through;
  margin-top: 2px;
}

.protection-footnote {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--wh-gray-100);
  font-size: 11px;
  line-height: 1.45;
  color: var(--wh-gray-500);
}
.protection-footnote a.excl-trigger {
  color: var(--wh-blue-mid);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
.protection-footnote a.excl-trigger:hover {
  color: var(--wh-blue-dark);
}

/* Trust strip — transparency selling points */
.protection-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: center;
  padding: 16px 20px;
  background: var(--wh-white);
  border: 1px solid var(--wh-gray-100);
  border-radius: var(--radius-lg);
  margin: 0 0 24px;
}
.protection-trust-strip .trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wh-blue-dark);
}
.protection-trust-strip .trust-strip-item svg {
  flex-shrink: 0;
  color: var(--wh-lime);
  background: var(--wh-blue-dark);
  border-radius: 50%;
  padding: 3px;
  width: 20px;
  height: 20px;
}

.protection-overview {
  background: var(--wh-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--wh-gray-100);
}
.protection-overview-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.protection-overview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.protection-overview-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--wh-gray-700);
}
.protection-overview-list svg {
  color: var(--wh-lime);
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 760px) {
  .protection-header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }
  .protection-title {
    font-size: 16px;
    order: 1;
    flex: 1;
    min-width: 0;
  }
  .protection-back { order: 0; width: 36px; height: 36px; }
  .protection-summary {
    order: 2;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .protection-total { align-items: flex-start; }
  .protection-total-amount { font-size: 18px; }
  .protection-continue {
    padding: 10px 22px;
    font-size: 14px;
  }
  .protection-main { padding: 20px 0 40px; }
  .protection-grid { grid-template-columns: 1fr; gap: 14px; }
  .protection-card { min-height: 0; padding: 18px; }
  .protection-card-name { font-size: 17px; }
}

body.protection-open { overflow: hidden; }

/* ============================================
   SEARCH RESULTS PAGE
   ============================================ */
.search-bar {
  position: sticky;
  top: 70px;
  z-index: 80;
  background: var(--wh-white);
  border-bottom: 1px solid var(--wh-gray-100);
  box-shadow: var(--shadow-sm);
}
.search-bar-inner {
  padding: 14px 24px;
}
.search-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 12px 18px;
  background: var(--wh-gray-50);
  border: 1.5px solid var(--wh-gray-100);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all 0.15s;
}
.search-summary:hover {
  background: var(--wh-white);
  border-color: var(--wh-blue-mid);
}
.search-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.search-summary-item svg {
  color: var(--wh-blue-mid);
  flex-shrink: 0;
}
.search-summary-item div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.summary-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--wh-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.summary-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--wh-blue-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-summary-divider {
  width: 1px;
  height: 32px;
  background: var(--wh-gray-200);
  flex-shrink: 0;
}
.search-modify {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--wh-blue-dark);
  color: var(--wh-white);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Results main */
.results-main {
  padding: 32px 0 60px;
  background: var(--wh-gray-50);
  min-height: calc(100vh - 200px);
}

.results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.results-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.results-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--wh-gray-500);
  margin-top: 4px;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.results-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.results-sort label {
  font-size: 13px;
  font-weight: 600;
  color: var(--wh-gray-700);
}
.sort-select {
  padding: 8px 32px 8px 14px;
  border: 1.5px solid var(--wh-gray-200);
  border-radius: 8px;
  background: var(--wh-white);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wh-blue-dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
.sort-select:focus { outline: 2px solid var(--wh-blue-mid); outline-offset: 1px; }

.results-filters {
  margin-bottom: 14px;
}

.secondary-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pill-filter {
  padding: 7px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--wh-gray-200);
  color: var(--wh-gray-700);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.pill-filter:hover {
  background: var(--wh-white);
  border-color: var(--wh-gray-300);
}
.pill-filter.active {
  background: var(--wh-lime);
  border-color: var(--wh-lime);
  color: var(--wh-blue-dark);
}

.price-total-stay {
  display: block;
  font-size: 11.5px;
  color: var(--wh-gray-500);
  font-weight: 500;
  margin-top: 2px;
}

.results-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--wh-gray-500);
}
.results-empty svg {
  color: var(--wh-gray-300);
  margin: 0 auto 16px;
  display: block;
}
.results-empty h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--wh-blue-dark);
  margin: 0 0 6px;
}
.results-empty p {
  font-size: 14px;
  margin: 0;
}

/* Mobile */
@media (max-width: 760px) {
  .search-bar { top: 64px; }
  .search-bar-inner { padding: 10px 16px; }
  .search-summary {
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 10px;
  }
  .search-summary-item { flex: 1 1 100%; }
  .search-summary-divider { display: none; }
  .summary-value { white-space: normal; font-size: 13px; }
  .search-modify {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
  .results-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .results-title { font-size: 22px; }
  .results-subtitle { font-size: 13px; }
  .results-sort { width: 100%; }
  .sort-select { flex: 1; }
  .results-main { padding: 20px 0 40px; }
}

/* ============================================
   EXTRAS PAGE (Step 3)
   ============================================ */
.extras-page {
  position: fixed;
  inset: 0;
  z-index: 410;
  background: var(--wh-gray-50);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.extras-page[hidden] { display: none; }

.extras-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.extras-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.extra-card {
  background: var(--wh-white);
  border: 2px solid var(--wh-gray-100);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all 0.2s;
}
.extra-card.selected {
  border-color: var(--wh-blue-dark);
  background: var(--wh-white);
  box-shadow: 0 0 0 1px var(--wh-blue-dark);
}

.extra-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.extra-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wh-blue-soft);
  border-radius: 12px;
  color: var(--wh-blue-mid);
}
.extra-card.selected .extra-icon {
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
}

.extra-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.extra-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  letter-spacing: -0.01em;
  margin: 0;
}
.extra-summary {
  font-size: 13px;
  color: var(--wh-gray-500);
  line-height: 1.4;
  margin: 0;
}
.extra-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--wh-blue-mid);
  margin-top: 2px;
}

.extra-controls {
  flex-shrink: 0;
}

/* Toggle switch */
.extra-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  background: var(--wh-gray-200);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.extra-toggle.on {
  background: var(--wh-blue-dark);
}
.extra-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wh-white);
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.extra-toggle.on .extra-toggle-thumb {
  transform: translateX(20px);
}

/* Quantity controls */
.extra-qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--wh-gray-50);
  border: 1.5px solid var(--wh-gray-200);
  border-radius: 999px;
  padding: 2px;
}
.qty-btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wh-white);
  color: var(--wh-blue-dark);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  transition: all 0.15s;
}
.qty-btn:hover {
  background: var(--wh-blue-dark);
  color: var(--wh-white);
}
.qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--wh-blue-dark);
}

/* Details toggle */
.extra-details-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 4px 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wh-blue-mid);
  background: transparent;
  border: none;
  cursor: pointer;
}
.extra-details-toggle:hover { color: var(--wh-blue-dark); }
.extra-details-toggle svg {
  transition: transform 0.2s;
}
.extra-details-toggle.expanded svg {
  transform: rotate(180deg);
}

.extra-details {
  margin-top: 10px;
  padding: 14px 16px;
  background: var(--wh-gray-50);
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--wh-gray-700);
  animation: extraDetailsIn 0.2s ease;
}
.extra-details[hidden] { display: none; }
.extra-details p { margin: 0; }
@keyframes extraDetailsIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sidebar */
.extras-sidebar {
  background: var(--wh-white);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 90px;
  border: 1px solid var(--wh-gray-100);
}
.extras-sidebar-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.extras-overview {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.extras-overview li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--wh-gray-700);
}
.extras-overview svg {
  color: var(--wh-lime);
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 760px) {
  .extras-layout {
    grid-template-columns: 1fr;
  }
  .extras-sidebar {
    order: -1;
    position: static;
    padding: 16px 18px;
    margin-bottom: 4px;
  }
  .extra-card { padding: 16px; }
  .extra-row { gap: 12px; }
  .extra-icon { width: 38px; height: 38px; }
  .extra-name { font-size: 14.5px; }
  .extra-summary { font-size: 12.5px; }
}

/* ============================================
   ENHANCED SUMMARY SIDEBAR
   ============================================ */
.summary-vehicle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--wh-gray-100);
}
.summary-vehicle-image {
  width: 70px;
  height: 50px;
  flex-shrink: 0;
  background: var(--wh-blue-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.summary-vehicle-image svg { width: 100%; height: 100%; }
.summary-vehicle-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.summary-vehicle-cat {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--wh-blue-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.summary-vehicle-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-vehicle-similar {
  font-size: 11.5px;
  color: var(--wh-gray-500);
}

.summary-section {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--wh-gray-100);
}
.summary-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.summary-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--wh-gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.summary-value-line {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  line-height: 1.3;
}
.summary-meta {
  font-size: 12.5px;
  color: var(--wh-gray-500);
  line-height: 1.3;
}

.summary-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-option-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--wh-gray-700);
}
.summary-option-row svg { color: var(--wh-lime); flex-shrink: 0; }

/* ============================================
   PRICE BREAKDOWN MODAL
   ============================================ */
.breakdown-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.breakdown-modal[hidden] { display: none; }
.breakdown-modal.open { opacity: 1; }

.breakdown-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 61, 94, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.breakdown-panel {
  position: relative;
  width: min(440px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  background: var(--wh-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(8px);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.breakdown-modal.open .breakdown-panel {
  transform: translateY(0);
}

.breakdown-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wh-gray-100);
  color: var(--wh-blue-dark);
  transition: all 0.15s;
}
.breakdown-close:hover {
  background: var(--wh-gray-200);
  transform: rotate(90deg);
}

.breakdown-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.breakdown-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  overflow-y: auto;
}

.breakdown-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  color: var(--wh-gray-700);
  padding: 6px 0;
}
.breakdown-line strong {
  color: var(--wh-blue-dark);
  font-weight: 700;
}
.breakdown-line-meta {
  font-size: 12px;
  color: var(--wh-gray-500);
  display: block;
  margin-top: 2px;
}

.breakdown-section-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--wh-blue-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 8px 0 -4px;
}
.breakdown-section-title:first-child { margin-top: 0; }

.breakdown-divider {
  height: 1px;
  background: var(--wh-gray-100);
  margin: 6px 0;
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 2px solid var(--wh-gray-100);
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-blue-dark);
}
.breakdown-total-amount {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Mobile */
@media (max-width: 760px) {
  .breakdown-panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    align-self: flex-end;
    max-height: 85vh;
    padding: 24px 20px calc(20px + env(safe-area-inset-bottom));
  }
  .breakdown-modal {
    align-items: flex-end;
  }
  .breakdown-modal.open .breakdown-panel {
    transform: translateY(0);
  }
  .breakdown-modal:not(.open) .breakdown-panel {
    transform: translateY(100%);
  }
}

body.breakdown-open { overflow: hidden; }

/* ============================================
   DRIVER DETAILS PAGE (Step 4)
   ============================================ */
.driver-page {
  position: fixed;
  inset: 0;
  z-index: 420;
  background: var(--wh-gray-50);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.driver-page[hidden] { display: none; }

.driver-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.driver-form-card {
  background: var(--wh-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--wh-gray-100);
  padding: 28px 28px 22px;
}
.driver-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.driver-section-sub {
  font-size: 13.5px;
  color: var(--wh-gray-500);
  line-height: 1.55;
  margin: 0 0 22px;
}

.driver-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  letter-spacing: -0.005em;
}
.form-field .req {
  color: #c0392b;
  font-weight: 700;
}
.form-field .optional {
  font-weight: 500;
  color: var(--wh-gray-500);
  font-size: 11.5px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--wh-gray-200);
  border-radius: var(--radius-md);
  background: var(--wh-white);
  font: inherit;
  font-size: 14.5px;
  color: var(--wh-blue-dark);
  transition: all 0.15s;
  width: 100%;
  font-family: inherit;
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--wh-gray-300);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--wh-blue-mid);
  box-shadow: 0 0 0 3px rgba(28, 88, 117, 0.12);
}
.form-field input.invalid,
.form-field select.invalid {
  border-color: #c0392b;
  background: #fef5f3;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.form-hint {
  font-size: 12px;
  color: var(--wh-gray-500);
  line-height: 1.4;
}
.form-field-country { max-width: 130px; }
.form-row:has(.form-field-country) {
  grid-template-columns: 130px 1fr;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--wh-blue-dark);
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 13.5px;
  color: var(--wh-gray-700);
  line-height: 1.5;
  cursor: pointer;
}
.link-inline {
  color: var(--wh-blue-mid);
  text-decoration: underline;
  font-weight: 600;
}
.link-inline:hover { color: var(--wh-blue-dark); }

/* Mobile */
@media (max-width: 760px) {
  .driver-layout {
    grid-template-columns: 1fr;
  }
  .driver-form-card {
    padding: 20px 18px;
    order: 1;
  }
  .extras-sidebar:has(#driverSummaryVehicle),
  .driver-page .extras-sidebar {
    order: 0;
  }
  .driver-section-title { font-size: 18px; }
  .driver-section-sub { font-size: 13px; margin-bottom: 16px; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-row:has(.form-field-country) {
    grid-template-columns: 120px 1fr;
  }
  .form-field-country { max-width: 120px; }
  .form-checkbox label { font-size: 12.5px; }
}

/* ============================================
   MOBILE FIX: keep vehicle modal price footer visible
   ============================================ */
@media (max-width: 760px) {
  .vehicle-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .vehicle-modal-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .vehicle-modal .modal-scroll-area {
    flex: 1 1 auto;
    min-height: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .vehicle-modal .modal-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    z-index: 40;
    margin-top: 0;
    box-sizing: border-box;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  body.vehicle-modal-open {
    overflow: hidden;
    touch-action: none;
  }
}

/* ============ EXCLUDED EVENTS MODAL ============ */
.excl-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.excl-modal[hidden] { display: none; }
.excl-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 61, 94, 0.45);
  cursor: pointer;
}
.excl-panel {
  position: relative;
  background: var(--wh-white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(9,61,94,0.18);
}
.excl-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--wh-gray-500);
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.excl-close:hover { color: var(--wh-blue-dark); background: var(--wh-gray-100); }
.excl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--wh-blue-dark);
}
.excl-header h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  margin: 0;
  line-height: 1.25;
  padding-right: 28px;
}
.excl-intro {
  font-size: 13.5px;
  color: var(--wh-gray-500);
  line-height: 1.55;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wh-gray-100);
}
.excl-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.excl-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.excl-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #c0392b;
}
.excl-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.excl-list li strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wh-blue-dark);
}
.excl-list li span {
  font-size: 12.5px;
  color: var(--wh-gray-500);
  line-height: 1.4;
}
.excl-footer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px;
  background: #f0f7ff;
  border: 1px solid #c7dff7;
  border-radius: var(--radius-md, 8px);
  font-size: 12px;
  color: #0c4a6e;
  line-height: 1.5;
}
.excl-footer svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 560px) {
  .excl-panel { padding: 22px 18px 20px; }
  .excl-header h2 { font-size: 15px; }
}

/* ============ MOBILE NAV ============ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,61,94,0.45);
  z-index: 800;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--wh-white);
  z-index: 900;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 24px rgba(9,61,94,0.14);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #F3F4F6;
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--wh-blue-dark);
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 6px;
}
.mobile-nav-close:hover { background: #F3F4F6; }

.mobile-nav-links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
}
.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--wh-blue-dark);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.mobile-nav-link:hover { background: #F8F9FA; border-left-color: var(--wh-lime); }
.mobile-nav-link.active { border-left-color: var(--wh-blue-dark); background: #EFF6FF; }

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid #F3F4F6;
}

/* ============ BOOKING TRUST HINTS (below search button) ============ */
.booking-trust-hints {
  display: none;
}
@media (max-width: 720px) {
  .booking-trust-hints {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .booking-trust-hints span {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
  }
}

/* ============ PROTECTION SUBTITLE ============ */
.protection-subtitle {
  font-size: 14px;
  color: var(--wh-gray-500);
  margin: 0 0 18px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 720px) {
  .protection-subtitle { font-size: 13px; }
}

/* ============ HERO NO-DEPOSIT BANNER ============ */
.hero-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 18px 0;
  box-shadow: 0 4px 18px rgba(207,221,40,0.25);
}
.hero-banner svg {
  color: var(--wh-blue-dark);
  flex-shrink: 0;
}
.hero-banner-sep {
  color: var(--wh-blue-dark);
  opacity: 0.3;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 720px) {
  .hero-banner {
    font-size: 12px;
    padding: 9px 14px;
    gap: 8px;
    margin: 14px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-banner svg { width: 14px; height: 14px; }
}

/* ============ DRIVER PAGE INFO CARDS ============ */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 20px;
}
.info-card {
  background: var(--wh-white);
  border: 0.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 18px;
}
.info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.info-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon.blue { background: #EFF6FF; color: var(--wh-blue-dark); }
.info-icon.lime { background: #FDFBE6; color: var(--wh-blue-dark); }
.info-icon.gray { background: #F3F4F6; color: var(--wh-blue-dark); }
.info-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  margin: 0;
}
.info-sub {
  font-size: 11.5px;
  font-weight: 500;
  color: #6B7280;
  margin: 1px 0 0;
  line-height: 1.4;
}

/* Payment rows */
.pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: #374151;
  gap: 10px;
}
.pay-row + .pay-row { border-top: 1px dashed #F3F4F6; }
.pay-row.highlight { color: var(--wh-blue-dark); font-weight: 700; font-size: 14px; }
.pay-row strong { font-weight: 700; }
.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 6px;
}
.pay-pill.now { background: #DCFCE7; color: #166534; }
.pay-pill.later { background: #FEF9C3; color: #854D0E; }

/* Cancellation */
.cancel-row {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}
.cancel-row strong { color: var(--wh-blue-dark); font-weight: 700; }
.cancel-row .warn { color: #B45309; font-weight: 700; }
.cancel-deadline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0FDF4;
  color: #166534;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

/* Documents */
.doc-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}
.doc-item + .doc-item { border-top: 1px dashed #F3F4F6; }
.doc-item > svg { flex-shrink: 0; color: var(--wh-blue-dark); margin-top: 2px; }
.doc-item strong {
  color: var(--wh-blue-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.doc-item span { color: #6B7280; font-size: 12px; }
.doc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.doc-badge.gr { background: #EFF6FF; color: #1E40AF; }
.doc-badge.intl { background: #FEF3C7; color: #92400E; }

.docs-callout {
  display: flex;
  gap: 10px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  font-size: 12.5px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 12px;
  line-height: 1.45;
  font-weight: 500;
}
.docs-callout svg { flex-shrink: 0; color: #DC2626; margin-top: 2px; }

.extras-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFBEB;
  color: #92400E;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 10px;
  line-height: 1.4;
}
.extras-note svg { flex-shrink: 0; }

@media (max-width: 720px) {
  .info-card { padding: 14px; }
  .info-title { font-size: 13px; }
  .info-sub { font-size: 11px; }
  .pay-row, .cancel-row, .doc-item { font-size: 12.5px; }
}

/* ============================================
   LEGAL PAGES (terms.html / privacy.html / cookies.html)
   ============================================ */

.legal-hero {
  background: linear-gradient(165deg, var(--wh-blue-dark) 0%, var(--wh-blue-mid) 100%);
  color: var(--wh-white);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.legal-hero > .container { position: relative; z-index: 1; }

.legal-breadcrumbs {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.legal-breadcrumbs a {
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.legal-breadcrumbs a:hover { color: var(--wh-lime); }

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.legal-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.legal-main {
  background: var(--wh-gray-50);
  padding: 48px 0 80px;
  min-height: 50vh;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.legal-toc-inner {
  background: var(--wh-white);
  border: 1px solid var(--wh-gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.legal-toc-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh-gray-500);
  margin-bottom: 12px;
}
.legal-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.legal-toc-list li {
  counter-increment: toc;
  font-size: 13.5px;
  line-height: 1.4;
  margin-bottom: 2px;
}
.legal-toc-list a {
  display: block;
  padding: 7px 10px 7px 32px;
  position: relative;
  color: var(--wh-gray-700);
  border-radius: 8px;
  transition: all 0.15s;
}
.legal-toc-list a::before {
  content: counter(toc);
  position: absolute;
  left: 8px;
  top: 7px;
  width: 18px;
  height: 18px;
  background: var(--wh-gray-100);
  color: var(--wh-gray-500);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.legal-toc-list a:hover {
  background: var(--wh-gray-100);
  color: var(--wh-blue-dark);
}
.legal-toc-list a:hover::before {
  background: var(--wh-lime);
  color: var(--wh-blue-dark);
}

.legal-content {
  background: var(--wh-white);
  border: 1px solid var(--wh-gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-sm);
  color: var(--wh-gray-900);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-intro {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--wh-gray-700);
  border-left: 3px solid var(--wh-lime);
  padding-left: 20px;
  margin: 0 0 40px;
}

.legal-section {
  margin: 0 0 40px;
  scroll-margin-top: calc(var(--header-height) + 16px);
}
.legal-section:last-of-type { margin-bottom: 0; }

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--wh-blue-dark);
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wh-gray-100);
}
.legal-section .legal-num {
  color: var(--wh-lime-hover);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.legal-section h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--wh-blue-dark);
  margin: 24px 0 10px;
  letter-spacing: -0.005em;
}

.legal-section p,
.legal-section ul,
.legal-section ol,
.legal-section dl {
  margin: 0 0 14px;
}
.legal-section ul,
.legal-section ol {
  padding-left: 22px;
}
.legal-section li { margin-bottom: 6px; }
.legal-section li > strong { font-weight: 700; color: var(--wh-blue-dark); }

.legal-section a {
  color: var(--wh-blue-mid);
  text-decoration: underline;
  text-decoration-color: rgba(28, 88, 117, 0.25);
  text-underline-offset: 2px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.legal-section a:hover {
  color: var(--wh-blue-dark);
  text-decoration-color: currentColor;
}

.legal-section code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--wh-gray-100);
  color: var(--wh-blue-dark);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.legal-dl { margin: 0 0 18px; }
.legal-dl dt {
  font-weight: 700;
  color: var(--wh-blue-dark);
  margin-top: 12px;
  font-size: 15px;
}
.legal-dl dt:first-child { margin-top: 0; }
.legal-dl dd {
  margin: 4px 0 0;
  padding-left: 0;
  color: var(--wh-gray-700);
}

.legal-note {
  background: var(--wh-blue-soft);
  border: 1px solid rgba(28, 88, 117, 0.15);
  border-left: 3px solid var(--wh-blue-mid);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--wh-gray-700);
  margin: 16px 0 !important;
}

.legal-controller-card {
  background: var(--wh-gray-50);
  border: 1px solid var(--wh-gray-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 8px 0 16px;
}
.legal-controller-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 12px 0 8px;
  border: 1px solid var(--wh-gray-200);
  border-radius: var(--radius-md);
  -webkit-overflow-scrolling: touch;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  background: var(--wh-white);
}
.legal-table thead {
  background: var(--wh-gray-50);
  border-bottom: 1px solid var(--wh-gray-200);
}
.legal-table th {
  text-align: left;
  font-weight: 700;
  color: var(--wh-blue-dark);
  padding: 12px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-table td {
  padding: 12px 14px;
  border-top: 1px solid var(--wh-gray-100);
  vertical-align: top;
  color: var(--wh-gray-700);
}
.legal-table td code {
  white-space: nowrap;
  background: var(--wh-lime-soft);
}
.legal-table tbody tr:first-child td { border-top: none; }

.legal-impressum {
  margin-top: 56px;
  padding: 24px 28px;
  background: var(--wh-blue-soft);
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 88, 117, 0.15);
}
.legal-impressum h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--wh-blue-dark);
  margin: 0 0 12px;
  padding: 0;
  border: none;
}
.legal-impressum p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--wh-gray-700);
}

/* Tablet */
@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
  .legal-content { padding: 36px 40px; }
}

/* Mobile */
@media (max-width: 720px) {
  .legal-hero { padding: 40px 0 44px; }
  .legal-title { font-size: 30px; }
  .legal-main { padding: 24px 0 56px; }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .legal-toc {
    position: static;
    top: auto;
  }
  .legal-toc-inner { padding: 14px 16px; }
  .legal-toc-list a { padding-top: 6px; padding-bottom: 6px; }
  .legal-content {
    padding: 24px 20px;
    border-radius: var(--radius-md);
    font-size: 15px;
  }
  .legal-intro {
    font-size: 15.5px;
    padding-left: 14px;
    margin-bottom: 28px;
  }
  .legal-section { margin-bottom: 32px; }
  .legal-section h2 { font-size: 22px; }
  .legal-section h3 { font-size: 15px; }
  .legal-impressum {
    padding: 18px 18px;
    margin-top: 36px;
  }
}

/* ============================================
   SITE FOOTER (shared across all pages)
   ============================================ */

.site-footer {
  background: var(--wh-blue-deep);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-top: auto;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.site-footer-brand { max-width: 360px; }
.site-footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(1.1);
}
.site-footer-tagline {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.site-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.site-footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wh-lime);
  margin: 0 0 14px;
}
.site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer-col li { margin-bottom: 8px; }
.site-footer-col a {
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.site-footer-col a:hover { color: var(--wh-white); }

@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 44px;
  }
  .site-footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .site-footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Legal Imprint Footer ── */
.footer-imprint {
  background: #040f18;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 24px;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.7;
  color: #5a6a78;
}

.footer-imprint-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-imprint a {
  color: #7a8c9a;
  text-decoration: none;
  border-bottom: 1px dotted #3a4a58;
}

.footer-imprint a:hover {
  color: #CFDD28;
  border-bottom-color: #CFDD28;
}

@media (max-width: 600px) {
  .footer-imprint {
    font-size: 10.5px;
    padding: 12px 16px;
  }
}

/* ── Naxos Landing Page ── */
.naxos-hero {
  background: linear-gradient(135deg, #093D5E 0%, #051f33 100%);
  color: #fff;
  padding: 80px 0 64px;
  text-align: center;
}

.naxos-tag {
  display: inline-block;
  background: rgba(207,221,40,0.15);
  color: #CFDD28;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.naxos-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
}

.naxos-lead {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px;
  color: #cfdbe5;
  line-height: 1.6;
}

.naxos-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.naxos-trust {
  font-size: 13px;
  color: #8a9bab;
}

.naxos-section {
  padding: 64px 0;
}

.naxos-section-alt {
  background: #f8fafb;
}

.naxos-section h2 {
  font-size: 30px;
  margin: 0 0 32px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: #093D5E;
}

.naxos-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.naxos-feature {
  padding: 20px;
  border: 1px solid #e6edf2;
  border-radius: 12px;
  background: #fff;
}

.naxos-feature h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #093D5E;
}

.naxos-feature p {
  margin: 0;
  font-size: 14px;
  color: #5a6a78;
}

.naxos-pickup {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e6edf2;
}

.naxos-pickup:last-child {
  border-bottom: none;
}

.naxos-pickup h3 {
  margin: 0 0 8px;
  color: #093D5E;
}

.naxos-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.naxos-grid-2 h3 {
  color: #093D5E;
  margin: 0 0 8px;
}

.naxos-requirements {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.naxos-requirements li {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e6edf2;
  border-radius: 10px;
}

.naxos-faq details {
  border: 1px solid #e6edf2;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 14px 18px;
  background: #fff;
}

.naxos-faq summary {
  font-weight: 600;
  cursor: pointer;
  color: #093D5E;
}

.naxos-faq details[open] summary {
  margin-bottom: 10px;
}

.naxos-cta-section {
  background: #093D5E;
  color: #fff;
  text-align: center;
}

.naxos-cta-section h2 {
  color: #fff;
}

.btn-large {
  font-size: 16px;
  padding: 14px 32px;
}

/* ── Desktop Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.15s;
}

.nav-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-dropdown-arrow {
  transition: transform 0.2s;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* Specificity 20 beats .primary-nav ul (specificity 11) — fixes cascade conflict */
.primary-nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;           /* left-align under the toggle button */
  transform: none;   /* no centering offset needed */
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(9, 61, 94, 0.18);
  padding: 8px;
  margin: 0;
  list-style: none;
  display: none;     /* wins over .primary-nav ul display:flex (spec 11) */
  flex-direction: column;  /* safety: if flex wins, items stack vertically */
  align-items: stretch;
  gap: 0;
  z-index: 1000;
}

/* Specificity 30 — shows menu when toggle is open */
.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #093D5E;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.12s;
}

.nav-dropdown-menu a:hover {
  background: #f0f4f8;
  color: #093D5E;
}

/* ── Mobile Drawer — blue background ── */
.mobile-nav {
  background: #093D5E !important;
  color: #fff;
}

.mobile-nav-header {
  background: #093D5E;
}

.mobile-nav a {
  color: #fff !important;
}

.mobile-nav-link {
  color: #fff !important;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: rgba(207, 221, 40, 0.12) !important;
  color: #CFDD28 !important;
  border-left-color: #CFDD28 !important;
}

.mobile-nav-close {
  color: #fff;
  background: transparent;
}

.mobile-nav-close:hover {
  background: rgba(255,255,255,0.1) !important;
}

.mobile-nav-section {
  padding: 14px 20px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #CFDD28;
  text-transform: uppercase;
  list-style: none;
}

.mobile-nav-divider {
  list-style: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 20px;
}

.mobile-nav-footer .lang-btn {
  color: rgba(255,255,255,0.7);
}

.mobile-nav-footer .lang-btn.active {
  color: #CFDD28;
}

.mobile-nav-footer .lang-divider {
  color: rgba(255,255,255,0.3);
}

@media (max-width: 720px) {
  .nav-dropdown-menu { min-width: 160px; }
}

/* ── CookieYes: hide default floating revoke button ──
   Replaced by custom "Cookie preferences" link in the footer. */
.cky-revisit-bottom-left,
.cky-revisit-bottom-right,
.cky-btn-revisit-wrapper {
  display: none !important;
}

/* ── Paros Landing Page ── */
.paros-hero {
  background: linear-gradient(135deg, #093D5E 0%, #051f33 100%);
  color: #fff;
  padding: 80px 0 64px;
  text-align: center;
}
.paros-tag {
  display: inline-block;
  background: rgba(207,221,40,0.15);
  color: #CFDD28;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.paros-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
}
.paros-lead {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px;
  color: #cfdbe5;
  line-height: 1.6;
}
.paros-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.paros-trust {
  font-size: 13px;
  color: #8a9bab;
}
.paros-section { padding: 64px 0; }
.paros-section-alt { background: #f8fafb; }
.paros-section h2 {
  font-size: 30px;
  margin: 0 0 32px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: #093D5E;
}
.paros-prose {
  font-size: 16px;
  line-height: 1.7;
  color: #5a6a78;
  max-width: 760px;
}
.paros-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.paros-feature {
  padding: 20px;
  border: 1px solid #e6edf2;
  border-radius: 12px;
  background: #fff;
}
.paros-feature h3 { font-size: 16px; margin: 0 0 8px; color: #093D5E; }
.paros-feature p { margin: 0; font-size: 14px; color: #5a6a78; }
.paros-pickup {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e6edf2;
}
.paros-pickup:last-child { border-bottom: none; }
.paros-pickup h3 { margin: 0 0 8px; color: #093D5E; }
.paros-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.paros-grid-2 h3 { color: #093D5E; margin: 0 0 8px; }
.paros-requirements {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.paros-requirements li {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e6edf2;
  border-radius: 10px;
}
.paros-faq details {
  border: 1px solid #e6edf2;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 14px 18px;
  background: #fff;
}
.paros-faq summary {
  font-weight: 600;
  cursor: pointer;
  color: #093D5E;
}
.paros-faq details[open] summary {
  margin-bottom: 10px;
}
.paros-island-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.paros-island-card {
  display: block;
  padding: 20px;
  border: 1px solid #e6edf2;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.paros-island-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(9, 61, 94, 0.08);
}
.paros-island-card h3 { color: #093D5E; margin: 0 0 6px; }
.paros-island-card p { margin: 0; font-size: 14px; color: #5a6a78; }
.paros-cta-section {
  background: #093D5E;
  color: #fff;
  text-align: center;
}
.paros-cta-section h2 { color: #fff; }

/* ── Naxos Landing: hero image override ── */
.naxos-landing .hero-bg {
  background: linear-gradient(135deg, #093D5E 0%, #051f33 100%);
}


/* ── Hero tag chip (used on landing pages) ── */
.hero-tag {
  display: inline-block;
  background: rgba(207, 221, 40, 0.15);
  color: #CFDD28;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Hero trust line (star rating under banner) ── */
.hero-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 12px 0 0;
}

/* ── Paros Landing: hero background ── */
.paros-landing .hero-bg {
  background: linear-gradient(135deg, #093D5E 0%, #051f33 100%);
}

/* ── Mykonos Landing: hero background ── */
.mykonos-landing .hero-bg {
  background: linear-gradient(135deg, #093D5E 0%, #051f33 100%);
}

/* ── Mykonos Landing Page ── */
.mykonos-section { padding: 64px 0; }
.mykonos-section-alt { background: #f8fafb; }
.mykonos-section h2 {
  font-size: 30px;
  margin: 0 0 32px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: #093D5E;
}
.mykonos-prose {
  font-size: 16px;
  line-height: 1.7;
  color: #5a6a78;
  max-width: 760px;
}
.mykonos-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.mykonos-feature {
  padding: 20px;
  border: 1px solid #e6edf2;
  border-radius: 12px;
  background: #fff;
}
.mykonos-feature h3 { font-size: 16px; margin: 0 0 8px; color: #093D5E; }
.mykonos-feature p { margin: 0; font-size: 14px; color: #5a6a78; }
.mykonos-pickup {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e6edf2;
}
.mykonos-pickup:last-child { border-bottom: none; }
.mykonos-pickup h3 { margin: 0 0 8px; color: #093D5E; }
.mykonos-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.mykonos-grid-2 h3 { color: #093D5E; margin: 0 0 8px; }
.mykonos-requirements {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.mykonos-requirements li {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e6edf2;
  border-radius: 10px;
}
.mykonos-faq details {
  border: 1px solid #e6edf2;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 14px 18px;
  background: #fff;
}
.mykonos-faq summary {
  font-weight: 600;
  cursor: pointer;
  color: #093D5E;
}
.mykonos-faq details[open] summary { margin-bottom: 10px; }
.mykonos-island-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.mykonos-island-card {
  display: block;
  padding: 20px;
  border: 1px solid #e6edf2;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.mykonos-island-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(9, 61, 94, 0.08);
}
.mykonos-island-card h3 { color: #093D5E; margin: 0 0 6px; }
.mykonos-island-card p { margin: 0; font-size: 14px; color: #5a6a78; }
