/* ===========================================================
   booking-navibus.css
   Premium minimal restyle of the booking form, inspired by
   navibus.app. Keeps existing structure / IDs / logic untouched
   and only re-skins the visible elements.
   =========================================================== */

:root {
  --nb-bg:        linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  --nb-bg-soft:   rgba(255, 255, 255, 0.05);
  --nb-bg-input:  rgba(255, 255, 255, 0.06);
  --nb-border:    rgba(232, 239, 244, 0.16);
  --nb-border-h:  rgba(227, 200, 129, 0.42);
  --nb-text:      #f4f5fb;
  --nb-text-soft: rgba(244, 245, 251, 0.62);
  --nb-text-mute: rgba(244, 245, 251, 0.42);
  --nb-accent:    #e3c881;        /* brand champagne gold */
  --nb-accent-2:  #c9a86b;        /* warm bronze */
  --nb-accent-bg: rgba(227, 200, 129, 0.10);
  --nb-accent-bd: rgba(227, 200, 129, 0.55);
  --nb-radius:    18px;
  --nb-radius-lg: 24px;
  --nb-shadow:    0 24px 70px -28px rgba(0, 0, 0, 0.55);
}

/* ---------- Workspace + form shell ---------- */
.booking-workspace { gap: 28px; }

.smart-booking-form {
  background: var(--nb-bg) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius-lg) !important;
  padding: 32px !important;
  box-shadow: var(--nb-shadow) !important;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

/* ---------- Labels & section titles ---------- */
.smart-booking-form label {
  color: var(--nb-text-soft) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin: 0 0 8px !important;
  display: block;
}
.smart-booking-form .service-panel .eyebrow,
.smart-booking-form .bulk-header .eyebrow,
.smart-booking-form section .eyebrow {
  color: var(--nb-text-mute) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
}

