* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background: #fff; color: #222; overflow-x: hidden; }
.top-icon-nav { background: #fff; border-bottom: 1px solid #eee; padding: 10px 0 6px; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
/* Keeps Dark/Light toggle visible — icons scroll separately */
.top-icon-nav-inner { display: flex; align-items: center; gap: 8px; }
.theme-toggle-btn { border: 1px solid #dbe2ea; background: #fff; color: #1e293b; border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.theme-toggle-btn:hover { background: #f8fafc; }
.theme-toggle-btn { position: relative; z-index: 5; cursor: pointer; }
.header-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; padding-left: 8px; margin-left: 0; border-left: 1px solid #eee; }
.header-dashboard-link { text-decoration: none; border: 1px solid #dbe2ea; background: #fff; color: #1e293b; border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.header-dashboard-link:hover { background: #f8fafc; color: #0f172a; }
.icon-scroll-wrapper { display: flex; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; gap: 6px; padding: 0 4px 4px 10px; scrollbar-width: none; flex: 1; min-width: 0; }
.icon-scroll-wrapper::-webkit-scrollbar { display: none; }
.icon-item { display: flex; flex-direction: column; align-items: center; min-width: 92px; cursor: pointer; transition: transform .2s; }
.custom-icon-box img { width: 75px; }
.icon-item:hover { transform: translateY(-2px); }
.icon-item .icon-box { width: 52px; height: 52px; border-radius: 50%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; overflow: hidden; }
.icon-item .icon-box img { width: 32px; height: 32px; object-fit: contain; }
.icon-item span { font-size: 14px; font-weight: 500; color: #333; text-align: center; white-space: nowrap; }
.vehicle-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.vtab { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 14px; border-radius: 10px; cursor: pointer; border: 2px solid #eee; background: #fafafa; min-width: 70px; transition: all .2s; }
.vtab.active, .vtab:hover { border-color: #0071eb; background: #e8f1ff; }
.vtab img { width: 36px; height: 28px; object-fit: contain; }
.vtab span { font-size: 11px; font-weight: 600; color: #333; }
/* Home: vehicle + seater strip (below top nav, same as original layout) */
.home-vehicle-strip { margin-bottom: 0.25rem; }
/* Home booking card: vehicle tiles + icon discs (match marketing UI) */
.vehicle-pick { margin-top: 4px; }
.vehicle-pick .vehicle-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin-bottom: 8px;
  scrollbar-width: none;
}
.vehicle-pick .vehicle-tabs::-webkit-scrollbar { display: none; }
.vehicle-pick .vtab {
  flex: 0 0 auto;
  min-width: 72px;
  max-width: 88px;
  padding: 8px 6px 10px;
  border-radius: 12px;
  border: 2px solid #e8e8e8;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.vehicle-pick .vtab.active {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}
.vehicle-pick .vtab > span:last-child { font-size: 10px; font-weight: 600; color: #1e293b; text-align: center; line-height: 1.2; }
.vtab-disc {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vtab-disc--img { padding: 0; background: #f1f5f9; }
.vtab-disc--img img { width: 100%; height: 100%; object-fit: cover; }
.vtab-disc--teal { background: linear-gradient(145deg, #0d9488, #14b8a6); color: #fff; font-size: 1.1rem; }
.vtab-disc--teal2 { background: linear-gradient(145deg, #0f766e, #2dd4bf); color: #fff; font-size: 1.1rem; }
.vtab-disc--amber { background: linear-gradient(145deg, #eab308, #facc15); color: #fff; font-size: 1.1rem; }
.vtab-disc--violet { background: linear-gradient(145deg, #7c3aed, #a78bfa); color: #fff; font-size: 1.1rem; }
.vehicle-pick .vtab.vtab--group-wide {
  min-width: 92px;
  max-width: 108px;
}
.vehicle-pick .vtab.vtab--group-wide > span:last-child {
  font-size: 9px;
  line-height: 1.25;
  max-width: 100%;
}

/* Luggage & group enquiry counters */
.luggage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.guest-group-luggage-row {
  width: 100%;
}

/* Home booking — luggage: two tiles; each tile is one row (icon+label | stepper) */
.booking-card label.guest-luggage-heading {
  font-weight: 800;
  color: #888;
  letter-spacing: 0.06em;
}
.guest-luggage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.luggage-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  border: 1px solid #d8dde4;
  border-radius: 14px;
  padding: 12px 10px;
  background: #fff;
  box-sizing: border-box;
}
.luggage-tile-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  text-align: left;
}
.luggage-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0071eb;
  flex-shrink: 0;
}
/* Guest luggage tile icons — compact on mobile; slightly larger ≥768px (CSS overrides SVG width/height attrs) */
.luggage-tile-icon--small svg {
  display: block;
  width: auto;
  height: 22px;
  aspect-ratio: 32 / 40;
}
.luggage-tile-icon--large svg {
  display: block;
  width: 22px;
  height: auto;
  aspect-ratio: 44 / 28;
}
.luggage-tile-label {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1.2;
  min-width: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
/* Mobile-first: S/B only (visually-hidden full phrase in Blade for SR). Tablet+: full words. */
.luggage-tile-label-full,
.luggage-tile-label-short {
  display: none;
}
.luggage-tile-label-letter {
  display: inline;
}
.luggage-tile .luggage-tile-stepper.luggage-counter-controls {
  width: auto;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
  margin-top: 0;
}
.luggage-tile .luggage-counter-val {
  color: #111;
  font-weight: 700;
}
/* Compact luggage tiles on small viewports (label variant is mobile-first S/B in base rules) */
@media (max-width: 420px) {
  .guest-luggage-grid {
    gap: 6px;
  }
  .luggage-tile {
    gap: 6px;
    padding: 10px 6px;
  }
  .luggage-tile-top {
    gap: 5px;
  }
  .luggage-tile .luggage-tile-stepper.luggage-counter-controls {
    gap: 12px;
  }
  .luggage-tile .luggage-counter-btn {
    padding: 2px 4px;
    font-size: 1.15rem;
  }
  .luggage-tile .luggage-counter-val {
    min-width: 1.25rem;
    font-size: 15px;
  }
  .luggage-tile-icon--small svg {
    height: 20px;
  }
  .luggage-tile-icon--large svg {
    width: 20px;
  }
}
@media (min-width: 768px) {
  .luggage-tile-icon--small svg {
    height: 26px;
  }
  .luggage-tile-icon--large svg {
    width: 26px;
  }
  .luggage-tile-label-full {
    display: inline;
  }
  .luggage-tile-label-short,
  .luggage-tile-label-letter {
    display: none;
  }
  .luggage-tile {
    gap: 14px;
    padding: 12px 16px;
    min-height: 56px;
  }
  .luggage-tile-top {
    gap: 12px;
  }
  .luggage-tile .luggage-tile-stepper.luggage-counter-controls {
    gap: 14px;
  }
}
.luggage-counter.luggage-counter--bar {
  flex: 1 1 calc(50% - 6px);
  min-width: min(100%, 220px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  box-sizing: border-box;
}
.luggage-counter.luggage-counter--bar.luggage-counter--full {
  flex: 1 1 100%;
  max-width: 100%;
}
.luggage-counter-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.luggage-counter-ico {
  color: #0071eb;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.luggage-counter-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.01em;
}
.luggage-counter-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.luggage-counter-val {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  min-width: 1.75rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.luggage-counter-btn {
  border: none;
  background: transparent;
  color: #0071eb;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.luggage-counter-btn:hover {
  background: rgba(0, 113, 235, 0.12);
}
[data-theme="dark"] .luggage-counter.luggage-counter--bar {
  background: #0f172a;
  border-color: #334155;
}
[data-theme="dark"] .luggage-counter-label {
  color: #e2e8f0;
}
[data-theme="dark"] .luggage-counter-val {
  color: #f8fafc;
}
[data-theme="dark"] .luggage-counter-btn:hover {
  background: rgba(59, 130, 246, 0.18);
}
[data-theme="dark"] .booking-card label.guest-luggage-heading {
  color: #94a3b8;
}
[data-theme="dark"] .luggage-tile {
  background: #111827;
  border-color: #334155;
}
[data-theme="dark"] .luggage-tile-label {
  color: #f8fafc;
}
[data-theme="dark"] .luggage-tile .luggage-counter-val {
  color: #f8fafc;
}
[data-theme="dark"] .luggage-tile-icon {
  color: #38bdf8;
}

/* Home booking — surcharge reference (matches fare calculator) */
.guest-additional-charges {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #f1f5f9;
  background-image:
    linear-gradient(135deg, rgba(241, 245, 249, 0.92) 0%, rgba(248, 250, 252, 0.98) 45%, rgba(226, 239, 252, 0.85) 100%),
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 18px,
      rgba(148, 163, 184, 0.06) 18px,
      rgba(148, 163, 184, 0.06) 19px
    );
}
.guest-additional-charges__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #0f172a;
}
.guest-additional-charges__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #1e293b;
  line-height: 1.35;
}
.guest-additional-charges__list li:last-child {
  margin-bottom: 0;
}
.guest-additional-charges__ico {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  color: #0f172a;
}
.guest-additional-charges__per {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
}
[data-theme="dark"] .guest-additional-charges {
  border-color: #334155;
  background-color: #0f172a;
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(17, 24, 39, 0.98) 50%, rgba(30, 41, 59, 0.92) 100%),
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 18px,
      rgba(148, 163, 184, 0.05) 18px,
      rgba(148, 163, 184, 0.05) 19px
    );
}
[data-theme="dark"] .guest-additional-charges__title {
  color: #f1f5f9;
}
[data-theme="dark"] .guest-additional-charges__list li {
  color: #e2e8f0;
}
[data-theme="dark"] .guest-additional-charges__ico {
  color: #f8fafc;
}
[data-theme="dark"] .guest-additional-charges__per {
  color: #94a3b8;
}

/* Airport extras (pickup / drop-off) — type + flight on one row */
.guest-airport-panel-inner {
  background: #3f3f46;
  color: #fafafa;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #52525b;
}
[data-theme="dark"] .guest-airport-panel-inner {
  background: #27272a;
  border-color: #3f3f46;
}
.guest-airport-panel-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  opacity: 0.92;
}
.airport-meta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 12px;
}
.airport-meta-type {
  flex: 1 1 55%;
  min-width: 0;
}
.airport-meta-flight {
  flex: 1 1 45%;
  min-width: 0;
  max-width: 168px;
}
.airport-meta-label,
.airport-flight-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 6px;
  opacity: 0.85;
}
.airport-radio-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: center;
}
.airport-radio-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
  margin: 0;
  white-space: nowrap;
}
.airport-radio-opt input {
  width: 16px;
  height: 16px;
  accent-color: #fbbf24;
  flex-shrink: 0;
}
.airport-flight-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #71717a;
  padding: 8px 10px;
  font-size: 13px;
  background: #fafafa;
  color: #18181b;
  box-sizing: border-box;
}
[data-theme="dark"] .airport-flight-input {
  background: #18181b;
  color: #f4f4f5;
  border-color: #52525b;
}
@media (max-width: 380px) {
  .airport-meta-row {
    gap: 8px;
  }
  .airport-radio-inline {
    gap: 10px;
  }
  .airport-radio-opt span {
    font-size: 12px;
  }
}

.vehicle-pick .seater-pills {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 2px; margin-bottom: 4px;
}
.vehicle-pick .seater-pill {
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border .2s, color .2s;
  font-family: 'Poppins', sans-serif;
}
.vehicle-pick .seater-pill:hover { border-color: #94c4ff; }
.vehicle-pick .seater-pill.active { background: #2563eb; color: #fff; border-color: #2563eb; }
[data-theme="dark"] .vehicle-pick .vtab { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .vehicle-pick .vtab > span:last-child { color: #e2e8f0; }
[data-theme="dark"] .vehicle-pick .vtab.active { border-color: #3b82f6; }
[data-theme="dark"] .vehicle-pick .vtab.active > span:last-child { color: #f8fafc; }
[data-theme="dark"] .vehicle-pick .vtab-disc--img { background: #0f172a; border: 1px solid #334155; }
[data-theme="dark"] .vehicle-pick .vtab-disc--img img { filter: brightness(1.08) contrast(1.05); }
[data-theme="dark"] .vehicle-pick .seater-pill { background: #0f172a; border-color: #334155; color: #e2e8f0; }
[data-theme="dark"] .vehicle-pick .seater-pill.active { background: #2563eb; color: #fff; border-color: #2563eb; }
.booking-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); min-height: 580px; display: flex; align-items: center; padding: 40px 0; }
.booking-card { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,.25); width: 100%; overflow: visible; }
.booking-section .container,
.booking-section .row { overflow: visible; }
.trip-toggle { display: flex; border-radius: 8px; overflow: hidden; margin-bottom: 20px; border: 1px solid #0071eb; }
.trip-toggle button { flex: 1; padding: 10px 0; border: none; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.trip-toggle .active-tab { background: #0071eb; color: #fff; }
.trip-toggle .inactive-tab { background: #fff; color: #0071eb; }
.booking-card label { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; display: block; }
.booking-card input[type="text"],.booking-card input[type="email"],.booking-card input[type="password"], .booking-card input[type="date"], .booking-card input[type="time"] { width: 100%; padding: 10px 14px; border: 1.5px solid #e0e0e0; border-radius: 8px; font-size: 13px; font-family: 'Poppins', sans-serif; outline: none; transition: border .2s; background: #fafafa; }
.booking-card input:focus { border-color: #0071eb; background: #fff; }
.input-icon { position: relative; }
.input-icon .dot { position: absolute; left: -15px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; }
.dot-blue { background: #0071eb; }
.dot-yellow { background: #f7b731; }
.input-icon input { padding-left: 32px; }
.extra-services { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.extra-services label.extra-btn { margin-bottom: 0; cursor: pointer; }
/* Booking card labels are global uppercase/caption — restore chip layout & readable contrast */
.booking-card .extra-services label.extra-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px 12px 8px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.25;
  background: #fff;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  color: #334155;
  user-select: none;
  position: relative;
}
.booking-card .extra-services label.extra-btn::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid #94a3b8;
  background: #f8fafc;
  box-sizing: border-box;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.booking-card .extra-services label.extra-btn:has(input:checked)::before,
.booking-card .extra-services label.extra-btn.extra-btn--checked::before {
  border-color: #2563eb;
  background: #2563eb
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 11px 9px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.booking-card .extra-services label.extra-btn:hover {
  border-color: #3b82f6;
  background: #f1f5f9;
}
.booking-card .extra-services label.extra-btn:has(input:checked),
.booking-card .extra-services label.extra-btn.extra-btn--checked {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1e3a8a;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.18);
}
.booking-card .extra-services label.extra-btn:has(input:checked) i,
.booking-card .extra-services label.extra-btn.extra-btn--checked i {
  color: #1d4ed8;
}
.booking-card .extra-services label.extra-btn:focus-within {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.booking-card .extra-services label.extra-btn i {
  font-size: 14px;
  color: #2563eb;
}
[data-theme="dark"] .booking-card .extra-services label.extra-btn {
  background: #0f172a;
  border-color: #475569;
  color: #e2e8f0;
}
[data-theme="dark"] .booking-card .extra-services label.extra-btn::before {
  border-color: #64748b;
  background: #1e293b;
}
[data-theme="dark"] .booking-card .extra-services label.extra-btn:hover {
  border-color: #60a5fa;
  background: #1e293b;
}
[data-theme="dark"] .booking-card .extra-services label.extra-btn:has(input:checked),
[data-theme="dark"] .booking-card .extra-services label.extra-btn.extra-btn--checked {
  border-color: #60a5fa;
  background: rgba(37, 99, 235, 0.28);
  color: #f8fafc;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.35);
}
[data-theme="dark"] .booking-card .extra-services label.extra-btn:has(input:checked)::before,
[data-theme="dark"] .booking-card .extra-services label.extra-btn.extra-btn--checked::before {
  border-color: #93c5fd;
  background: #2563eb
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 11px 9px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
[data-theme="dark"] .booking-card .extra-services label.extra-btn i {
  color: #93c5fd;
}
[data-theme="dark"] .booking-card .extra-services label.extra-btn:has(input:checked) i,
[data-theme="dark"] .booking-card .extra-services label.extra-btn.extra-btn--checked i {
  color: #bfdbfe;
}
.fare-row { display: flex; justify-content: space-between; align-items: center; margin: 16px 0 4px; }
.fare-label { font-size: 11px; color: #999; }
.fare-amount { font-size: 22px; font-weight: 800; color: #222; }
.fare-note { font-size: 10px; color: #aaa; }
.step-header { font-size: 12px; font-weight: 700; color: #0071eb; margin-bottom: 12px; text-align: right; }
.booking-notes { width: 100%; min-height: 90px; padding: 10px 14px; border: 1.5px solid #e0e0e0; border-radius: 8px; font-size: 13px; font-family: 'Poppins', sans-serif; background: #fafafa; }
.payment-method-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-method-btn { border: 1.5px solid #e0e0e0; background: #fff; border-radius: 10px; padding: 9px 10px; font-size: 12px; font-weight: 600; color: #334155; }
.pay-method-btn.active { border-color: #10b981; background: #ecfdf5; color: #047857; }
.btn-confirm { width: 100%; padding: 14px; border: none; background: linear-gradient(90deg, #0071eb, #0096ff); color: #fff; font-size: 15px; font-weight: 700; border-radius: 10px; cursor: pointer; margin-top: 10px; letter-spacing: .3px; transition: opacity .2s; font-family: 'Poppins', sans-serif; }
.btn-confirm:hover { opacity: .9; }
.btn-confirm-outline { background: #fff; color: #0071eb; border: 2px solid #0071eb; }
.btn-confirm-outline:hover { background: rgba(0, 113, 235, 0.06); }
.btn-create-account { background: #1b4d3e; text-transform: uppercase; letter-spacing: 0.06em; font-size: 14px; }
.btn-create-account:hover { opacity: 0.95; }
.guest-step3-lead { font-size: 13px; color: #555; line-height: 1.5; margin-bottom: 12px; }
.guest-step3-title { font-size: 1.15rem; font-weight: 700; color: #1a2b3c; margin-bottom: 18px; font-family: Georgia, 'Times New Roman', serif; }
.form-hint { font-size: 12px; color: #888; margin-top: 4px; }
.login-popup-btn { margin-top: 8px; background: linear-gradient(90deg, #1f2937, #374151); }
.seater-pills { display: flex; gap: 8px; margin-bottom: 16px; }
.seater-pill { padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1.5px solid #e0e0e0; background: #fafafa; color: #333; transition: all .2s; }
.seater-pill.active { background: #0071eb; color: #fff; border-color: #0071eb; }
.stop-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.stop-row input { flex: 1; min-width: 0; }
.btn-stop-remove { width: 38px; min-width: 38px; height: 38px; border: none; background: #ef4444; color: #fff; border-radius: 8px; font-size: 20px; line-height: 1; cursor: pointer; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0; }
.btn-stop-remove:hover { background: #dc2626; }
.btn-add-stop { margin-top: 6px; padding: 8px 14px; border: 1.5px solid #0071eb; background: #e8f1ff; color: #0071eb; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif; }
.btn-add-stop:hover { background: #dbeafe; }
.btn-add-stop:disabled { opacity: 0.45; cursor: not-allowed; }
.guest-return-block { border-top: 1px dashed #e2e8f0; padding-top: 0.6rem; margin-top: 0.5rem; }
.guest-return-block input:disabled { opacity: 0.75; }
.how-section { padding: 60px 0; background: #fff; }
.how-section h2 { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.how-section p.sub { text-align: center; color: #888; font-size: 13px; max-width: 540px; margin: 0 auto 40px; }
.how-steps { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.step-box { text-align: center; flex: 1; min-width: 160px; max-width: 220px; padding: 20px 10px; }
.step-icon-wrap { width: 70px; height: 70px; border-radius: 50%; background: #f0f6ff; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-icon-wrap i { font-size: 28px; color: #0071eb; }
.step-box h5 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.step-box p { font-size: 12px; color: #888; }
.step-arrow { font-size: 22px; color: #ccc; padding: 0 4px; }
.why-section { background: #f9f9f9; padding: 60px 0; }
.why-section h2 { font-size: 26px; font-weight: 800; }
.why-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.why-icon { width: 50px; height: 50px; min-width: 50px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.why-icon i { font-size: 22px; color: #0071eb; }
.why-text h6 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.why-text p { font-size: 12px; color: #888; margin: 0; }
.city-list { font-size: 13px; color: #555; }
.feature-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; }
.feature-check .dot-green { width: 10px; height: 10px; background: #22c55e; border-radius: 50%; }
.cab-section { background: #f9f9f9; padding: 60px 0; }
.cab-section h2 { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.store-badges { display: flex; gap: 12px; margin-top: 18px; }
.store-badge { background: #111; color: #fff; border-radius: 10px; padding: 8px 16px; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.store-badge i { font-size: 22px; }
.store-badge .badge-text small { font-size: 9px; display: block; opacity: .7; }
.store-badge .badge-text span { font-size: 13px; font-weight: 700; }
.cta-strip { background: #f7b731; padding: 30px 0; text-align: center; }
.cta-strip h4 { font-size: 16px; font-weight: 600; color: #222; margin-bottom: 6px; }
.cta-strip h2 { font-size: 34px; font-weight: 800; color: #222; }
.map-section { background: #e8e8e8; min-height: 280px; position: relative; overflow: hidden; }
.map-section iframe { width: 100%; height: 280px; border: none; filter: grayscale(20%); }
.map-label { position: absolute; top: 16px; left: 16px; background: #fff; border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 700; box-shadow: 0 2px 10px rgba(0,0,0,.15); }
.footer { background: #111; color: #eee; padding: 30px 0; }
.footer-logo { font-size: 18px; font-weight: 800; color: #f7b731; }
.footer p { font-size: 12px; color: #aaa; margin: 8px 0 0; }
.footer-features { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0; }
.f-tag { border: 1px solid #555; border-radius: 20px; padding: 4px 12px; font-size: 11px; color: #ccc; cursor: pointer; transition: all .2s; }
.f-tag:hover { background: #f7b731; color: #111; border-color: #f7b731; }
.footer-addr { font-size: 12px; color: #aaa; }
.footer-addr i { color: #f7b731; margin-right: 4px; }
.footer-copy { text-align: center; font-size: 11px; color: #666; margin-top: 20px; border-top: 1px solid #333; padding-top: 16px; }
.dynamic-section { background: #fff; }
.auth-modal-overlay { position: fixed; inset: 0; background: rgba(2, 6, 23, .75); display: none; align-items: center; justify-content: center; z-index: 10000; }
.auth-modal-overlay.show { display: flex; }
.auth-modal-card { width: 340px; max-width: calc(100vw - 24px); background: radial-gradient(circle at 20% 20%, #143b6f, #071a35 65%); border: 1px solid rgba(56, 189, 248, .45); border-radius: 26px; padding: 20px 18px; color: #e5f4ff; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.auth-close-btn { position: absolute; right: 10px; top: 8px; width: 30px; height: 30px; border: none; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 20px; }
.auth-brand { text-align: center; color: #f7b731; font-size: 14px; margin-bottom: 10px; }
.auth-tab-row { display: flex; gap: 8px; background: rgba(255,255,255,.08); border-radius: 999px; padding: 4px; margin-bottom: 14px; }
.auth-tab { flex: 1; border: none; border-radius: 999px; padding: 8px 0; background: transparent; color: #dbeafe; font-size: 13px; }
.auth-tab.active { background: linear-gradient(90deg, #0ea5e9, #7c3aed); color: #fff; }
.auth-role-row { display: flex; gap: 10px; margin-bottom: 14px; }
.auth-role-card { flex: 1; text-align: center; border: 1px solid rgba(56,189,248,.5); border-radius: 14px; padding: 14px 8px; font-size: 13px; background: rgba(255,255,255,.03); cursor: pointer; }
.auth-role-card.active { background: #e2e8f0; color: #0f172a; border-color: #22d3ee; box-shadow: 0 0 16px rgba(34,211,238,.5); }
.auth-form-box { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.auth-form-box input { width: 100%; border: 1px solid rgba(148,163,184,.5); border-radius: 999px; background: rgba(15,23,42,.5); color: #fff; padding: 10px 14px; font-size: 13px; }
.auth-form-box button { border: none; border-radius: 999px; padding: 10px 14px; background: linear-gradient(90deg, #06b6d4, #6366f1); color: #fff; font-weight: 600; }
.auth-google-btn { text-align: center; border-radius: 999px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.25); color: #fff; text-decoration: none; font-size: 12px; }
[data-theme="dark"] body { background: #0f172a; color: #e2e8f0; }
[data-theme="dark"] .top-icon-nav { background: #0b1220; border-bottom-color: #1f2937; box-shadow: 0 2px 8px rgba(0,0,0,.35); }
[data-theme="dark"] .header-actions { border-left-color: #1f2937; }
[data-theme="dark"] .theme-toggle-btn { background: #111827; color: #f8fafc; border-color: #334155; }
[data-theme="dark"] .theme-toggle-btn:hover { background: #1f2937; }
[data-theme="dark"] .header-dashboard-link { background: #111827; color: #f8fafc; border-color: #334155; }
[data-theme="dark"] .header-dashboard-link:hover { background: #1f2937; color: #fff; }
[data-theme="dark"] .icon-item span { color: #e2e8f0; }
[data-theme="dark"] .vtab { background: #111827; border-color: #374151; }
[data-theme="dark"] .vtab span { color: #f1f5f9; }
[data-theme="dark"] .seater-pill { background: #111827; border-color: #374151; color: #f8fafc; }
[data-theme="dark"] .filter-bar,
[data-theme="dark"] .main-section,
[data-theme="dark"] .dynamic-section,
[data-theme="dark"] .how-section,
[data-theme="dark"] .why-section,
[data-theme="dark"] .cab-section { background: #0f172a; color: #e2e8f0; }
[data-theme="dark"] .pkg-card,
[data-theme="dark"] .ride-card,
[data-theme="dark"] .booking-card { background: #111827; color: #e2e8f0; box-shadow: 0 12px 30px rgba(2, 6, 23, 0.5); }
[data-theme="dark"] .pkg-desc,
[data-theme="dark"] .pkg-meta-item,
[data-theme="dark"] .why-text p,
[data-theme="dark"] .city-list { color: #cbd5e1; }
[data-theme="dark"] .filter-group .form-control,
[data-theme="dark"] .filter-group .form-select { background: #0b1220; color: #f8fafc; border-color: #334155; }
@media(max-width:768px) {
  .vehicle-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .vehicle-tabs::-webkit-scrollbar { display: none; }
  .vehicle-tabs .vtab {
    flex: 0 0 auto;
  }
  .seater-pills {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .seater-pills::-webkit-scrollbar { display: none; }
  .seater-pills .seater-pill { flex: 0 0 auto; min-width: 110px; text-align: center; }
  .header-actions { padding-left: 6px; gap: 6px; }
  .header-dashboard-link, .theme-toggle-btn { padding: 6px 10px; font-size: 11px; }

  body { padding-bottom: 88px; }
  .sticky-footer-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.08);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sticky-footer-mobile::-webkit-scrollbar { display: none; }
  .sticky-footer-mobile__item {
    flex: 0 0 auto;
    min-width: 72px;
    text-decoration: none;
    color: #1f2937;
    text-align: center;
    font-size: 11px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .sticky-footer-mobile__item img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    border-radius: 10px;
  }
  .sticky-footer-mobile__menu summary {
    list-style: none;
    cursor: pointer;
  }
  .sticky-footer-mobile__menu summary::-webkit-details-marker { display: none; }
  .sticky-footer-mobile__menu-panel {
    position: fixed;
    right: 10px;
    bottom: 86px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    padding: 6px;
  }
  .sticky-footer-mobile__menu-link,
  .sticky-footer-mobile__menu-btn {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 8px 10px;
    border-radius: 8px;
    color: #111827;
    text-decoration: none;
    font-size: 13px;
    display: block;
  }
  .sticky-footer-mobile__menu-btn { cursor: pointer; }
  .sticky-footer-mobile__menu-link:hover,
  .sticky-footer-mobile__menu-btn:hover { background: #f3f4f6; }

  [data-theme="dark"] .sticky-footer-mobile {
    background: #0b1220;
    border-top-color: #334155;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.4);
  }
  [data-theme="dark"] .sticky-footer-mobile__item { color: #e2e8f0; }
  [data-theme="dark"] .sticky-footer-mobile__menu-panel {
    background: #111827;
    border-color: #334155;
  }
  [data-theme="dark"] .sticky-footer-mobile__menu-link,
  [data-theme="dark"] .sticky-footer-mobile__menu-btn { color: #e2e8f0; }
  [data-theme="dark"] .sticky-footer-mobile__menu-link:hover,
  [data-theme="dark"] .sticky-footer-mobile__menu-btn:hover { background: #1f2937; }

  .booking-section { 
	padding:0px; 
	background:transparent;
	}
  .filter-size .form-control{
	  font-size:12px;
  }
  .apply-btn, .join-btn {
    border-radius: 8px;
    font-size: 12px;
}
  .step-arrow { display: none; }
  .how-steps { gap: 10px; }
  .why-section .col-lg-7 { display: block; }
  
}
.custom-filter {
    filter: blur(3px);
    pointer-events: none;
}

/* —— Airport Special (home) —— */
.airport-special-section {
    position: relative;
    padding: 0 0 48px;
    background: linear-gradient(165deg, #fff4e6 0%, #ffe8cc 32%, #fff7ed 68%, #fff 100%);
    overflow-x: hidden;
}
.ap-title-band {
    position: relative;
    z-index: 2;
    background: #000;
    padding: 0.9rem 0 1rem;
    margin: 0;
}
.ap-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%),
        linear-gradient(225deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    pointer-events: none;
}
.ap-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
.ap-title-fill { color: #fbbf24; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); }
.ap-title-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #fbbf24;
    text-stroke: 1.5px #fbbf24;
    text-shadow: none;
}
.airport-special-section .container.position-relative { position: relative; z-index: 1; }
.ap-lead { font-size: 0.9rem; color: #64748b; margin: 0 auto; max-width: 32rem; padding: 0.9rem 0.5rem 1.35rem; line-height: 1.5; }
.ap-cards-row { position: relative; z-index: 1; }

/* Deals — tighter layout & typography */
.airport-special-section.ap-section--deals-compact {
    padding-bottom: 36px;
}
.ap-section--deals-compact .ap-title-band {
    padding: 0.65rem 0 0.75rem;
}
.ap-lead--compact {
    font-size: 0.82rem;
    padding: 0.65rem 0.5rem 1rem;
}
.ap-cards-row--compact {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}
.ap-cards-row--compact .ap-tile--popular {
    padding-top: 8px;
}
.ap-cards-row--compact .ap-tile__inner {
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}
.ap-cards-row--compact .ap-tile__head {
    padding: 0.5rem 0.7rem 0.38rem;
}
.ap-cards-row--compact .ap-tile__headline {
    font-size: 0.92rem;
}
.ap-cards-row--compact .ap-tile__headline--serif {
    font-size: 1.02rem;
}
.ap-cards-row--compact .ap-tile__sub {
    font-size: 0.72rem;
    margin-top: 0.12rem;
}
.ap-cards-row--compact .ap-tile__body {
    padding: 0.55rem 0.75rem 0.7rem;
}
.ap-cards-row--compact .ap-vehicle {
    gap: 0.5rem;
}
.ap-cards-row--compact .ap-vehicle__img {
    flex: 0 0 42%;
    max-width: 46%;
    border-radius: 8px;
    aspect-ratio: 5 / 4;
}
.ap-cards-row--compact .ap-spec__icon {
    font-size: 0.95rem;
}
.ap-cards-row--compact .ap-spec__label {
    font-size: 0.62rem;
}
.ap-cards-row--compact .ap-spec__value {
    font-size: 0.74rem;
}
.ap-cards-row--compact .ap-spec-divider {
    margin: 0.4rem 0;
}
.ap-cards-row--compact .ap-tile__separator {
    margin: 0.45rem 0 0.35rem;
}
.ap-cards-row--compact .ap-routes {
    font-size: 0.72rem;
    line-height: 1.38;
}
.ap-cards-row--compact .ap-routes li {
    padding: 0.32rem 0;
}
.ap-cards-row--compact .ap-price-wrap {
    padding: 0.45rem 0.2rem 0.12rem;
}
.ap-cards-row--compact .ap-price__dollar {
    font-size: 1rem;
}
.ap-cards-row--compact .ap-price__num {
    font-size: 1.75rem;
}
.ap-cards-row--compact .ap-btn-cta {
    margin-top: 0.45rem;
    font-size: 0.8rem;
    padding: 0.52rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.28);
}
.ap-cards-row--compact .ap-ribbon {
    top: 56px;
    left: -14px;
    padding: 0.3rem 1.85rem 0.34rem 1.65rem;
    font-size: 0.42rem;
}

.ap-tile {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    padding-top: 0;
    overflow: visible;
}
.ap-tile--popular { padding-top: 10px; }
.ap-tile--popular .ap-tile__inner {
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(234, 88, 12, 0.16);
    border-color: rgba(251, 191, 36, 0.5);
}
.ap-ribbon {
  position: absolute;
  top: 71px;
  left: -17px;
  z-index: 4;
  display: block;
  padding: 0.4rem 2.4rem 0.45rem 2.1rem;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(120deg, #22c55e 0%, #ca8a04 48%, #fbbf24 100%);
  transform: rotate(-38deg) translate(4px, 8px);
  transform-origin: left top;
  box-shadow: 0 2px 10px rgba(202, 138, 4, 0.45);
  border-radius: 2px;
  pointer-events: none;
}
.ap-tile__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.98);
    overflow: hidden;
}
.ap-tile__head {
    flex: 0 0 auto;
    padding: 0.9rem 1.1rem 0.55rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
}
.ap-tile__headline {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}
.ap-tile__headline--serif {
    font-family: Georgia, 'Times New Roman', 'Times', serif;
    font-size: 1.25rem;
    color: #0c1929;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.ap-tile__head--alt .ap-tile__sub { margin-top: 0.25rem; }
.ap-tile__sub {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 0.2rem;
}
.ap-tile__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 0.85rem 1.1rem 1rem;
    background: #fff;
    min-height: 0;
}
.ap-vehicle {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    margin-bottom: 0;
    flex: 0 0 auto;
}
.ap-vehicle__img {
    flex: 0 0 44%;
    max-width: 48%;
    border-radius: 10px;
    overflow: hidden;
    background: #e2e8f0;
    display: block;
    aspect-ratio: 4 / 3;
    min-height: 0;
    align-self: center;
}
.ap-vehicle__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.ap-vehicle__specs { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.ap-spec { display: flex; gap: 0.7rem; align-items: flex-start; }
.ap-spec__icon-wrap {
    flex: 0 0 1.5rem;
    width: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.2rem;
}
.ap-spec__icon { font-size: 1.05rem; color: #64748b; line-height: 1; }
.ap-spec__text { display: flex; flex-direction: column; gap: 0.12rem; min-width: 0; flex: 1; }
.ap-spec__label { font-size: 0.7rem; color: #94a3b8; line-height: 1.2; text-transform: none; font-weight: 500; }
.ap-spec__value { font-size: 0.83rem; font-weight: 700; color: #0f172a; line-height: 1.25; }
.ap-spec-divider { height: 1px; background: #e2e8f0; margin: 0.55rem 0; width: 100%; }
.ap-tile__separator {
    height: 1px;
    background: #f1f5f9;
    margin: 0.65rem 0 0.5rem;
    border: 0;
    flex: 0 0 auto;
}
.ap-routes { list-style: none; margin: 0; padding: 0; font-size: 0.8rem; color: #475569; line-height: 1.45; }
.ap-routes--grow { flex: 1 1 auto; }
.ap-routes li { display: flex; gap: 0.5rem; align-items: flex-start; padding: 0.45rem 0; border-top: 1px solid #f1f5f9; }
.ap-routes li:first-child { border-top: 0; padding-top: 0; }
.ap-routes i { color: #ea580c; font-size: 0.95rem; flex-shrink: 0; margin-top: 0.12rem; }
.ap-price-wrap {
    flex: 0 0 auto;
    text-align: center;
    padding: 0.65rem 0.25rem 0.2rem;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
}
.ap-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.06em;
    margin: 0;
    line-height: 1;
    color: #0d7d71;
    font-weight: 800;
    font-size: 0; /* children set size */
}
.ap-price__dollar { font-size: 1.2rem; font-weight: 700; position: relative; top: -0.35em; margin-right: 0.04em; opacity: 0.92; }
.ap-price__num { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.ap-btn-cta {
    display: block;
    width: 100%;
    margin-top: 0.65rem;
    flex: 0 0 auto;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff !important;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(95deg, #fbbf24 0%, #f97316 50%, #ea580c 100%);
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
    font-family: 'Poppins', sans-serif;
}
.ap-btn-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(234, 88, 12, 0.45); }
.ap-btn-cta:focus-visible { outline: 2px solid #0ea5e9; outline-offset: 2px; }

@media (max-width: 992px) {
    .ap-vehicle { flex-direction: row; }
}
@media (max-width: 480px) {
    .ap-vehicle { flex-direction: column; align-items: stretch; }
    .ap-vehicle__img { max-width: 100%; width: 100%; flex: 0 0 auto; aspect-ratio: 16 / 10; }
    .ap-ribbon { font-size: 0.45rem; padding: 0.3rem 1.9rem; top: 8px; left: 0; }
    .ap-cards-row--compact .ap-ribbon {
        top: 6px;
        left: 0;
        font-size: 0.4rem;
        padding: 0.28rem 1.65rem;
    }
}
[data-theme="dark"] .airport-special-section { background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%); }
[data-theme="dark"] .ap-title-band { background: #020617; border-bottom: 1px solid #1e293b; }
[data-theme="dark"] .ap-title-outline { -webkit-text-stroke-color: #fbbf24; }
[data-theme="dark"] .ap-lead { color: #94a3b8; }
[data-theme="dark"] .ap-tile__inner { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .ap-tile__head { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .ap-tile__headline, [data-theme="dark"] .ap-tile__headline--serif { color: #f1f5f9; }
[data-theme="dark"] .ap-tile__sub { color: #94a3b8; }
[data-theme="dark"] .ap-tile__body { background: #1e293b; }
[data-theme="dark"] .ap-vehicle__img { background: #334155; }
[data-theme="dark"] .ap-spec__value { color: #e2e8f0; }
[data-theme="dark"] .ap-routes { color: #cbd5e1; }
[data-theme="dark"] .ap-routes li { border-color: #334155; }

/* Available Taxi Listings: black band, white vehicle cards (home) */
.taxi-listings-section {
    background: #0a0a0a;
    color: #fff;
}
.taxi-listings-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 1.75rem;
    font-family: 'Poppins', sans-serif;
}
.taxi-listing-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.1rem 1.35rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.taxi-listing-card__img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 0.9rem;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 400 / 220;
}
.taxi-listing-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    vertical-align: middle;
    padding: 0.5rem 0.35rem 0.25rem;
}
.taxi-listing-card__name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.85rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}
.taxi-listing-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}
.taxi-listing-card__meta li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    line-height: 1.4;
    width: 100%;
    text-align: center;
}
.taxi-listing-card__label::after { content: ':'; }
.taxi-listing-card__val {
    color: #334155;
    font-weight: 600;
}
@media (max-width: 575.98px) {
    .taxi-listings-title { font-size: 1.4rem; margin-bottom: 1.35rem; }
    .taxi-listing-card { padding: 1rem 0.9rem 1.15rem; }
    .taxi-listing-card__name { font-size: 1.2rem; }
}

/* Google Places dropdown above sticky nav / modals */
.pac-container {
    z-index: 10050 !important;
}
[data-theme="dark"] .taxi-listing-card {
    background: #f8fafc;
    border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .taxi-listing-card__name { color: #0f172a; }
[data-theme="dark"] .taxi-listing-card__meta { color: #64748b; }
[data-theme="dark"] .taxi-listing-card__val { color: #334155; }

/* Become a Driver + Calculate Your Fare — dark mode (labels inherit body color on white cards without these rules) */
[data-theme="dark"] .become-driver-wrap {
    background-color: #0f172a;
    background-image:
        linear-gradient(45deg, #1e293b 25%, transparent 25%),
        linear-gradient(-45deg, #1e293b 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #1e293b 75%),
        linear-gradient(-45deg, transparent 75%, #1e293b 75%);
}
[data-theme="dark"] .become-driver-card {
    background: #111827;
    border-color: #334155;
    color: #e2e8f0;
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.55);
}
[data-theme="dark"] .become-driver-card h1,
[data-theme="dark"] .become-driver-card label.form-label,
[data-theme="dark"] .become-driver-card label {
    color: #f1f5f9;
}
[data-theme="dark"] .become-driver-card .section-title {
    color: #e2e8f0;
    border-top-color: #334155;
}
[data-theme="dark"] .become-driver-card .form-control,
[data-theme="dark"] .become-driver-card .form-select {
    background: #0f172a;
    color: #f8fafc;
    border-color: #475569;
}
[data-theme="dark"] .become-driver-card .form-control:focus,
[data-theme="dark"] .become-driver-card .form-select:focus {
    background: #020617;
    border-color: #3b82f6;
    color: #f8fafc;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}
[data-theme="dark"] .become-driver-card .form-control::placeholder {
    color: #64748b;
}
[data-theme="dark"] .become-driver-card input[type="file"].form-control {
    color: #cbd5e1;
}
[data-theme="dark"] .become-driver-card .alert-success {
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
    border-color: rgba(34, 197, 94, 0.35);
}
[data-theme="dark"] .become-driver-card .alert-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
    border-color: rgba(239, 68, 68, 0.35);
}
[data-theme="dark"] .become-driver-card .alert-danger ul,
[data-theme="dark"] .become-driver-card .alert-danger li {
    color: inherit;
}

[data-theme="dark"] .fare-calc-wrap {
    background-color: #0f172a;
    background-image:
        linear-gradient(45deg, #1e293b 25%, transparent 25%),
        linear-gradient(-45deg, #1e293b 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #1e293b 75%),
        linear-gradient(-45deg, transparent 75%, #1e293b 75%);
}
[data-theme="dark"] .fare-calc-card {
    background: #111827;
    border-color: #334155;
    color: #e2e8f0;
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.55);
}
[data-theme="dark"] .fare-calc-card h1,
[data-theme="dark"] .fare-calc-card .h5 {
    color: #f8fafc;
}
[data-theme="dark"] .fare-calc-card label.form-label,
[data-theme="dark"] .fare-calc-card label {
    color: #f1f5f9;
}
[data-theme="dark"] .fare-calc-card .form-control,
[data-theme="dark"] .fare-calc-card .form-select {
    background: #0f172a;
    color: #f8fafc;
    border-color: #475569;
}
[data-theme="dark"] .fare-calc-card .form-control:focus,
[data-theme="dark"] .fare-calc-card .form-select:focus {
    background: #020617;
    border-color: #3b82f6;
    color: #f8fafc;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}
[data-theme="dark"] .fare-calc-card .form-control::placeholder {
    color: #64748b;
}
[data-theme="dark"] .fare-calc-result {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .fare-calc-result .fare-amt {
    color: #f8fafc;
}
[data-theme="dark"] .fare-calc-result .text-muted {
    color: #94a3b8 !important;
}
[data-theme="dark"] .fare-calc-result a {
    color: #93c5fd;
}
[data-theme="dark"] .fare-calc-result a:hover {
    color: #bfdbfe;
}
[data-theme="dark"] .fare-calc-meta .fare-meta-cell {
    background: #0f172a;
    border-color: #334155;
}
[data-theme="dark"] .fare-calc-meta .fare-meta-cell .lbl {
    color: #94a3b8;
}
[data-theme="dark"] .fare-calc-meta .fare-meta-cell .val {
    color: #f8fafc;
}
[data-theme="dark"] .fare-calc-card .alert-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
    border-color: rgba(239, 68, 68, 0.35);
}
[data-theme="dark"] .become-driver-card label .req,
[data-theme="dark"] .fare-calc-card label .req {
    color: #f87171;
}
[data-theme="dark"] .become-driver-card .invalid-feedback,
[data-theme="dark"] .fare-calc-card .invalid-feedback {
    color: #fca5a5;
}