/* ---------- Inputs ---------- */
.smart-booking-form input:not([type="file"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.smart-booking-form select,
.smart-booking-form textarea,
.smart-booking-form .pdt-trigger {
  background: var(--nb-bg-input) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: 14px !important;
  color: var(--nb-text) !important;
  font-family: inherit !important;
  font-size: 0.96rem !important;
  font-weight: 500 !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.smart-booking-form input::placeholder,
.smart-booking-form textarea::placeholder {
  color: var(--nb-text-mute) !important;
  font-weight: 400 !important;
}
.smart-booking-form input:hover,
.smart-booking-form select:hover,
.smart-booking-form textarea:hover,
.smart-booking-form .pdt-trigger:hover {
  border-color: var(--nb-border-h) !important;
  background: rgba(255, 255, 255, 0.09) !important;
}
.smart-booking-form input:focus,
.smart-booking-form select:focus,
.smart-booking-form textarea:focus,
.smart-booking-form .pdt-trigger:focus-visible {
  outline: none !important;
  border-color: var(--nb-accent-bd) !important;
  box-shadow: 0 0 0 3px var(--nb-accent-bg) !important;
  background: rgba(255, 255, 255, 0.10) !important;
}

/* ---------- Section / sub-panel cards ---------- */
.smart-booking-form .service-panel,
.smart-booking-form .upload-panel,
.smart-booking-form section[id$="Routes"],
.smart-booking-form .multi-day-routes {
  background: var(--nb-bg-soft) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius) !important;
  padding: 22px !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* ---------- Vehicle picker cards ---------- */
.vehicle-picker {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
  gap: 12px !important;
  margin: 8px 0 18px !important;
}
.vehicle-picker .vehicle-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px !important;
  padding: 18px 14px 14px !important;
  background: var(--nb-bg-soft) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius) !important;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.vehicle-picker .vehicle-card:hover {
  border-color: var(--nb-border-h) !important;
  background: rgba(24, 31, 60, 0.7) !important;
}
.vehicle-picker .vehicle-card img {
  width: 100% !important;
  max-width: 110px;
  height: 60px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}
.vehicle-picker .vehicle-card span {
  color: var(--nb-text) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-align: center;
  letter-spacing: 0.005em;
}
.vehicle-picker .vehicle-card input[type="radio"] {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  cursor: pointer !important;
  width: 100% !important; height: 100% !important;
  margin: 0 !important;
}
.vehicle-picker .vehicle-card:has(input[type="radio"]:checked) {
  border-color: var(--nb-accent-bd) !important;
  background: var(--nb-accent-bg) !important;
  box-shadow: 0 0 0 1px var(--nb-accent-bd), 0 18px 40px -22px rgba(227, 200, 129,0.5);
}
.vehicle-picker .vehicle-card:has(input[type="radio"]:checked)::after {
  content: "✓";
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--nb-accent);
  color: #0c1024;
  font-size: 13px;
  font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(227, 200, 129,0.6);
}

/* ---------- Trip-mode (One way / Return) — minimal inline pills ---------- */
.trip-mode-toggle {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px !important;
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px dashed var(--nb-border);
}
.trip-mode-toggle > span:first-child {
  color: var(--nb-text-mute) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  opacity: 1 !important;
  margin-right: 4px;
}
.trip-mode-toggle label {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 8px !important;
  padding: 7px 14px !important;
  margin: 0 !important;
  background: transparent !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: 999px !important;
  cursor: pointer;
  color: var(--nb-text-soft) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  line-height: 1.2 !important;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.trip-mode-toggle label:hover {
  border-color: var(--nb-border-h) !important;
  color: var(--nb-text) !important;
}
.trip-mode-toggle label input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: transparent;
  display: inline-grid; place-items: center;
  cursor: pointer; margin: 0;
  flex-shrink: 0;
  transition: border-color .18s ease, background .18s ease;
}
.trip-mode-toggle label input[type="radio"]::after {
  content: ""; width: 5px; height: 5px; border-radius: 999px;
  background: transparent; transition: background .18s ease;
}
.trip-mode-toggle label:has(input[type="radio"]:checked) {
  border-color: var(--nb-accent-bd) !important;
  background: var(--nb-accent-bg) !important;
  color: var(--nb-text) !important;
}
.trip-mode-toggle label:has(input[type="radio"]:checked) input[type="radio"] {
  border-color: var(--nb-accent);
  background: var(--nb-accent);
}
.trip-mode-toggle label:has(input[type="radio"]:checked) input[type="radio"]::after {
  background: #0c1024;
}

/* ---------- Upload panel ---------- */
.smart-booking-form .upload-panel label[for="bookingFile"] { color: var(--nb-text-soft) !important; }
.smart-booking-form .upload-hint { color: var(--nb-text-mute) !important; font-size: 0.82rem !important; }
.smart-booking-form .upload-howto > summary { color: var(--nb-accent-2) !important; }

/* ---------- Submit button ---------- */
.smart-booking-form input[type="submit"],
.bwiz-submit, .bwiz-next {
  background: linear-gradient(135deg, var(--nb-accent), var(--nb-accent-2)) !important;
  color: #0c1024 !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 16px 28px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  font-size: 0.98rem !important;
  box-shadow: 0 16px 40px -16px rgba(227, 200, 129,0.6) !important;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.smart-booking-form input[type="submit"]:hover,
.bwiz-submit:hover, .bwiz-next:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* ---------- Price / confirmation side panel ---------- */
.price-panel, .confirmation-panel {
  background: var(--nb-bg) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius-lg) !important;
  box-shadow: var(--nb-shadow) !important;
}
.price-panel .price-value {
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--nb-accent), var(--nb-accent-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.price-panel .eyebrow,
.confirmation-panel .eyebrow {
  color: var(--nb-text-mute) !important;
  letter-spacing: 0.14em !important;
}

/* ---------- Wizard panel (if used) ---------- */
.bwiz {
  background: var(--nb-bg) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius-lg) !important;
  box-shadow: var(--nb-shadow) !important;
}
.bwiz-step.is-active {
  background: linear-gradient(135deg, var(--nb-accent), var(--nb-accent-2)) !important;
  color: #0c1024 !important;
  box-shadow: 0 12px 28px -10px rgba(227, 200, 129,0.55) !important;
}
.bwiz-step.is-active .bwiz-step-num { background: rgba(12,16,36,0.22) !important; color: #0c1024 !important; }

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  .smart-booking-form { padding: 20px !important; border-radius: 20px !important; }
  .trip-mode-toggle { grid-template-columns: 1fr 1fr !important; }
  .trip-mode-toggle > span:first-child { grid-column: 1 / -1; }
  .vehicle-picker { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ---------- Multi-day routes ---------- */
.smart-booking-form .multi-day-routes {
  margin-top: 18px !important;
  padding: 24px !important;
  background: linear-gradient(160deg, rgba(20,27,54,0.7), rgba(13,18,38,0.55)) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius-lg) !important;
  position: relative;
  overflow: hidden;
}
.smart-booking-form .multi-day-routes::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--nb-accent), transparent);
  opacity: 0.55;
}
.smart-booking-form .multi-day-header {
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px !important;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--nb-border);
}
.smart-booking-form .multi-day-header .eyebrow {
  color: var(--nb-text-mute) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  margin: 0 0 4px !important;
}
.smart-booking-form .multi-day-header h2 {
  margin: 0 !important;
  color: var(--nb-text) !important;
  font-family: inherit !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-shadow: none !important;
}
.smart-booking-form .multi-day-header button,
.smart-booking-form #addRouteDay {
  min-height: auto !important;
  padding: 10px 18px !important;
  background: var(--nb-accent-bg) !important;
  border: 1px solid var(--nb-accent-bd) !important;
  border-radius: 999px !important;
  color: var(--nb-accent-2) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  box-shadow: none !important;
  transition: background .18s ease, transform .15s ease;
}
.smart-booking-form .multi-day-header button:hover,
.smart-booking-form #addRouteDay:hover {
  background: rgba(227, 200, 129,0.2) !important;
  transform: translateY(-1px);
}

.smart-booking-form .multi-day-list { display: grid !important; gap: 14px !important; }

.smart-booking-form .route-day {
  position: relative;
  padding: 20px 20px 18px !important;
  background: var(--nb-bg-input) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius) !important;
  transition: border-color .18s ease, background .18s ease;
}
.smart-booking-form .route-day:hover { border-color: var(--nb-border-h) !important; }
.smart-booking-form .route-day-title {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px !important;
  color: var(--nb-text) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}
.smart-booking-form .route-day-title > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.smart-booking-form .route-day-title > span:first-child::before {
  content: "";
  width: 28px; height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nb-accent), var(--nb-accent-2));
  box-shadow: 0 6px 16px -6px rgba(227, 200, 129,0.6);
}
.smart-booking-form .route-day-title button,
.smart-booking-form .route-day .remove-day {
  min-height: auto !important;
  padding: 6px 12px !important;
  background: transparent !important;
  border: 1px solid var(--nb-border-h) !important;
  border-radius: 999px !important;
  color: var(--nb-text-soft) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  box-shadow: none !important;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.smart-booking-form .route-day-title button:hover,
.smart-booking-form .route-day .remove-day:hover {
  color: #ffb4b4 !important;
  border-color: rgba(255,120,120,0.5) !important;
  background: rgba(255,120,120,0.08) !important;
}
.smart-booking-form .route-day .day-distance {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--nb-border);
  color: var(--nb-accent-2) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-align: right;
  text-transform: none !important;
}

/* ---------- Bulk upload section ---------- */
.bulk-upload-section {
  margin-top: 28px;
  padding: 28px !important;
  background: var(--nb-bg) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius-lg) !important;
  box-shadow: var(--nb-shadow) !important;
}
.bulk-dropzone {
  background: var(--nb-bg-input) !important;
  border: 1.5px dashed var(--nb-border-h) !important;
  border-radius: var(--nb-radius) !important;
  transition: border-color .18s ease, background .18s ease;
}
.bulk-dropzone:hover {
  border-color: var(--nb-accent-bd) !important;
  background: rgba(227, 200, 129,0.04) !important;
}

/* ===========================================================
   Typography refinement — premium scale + letter-spacing
   Inspired by navibus.app's tight, modern type rhythm.
   =========================================================== */

.smart-booking-form,
.bulk-upload-section,
.price-panel,
.confirmation-panel,
.multi-day-routes,
.bwiz {
  font-feature-settings: "ss01", "cv11", "cv01", "kern";
  font-variant-ligatures: common-ligatures contextual;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page hero above the booking form — tighter display type */
.page-hero h1 {
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.04 !important;
}
.page-hero .lead {
  font-weight: 400 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,0.78) !important;
}
.page-hero .eyebrow {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
}

/* Section titles inside the form (h2 / h3) */
.smart-booking-form h2,
.smart-booking-form h3,
.bulk-upload-section h2,
.bulk-upload-section h3,
.confirmation-panel h2,
.multi-day-header h2 {
  font-family: inherit !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.2 !important;
  color: var(--nb-text) !important;
  text-shadow: none !important;
  margin: 0 0 6px !important;
}

/* Lead paragraphs inside service panels */
.smart-booking-form .service-panel .lead,
.bulk-upload-section .lead {
  font-size: 0.94rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.003em !important;
  line-height: 1.6 !important;
  color: var(--nb-text-soft) !important;
  margin: 6px 0 18px !important;
}

/* Eyebrows everywhere — uniform micro-typography */
.smart-booking-form .eyebrow,
.bulk-upload-section .eyebrow,
.price-panel .eyebrow,
.confirmation-panel .eyebrow,
.multi-day-header .eyebrow {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: var(--nb-text-mute) !important;
  margin: 0 0 10px !important;
}

/* Labels — tighter, calmer */
.smart-booking-form label {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--nb-text-mute) !important;
  margin: 0 0 8px !important;
}

/* Inputs / selects / textareas — sized for premium reading */
.smart-booking-form input:not([type="file"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.smart-booking-form select,
.smart-booking-form textarea,
.smart-booking-form .pdt-trigger {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.45 !important;
}
.smart-booking-form input::placeholder,
.smart-booking-form textarea::placeholder {
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Vehicle card label */
.vehicle-picker .vehicle-card span {
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.25 !important;
}

/* Trip-mode label + choices */
.trip-mode-toggle > span:first-child {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
}
.trip-mode-toggle label {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
}

/* Multi-day day-card header */
.smart-booking-form .route-day-title {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.2em !important;
}
.smart-booking-form .route-day .day-distance {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
}

/* Price panel — large numeric with tight tracking */
.price-panel .price-value {
  font-size: clamp(2.2rem, 4.2vw, 3.1rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
  margin: 4px 0 16px !important;
}
.price-panel dt {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--nb-text-mute) !important;
}
.price-panel dd {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  color: var(--nb-text) !important;
  margin: 4px 0 0 !important;
}
.price-panel p {
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  color: var(--nb-text-mute) !important;
}

/* Submit / primary buttons — calmer tracking, no shouting caps */
.smart-booking-form input[type="submit"],
.bwiz-submit, .bwiz-next {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.005em !important;
  text-transform: none !important;
}

/* Upload hints / form-status — small, calm */
.smart-booking-form .upload-hint,
.bulk-upload-section .form-status,
.smart-booking-form .form-status {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.55 !important;
  color: var(--nb-text-mute) !important;
}
.smart-booking-form .upload-howto > summary {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
}

/* Wizard step pills */
.bwiz-step {
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
}
.bwiz-panel-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}
.bwiz-panel-sub {
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.003em !important;
  color: var(--nb-text-soft) !important;
}

/* ===========================================================
   Responsive typography — tablet & mobile
   Keeps the premium rhythm, prevents layout breaks.
   =========================================================== */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .smart-booking-form { padding: 26px !important; }
  .page-hero h1 { font-size: clamp(38px, 5.4vw, 56px) !important; letter-spacing: -0.022em !important; }
  .page-hero .lead { font-size: 1rem !important; }
  .smart-booking-form h2,
  .multi-day-header h2 { font-size: 1.2rem !important; }
  .bwiz-panel-title { font-size: 1.35rem !important; }
  .price-panel .price-value { font-size: clamp(2rem, 4vw, 2.6rem) !important; }
  .vehicle-picker { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important; }
}

/* Mobile (≤ 720px) */
@media (max-width: 720px) {
  .smart-booking-form { padding: 18px !important; border-radius: 18px !important; }
  .smart-booking-form .service-panel,
  .smart-booking-form .upload-panel,
  .smart-booking-form .multi-day-routes { padding: 16px !important; border-radius: 14px !important; }

  .page-hero h1 { font-size: clamp(30px, 8vw, 40px) !important; letter-spacing: -0.02em !important; line-height: 1.08 !important; }
  .page-hero .lead { font-size: 0.95rem !important; line-height: 1.55 !important; }
  .page-hero .eyebrow { font-size: 10px !important; letter-spacing: 0.16em !important; }

  .smart-booking-form h2,
  .smart-booking-form h3,
  .multi-day-header h2,
  .confirmation-panel h2 { font-size: 1.1rem !important; letter-spacing: -0.015em !important; }
  .bwiz-panel-title { font-size: 1.2rem !important; }
  .bwiz-panel-sub { font-size: 0.9rem !important; }

  .smart-booking-form label,
  .smart-booking-form .eyebrow,
  .price-panel dt,
  .trip-mode-toggle > span:first-child { font-size: 10px !important; letter-spacing: 0.14em !important; }

  .smart-booking-form input:not([type="file"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
  .smart-booking-form select,
  .smart-booking-form textarea,
  .smart-booking-form .pdt-trigger {
    font-size: 16px !important; /* prevents iOS zoom-on-focus */
    padding: 13px 14px !important;
    border-radius: 12px !important;
  }
  .smart-booking-form input[type="submit"],
  .bwiz-submit, .bwiz-next {
    font-size: 0.95rem !important; padding: 14px 22px !important; width: 100%;
  }

  .vehicle-picker { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .vehicle-picker .vehicle-card { padding: 14px 10px 12px !important; }
  .vehicle-picker .vehicle-card img { height: 52px !important; max-width: 96px; }
  .vehicle-picker .vehicle-card span { font-size: 0.82rem !important; }

  .trip-mode-toggle {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 10px !important;
    padding-top: 14px;
    margin-top: 14px !important;
  }
  .trip-mode-toggle > span:first-child { grid-column: 1 / -1; }
  .trip-mode-toggle label { padding: 12px 14px !important; font-size: 0.9rem !important; }

  .multi-day-header { flex-direction: column; align-items: flex-start !important; gap: 10px; }
  .smart-booking-form #addRouteDay { width: 100%; text-align: center; }
  .smart-booking-form .route-day { padding: 16px !important; }
  .smart-booking-form .route-day-title { font-size: 0.68rem !important; }
  .smart-booking-form .route-day .day-distance { text-align: left; font-size: 0.8rem !important; }

  .price-panel .price-value { font-size: clamp(1.9rem, 9vw, 2.4rem) !important; }

  .grid.two { grid-template-columns: 1fr !important; gap: 12px !important; }
}

/* Small phones (≤ 380px) */
@media (max-width: 380px) {
  .smart-booking-form { padding: 14px !important; }
  .vehicle-picker { grid-template-columns: 1fr !important; }
  .page-hero h1 { font-size: 26px !important; }
}

/* ===========================================================
   Final polish — error states, dropdowns, selection
   Ensures champagne gold is applied everywhere, no stray hues.
   =========================================================== */

/* Text selection */
.smart-booking-form ::selection,
.bulk-upload-section ::selection,
.price-panel ::selection { background: rgba(227,200,129,0.32); color: #1a1208; }

/* Native select arrow tint */
.smart-booking-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--nb-accent) 50%),
                    linear-gradient(135deg, var(--nb-accent) 50%, transparent 50%) !important;
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50% !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
  padding-right: 36px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.smart-booking-form select option {
  background: #0f1428 !important;
  color: var(--nb-text) !important;
}

/* Invalid / error states */
.smart-booking-form input:user-invalid,
.smart-booking-form select:user-invalid,
.smart-booking-form textarea:user-invalid,
.smart-booking-form input.is-error,
.smart-booking-form .is-error input,
.smart-booking-form .is-error select,
.smart-booking-form .is-error textarea {
  border-color: rgba(232, 113, 113, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(232, 113, 113, 0.12) !important;
}
.smart-booking-form .form-status.is-error,
.smart-booking-form .field-error,
.bulk-upload-section .form-status.is-error {
  color: #f0a4a4 !important;
}
.smart-booking-form .form-status.is-success {
  color: var(--nb-accent) !important;
}

/* Human-check (anti-bot) — gold styling */
.human-check[data-verified="true"] .human-check-track {
  background: linear-gradient(90deg, rgba(227,200,129,0.30), rgba(227,200,129,0.55)) !important;
  border-color: var(--nb-accent-bd) !important;
}
.human-check-fill {
  background: linear-gradient(90deg, rgba(227,200,129,0.18), rgba(227,200,129,0.45)) !important;
}

/* Place suggestions dropdown — gold tint */
.place-suggestions-panel {
  background: linear-gradient(160deg, rgba(18,24,38,0.95), rgba(10,15,26,0.95)) !important;
  border-color: var(--nb-accent-bd) !important;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.7),
              0 0 0 1px rgba(227,200,129,0.08) inset !important;
}
.place-suggestion-item:hover,
.place-suggestion-item.is-active,
.place-suggestion-item[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(227,200,129,0.22), rgba(227,200,129,0.04)) !important;
  color: #fff !important;
}

/* Premium date/time picker trigger + popover */
.pdt-trigger:focus-visible,
.pdt-trigger.is-open {
  border-color: var(--nb-accent-bd) !important;
  box-shadow: 0 0 0 3px var(--nb-accent-bg) !important;
}
.pdt-popover,
.pdt-panel {
  border-color: var(--nb-accent-bd) !important;
}
.pdt-day.is-selected,
.pdt-day[aria-selected="true"],
.pdt-time.is-selected {
  background: linear-gradient(135deg, var(--nb-accent), var(--nb-accent-2)) !important;
  color: #1a1208 !important;
  border-color: transparent !important;
}
.pdt-day.is-today { border-color: var(--nb-accent) !important; color: var(--nb-accent) !important; }
.pdt-confirm,
.pdt-popover button.is-primary {
  background: linear-gradient(135deg, var(--nb-accent), var(--nb-accent-2)) !important;
  color: #1a1208 !important;
  border: none !important;
}

/* Bulk preview — selected rows & primary buttons */
.bulk-actions .bulk-submit,
.bulk-actions button.is-primary {
  background: linear-gradient(135deg, var(--nb-accent), var(--nb-accent-2)) !important;
  color: #1a1208 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
}
.bulk-actions button:not(.bulk-submit):not(.is-primary) {
  background: var(--nb-accent-bg) !important;
  border: 1px solid var(--nb-accent-bd) !important;
  color: var(--nb-accent) !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  font-weight: 600 !important;
}
.bulk-table tbody tr:hover { background: rgba(227,200,129,0.05); }
.bulk-table input[type="checkbox"]:checked { accent-color: var(--nb-accent); }
.smart-booking-form input[type="checkbox"],
.smart-booking-form input[type="radio"] { accent-color: var(--nb-accent); }

/* Quote download / secondary CTA */
.quote-download {
  background: var(--nb-accent-bg) !important;
  border: 1px solid var(--nb-accent-bd) !important;
  color: var(--nb-accent) !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.quote-download:hover {
  background: rgba(227,200,129,0.18) !important;
  color: #fff !important;
}

/* ---------- Vehicle capacity guard ---------- */
.capacity-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 12px 0 4px;
  padding: 12px 14px;
  background: rgba(227, 90, 90, 0.08);
  border: 1px solid rgba(227, 90, 90, 0.45);
  border-radius: 14px;
  color: var(--nb-text);
  font-size: 0.88rem;
  line-height: 1.45;
}
.capacity-hint .cap-hint-body { flex: 1 1 240px; min-width: 0; }
.capacity-hint .cap-hint-body strong { color: #ffd0c4; font-weight: 700; }
.capacity-hint .cap-hint-body em { color: var(--nb-accent); font-style: normal; font-weight: 700; }
.capacity-hint .cap-hint-cta {
  background: var(--nb-accent);
  color: #0c1024;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  box-shadow: 0 4px 12px rgba(227, 200, 129, 0.35);
}
.capacity-hint .cap-hint-cta:hover { background: var(--nb-accent-2); transform: translateY(-1px); }
input#passengers.is-over-capacity {
  border-color: rgba(227, 90, 90, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(227, 90, 90, 0.18) !important;
}

/* ---------- Quote-mode (MICE / Conferences / School trips) ---------- */
/* Hide route, distance, map, vehicle picker and price for tailor-made quote requests */
.smart-booking-form.is-quote-mode .route-map,
.smart-booking-form.is-quote-mode .day-summary,
.smart-booking-form.is-quote-mode #routeCalculationStatus,
.smart-booking-form.is-quote-mode .vehicle-picker,
.smart-booking-form.is-quote-mode .price-panel .price-value,
.smart-booking-form.is-quote-mode .price-panel dl {
  display: none !important;
}
.smart-booking-form.is-quote-mode .price-panel::before {
  content: "Tailor-made quote";
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--nb-accent);
  margin-bottom: 8px;
}
.smart-booking-form.is-quote-mode .price-panel p:last-child::before {
  content: "Our team will review your event details and reply with a personalised offer by email — usually within one business day.";
  display: block;
  color: var(--nb-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.smart-booking-form.is-quote-mode .price-panel p:last-child { font-size: 0; }

/* MICE date range cell */
.special-dates-cell { display: flex; flex-direction: column; gap: 0.5rem; }
.special-dates-cell > label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gte-gold, #c9a961); font-weight: 600; }
.special-dates-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.5rem; }
.special-dates-row input[type="date"] { width: 100%; min-width: 0; }
.special-dates-sep { color: var(--gte-gold, #c9a961); font-weight: 600; opacity: 0.7; }
@media (max-width: 480px) {
  .special-dates-row { grid-template-columns: 1fr; }
  .special-dates-sep { display: none; }
}
