/**
 * Drop1Taxi &mdash; Complete visual theme override v3.0
 * Design: Dark navbar · Bold dark hero · Shadow-first cards · Alternating dark/light sections
 * Palette: #f5b800 (Yellow) · #111111 (Near-black) · #e53935 (Red) · #ffffff (White)
 */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800;900&display=swap');

:root {
  --accent: #f5b800;
  --accent-dark: #d49e00;
  --accent-red: #e53935;
  --accent-glow: rgba(245, 184, 0, 0.35);
  --accent-gradient: linear-gradient(135deg, #f5b800 0%, #e09900 100%);
  --bg-page: #ffffff;
  --bg-dark: #111111;
  --bg-dark-2: #181818;
  --text-charcoal: #111111;
  --text-body: #333333;
  --text-muted: #666666;
  --border-warm: #e8e8e8;
  --white: #ffffff;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.14);
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL PAGE + BODY
   ═══════════════════════════════════════════════════════════════ */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 0 !important;
}
body {
  background: var(--bg-page);
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes d1t-fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes d1t-fadeLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes d1t-fadeRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes d1t-pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,184,0,0.35); }
  50%     { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(245,184,0,0); }
}
@keyframes d1t-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes d1t-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes d1t-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(1deg); }
  66%      { transform: translateY(-5px) rotate(-1deg); }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-REVEAL SYSTEM
   ═══════════════════════════════════════════════════════════════ */
.d1t-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.d1t-reveal.is-visible { opacity: 1; transform: none; }

.d1t-reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.d1t-reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.d1t-reveal-left.is-visible,
.d1t-reveal-right.is-visible { opacity: 1; transform: none; }

.d1t-reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.d1t-reveal-zoom.is-visible { opacity: 1; transform: scale(1); }

.d1t-delay-1 { transition-delay: 0.08s; }
.d1t-delay-2 { transition-delay: 0.18s; }
.d1t-delay-3 { transition-delay: 0.28s; }
.d1t-delay-4 { transition-delay: 0.38s; }
.d1t-delay-5 { transition-delay: 0.48s; }

/* ═══════════════════════════════════════════════════════════════
   TICKER STRIP
   ═══════════════════════════════════════════════════════════════ */
.d1t-ticker {
  background: var(--accent);
  color: #111111;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.5rem 0;
  border-top: none;
  border-bottom: none;
}
.d1t-ticker__inner {
  display: inline-flex;
  gap: 3rem;
  animation: d1t-ticker 24s linear infinite;
}
.d1t-ticker__inner span { flex-shrink: 0; }
.d1t-ticker__sep { opacity: 0.35; }

/* ═══════════════════════════════════════════════════════════════
   SITE HEADER &mdash; dark
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--bg-dark) !important;
  border-bottom: none !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35) !important;
  top: 0 !important;
  margin-top: 0 !important;
}
.nav > a,
.nav .nav-dropdown__btn {
  color: rgba(255,255,255,0.80) !important;
  font-weight: 600 !important;
}
.nav > a:hover,
.nav .nav-dropdown__btn:hover {
  color: var(--accent) !important;
  text-decoration: none !important;
}
.menu-button {
  border-color: rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
}
.menu-button svg { stroke: #fff !important; }

.logo__mark { background: var(--accent) !important; color: #111 !important; }
.logo__one {
  background: transparent !important;
  color: var(--accent) !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-weight: 900 !important;
  display: inline-block !important;
  line-height: 1 !important;
  -webkit-text-stroke: 1.2px #111111 !important;
  text-shadow:
    -1px -1px 0 #111,
     1px -1px 0 #111,
    -1px  1px 0 #111,
     1px  1px 0 #111 !important;
  margin-left: 2px !important;
  margin-right: 0 !important;
}
.logo__text  { color: var(--accent) !important; }

.nav-dropdown__content {
  background: rgba(20,20,20,0.97) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.nav-dropdown__content a { color: rgba(255,255,255,0.82) !important; }
.nav-dropdown__content a:hover {
  background-color: var(--accent) !important;
  color: #111 !important;
}
.nav-dropdown__content a.active {
  background-color: var(--accent) !important;
  color: #111 !important;
}

/* Header login button */
.header-login-btn {
  background: var(--accent) !important;
  color: #111 !important;
  border-radius: 6px;
  padding: 0.42rem 1rem;
  font-weight: 700;
  font-size: 0.78rem;
  display: flex; align-items: center; gap: 0.35rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(245,184,0,0.3);
}
.header-login-btn:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

/* Mobile menu panel */
.menu-panel {
  background: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}
.menu-panel a { color: rgba(255,255,255,0.82) !important; }
.menu-panel a:hover { color: var(--accent) !important; }
.menu-panel__title { color: #fff !important; }
.menu-panel__close {
  background: var(--accent) !important;
  color: #111 !important;
}
.menu-panel__section + .menu-panel__section { border-top-color: rgba(255,255,255,0.08) !important; }

/* Mobile menu dropdown links & accordion overrides */
.menu-panel__dropdown {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: #252525 !important;
}
.menu-panel__dropdown summary {
  color: #ffffff !important;
}
.menu-panel__dropdown summary::after {
  color: var(--accent) !important;
}
.menu-panel__dropdown-links a {
  background: #202020 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.82) !important;
}
.menu-panel__dropdown-links a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--accent) !important;
  border-color: rgba(245, 184, 0, 0.3) !important;
}
.menu-panel__dropdown-links a.active {
  background: var(--accent) !important;
  color: #111111 !important;
  border-color: var(--accent-dark) !important;
}

/* Specificity overrides for mobile CTA buttons */
.menu-panel .menu-panel__cta-btn--primary {
  color: #1a1a1a !important;
}
.menu-panel .menu-panel__cta-btn--primary:hover {
  color: #111111 !important;
}
.menu-panel .menu-panel__cta-btn--secondary {
  color: #181818 !important;
}
.menu-panel .menu-panel__cta-btn--admin {
  color: #475569 !important;
}

/* ═══════════════════════════════════════════════════════════════
   EYEBROW PILL (global)
   ═══════════════════════════════════════════════════════════════ */
.eyebrow {
  color: var(--accent-dark) !important;
  display: inline-block;
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(212,158,0,0.3);
  padding: 0.22rem 0.75rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION &mdash; dark bold
   ═══════════════════════════════════════════════════════════════ */
/* We let the styles from hero.css define the bright yellow brand theme
   and dark text colors for the hero. */

/* Homepage booking card now matches the route/city dark card
   (styled by body.home-page .booking-card--home rules in booking-form.css). */
.booking-card__header {
  background: var(--accent) !important;
  color: #111 !important;
  margin: -1.2rem -1.2rem 1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Trip type selector pills */
.booking-card--home .trip-type-options,
.booking-card--home .oneway-subtypes {
  background: #ffffff !important;
  border: 1.5px solid var(--border-warm) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  padding: 3px !important;
  border-radius: 10px !important;
  gap: 3px !important;
  width: 100% !important;
}
.booking-card--home .oneway-subtypes {
  margin-top: 5px !important;
}
.booking-card--home .trip-type-options .trip-type-option,
.booking-card--home .oneway-subtypes label {
  background: transparent !important;
  color: var(--text-body) !important;
  border: 1.5px solid transparent !important;
  border-radius: 7px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  padding: 0.35rem 0.5rem !important;
  transition: all 0.18s ease !important;
  box-shadow: none !important;
  text-align: center;
}
.booking-card--home .oneway-subtypes label {
  font-size: 0.72rem !important;
  padding: 0.28rem 0.4rem !important;
}
.booking-card--home .trip-type-options .trip-type-option:hover,
.booking-card--home .oneway-subtypes label:hover {
  background: rgba(245, 184, 0, 0.08) !important;
  color: var(--text-charcoal) !important;
}
.booking-card--home .trip-type-options .trip-type-option.trip-type-option--active,
.booking-card--home .trip-type-options .trip-type-option.active {
  background: var(--accent) !important;
  color: var(--text-charcoal) !important;
  border-color: var(--accent-dark) !important;
  box-shadow: 0 2px 8px rgba(245, 184, 0, 0.2) !important;
  font-weight: 800 !important;
}
.booking-card--home .oneway-subtypes input:checked + label,
.booking-card--home .oneway-subtypes label.active {
  background: var(--text-charcoal) !important;
  color: var(--accent) !important;
  border-color: var(--text-charcoal) !important;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.15) !important;
  font-weight: 800 !important;
}

/* Primary buttons */
.booking-card--home .btn-primary,
.booking-card--home .btn-primary:focus {
  background: var(--accent-gradient) !important;
  color: var(--text-charcoal) !important;
  box-shadow: 0 8px 22px rgba(245,184,0,0.24) !important;
  font-weight: 800;
}
.booking-card--home .btn-primary:hover {
  background: linear-gradient(135deg, #ffc91a 0%, #e0a800 100%) !important;
  color: var(--text-charcoal) !important;
  transform: translateY(-2px);
}
.drawer-footer .btn-primary,
.drawer-footer .btn-primary:focus {
  background: var(--accent-gradient) !important;
  color: var(--text-charcoal) !important;
}
.drawer-footer .btn-primary:hover {
  background: linear-gradient(135deg, #ffc91a 0%, #e0a800 100%) !important;
}

/* Global button override */
.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-charcoal) !important;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(245,184,0,0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffc91a 0%, #e0a800 100%);
  color: var(--text-charcoal) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,184,0,0.3);
}

/* Outline buttons */
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text-charcoal);
  border-radius: 99px;
  padding: 0.6rem 1.6rem;
  font-weight: 750;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.22s ease-in-out;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--text-charcoal);
  transform: translateY(-1px);
}

/* Sticky submit button */
.sticky-submit-wrapper .btn-primary {
  background: var(--text-charcoal) !important;
  color: var(--accent) !important;
  border: 2px solid var(--accent) !important;
}
.sticky-submit-wrapper .btn-primary:hover {
  background: var(--accent) !important;
  color: var(--text-charcoal) !important;
}

/* Fare pricing selector card */
.vehicle-selector-card.is-active,
.vehicle-selector-card--active {
  border-color: var(--accent) !important;
  background: rgba(245,184,0,0.05) !important;
  box-shadow: 0 4px 12px rgba(245,184,0,0.1) !important;
}
.booking-card--home .vehicle-selector-card__price,
.vehicle-selector-card__price { color: var(--text-charcoal) !important; font-weight: 800 !important; }

.drawer-pricing-box {
  background: var(--white) !important;
  border: 1px solid var(--border-warm) !important;
}
.fare-card {
  background: var(--white) !important;
  border: 1.5px solid var(--border-warm) !important;
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-body);
}
.fare-card__label { color: var(--text-muted) !important; font-size: 0.78rem !important; }
.fare-card__amount { color: var(--accent-dark) !important; font-size: 2rem !important; font-weight: 900 !important; }
.fare-card__disclaimer, .fare-card__note { color: var(--text-muted) !important; font-size: 0.72rem !important; }
.fare-toggle-label, .fare-card__label, .promo-toggle-btn { color: var(--text-charcoal) !important; }
.booking-spinner, .fare-spinner {
  border-color: rgba(245,184,0,0.1) !important;
  border-top-color: var(--accent-dark) !important;
}

/* ═══════════════════════════════════════════════════════════════
   ① STATS COUNTER STRIP &mdash; dark
   ═══════════════════════════════════════════════════════════════ */
.d1t-stats-strip {
  background: var(--bg-dark) !important;
  border-top: none;
  border-bottom: none;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
.d1t-stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(245,184,0,0.03) 0px,
    rgba(245,184,0,0.03) 1px,
    transparent 1px,
    transparent 80px
  );
  pointer-events: none;
}
.d1t-stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  position: relative;
}
.d1t-stat-block {
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
}
.d1t-stat-block:last-child { border-right: none !important; }
.d1t-stat-block__num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent) !important;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-family: 'Sora', 'Inter', sans-serif;
  letter-spacing: -0.03em;
}
.d1t-stat-block__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .d1t-stats-strip:not(.d1t-stats-strip--single) .d1t-stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .d1t-stats-strip:not(.d1t-stats-strip--single) .d1t-stat-block:nth-child(2) { border-right: none !important; }
  .d1t-stats-strip:not(.d1t-stats-strip--single) .d1t-stat-block:nth-child(3),
  .d1t-stats-strip:not(.d1t-stats-strip--single) .d1t-stat-block:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
}

/* When placed inside the hero (below the meta description): blend in, no band */
.hero__stats-strip {
  background: transparent !important;
  padding: 0 !important;
  margin: 0.85rem 0 0.2rem !important;
  overflow: visible !important;
  width: 100%;
}
.hero__stats-strip::before { display: none !important; }
.hero__stats-strip .d1t-stat-block { border-color: rgba(0, 0, 0, 0.12) !important; }
.hero__stats-strip .d1t-stat-block__num { color: #111111 !important; }
.hero__stats-strip .d1t-stat-block__label { color: #333333 !important; }

/* Single-line variant &mdash; always 4 across, shrinks to fit on phones */
.d1t-stats-strip--single { padding: 1.25rem 0; }
.d1t-stats-strip--single .d1t-stats-strip__grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0.5rem;
}
.d1t-stats-strip--single .d1t-stat-block { padding: 0.5rem 0.4rem; }
.d1t-stats-strip--single .d1t-stat-block__num {
  font-size: 1.15rem;
  line-height: 1.15;
  min-height: 1.32rem;            /* reserve height so count-up can't shift layout */
  margin-bottom: 0.2rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;   /* fixed-width digits = no horizontal jitter */
  font-feature-settings: "tnum" 1;
}
.d1t-stats-strip--single .d1t-stat-block__label {
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media (min-width: 420px) {
  .d1t-stats-strip--single .d1t-stat-block__num { font-size: 1.4rem; min-height: 1.6rem; }
  .d1t-stats-strip--single .d1t-stat-block__label { font-size: 0.62rem; }
}
@media (min-width: 768px) {
  .d1t-stats-strip--single .d1t-stat-block__num { font-size: 2rem; min-height: 2.2rem; }
  .d1t-stats-strip--single .d1t-stat-block__label { font-size: 0.72rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ② HOW IT WORKS &mdash; clean white, shadow cards
   ═══════════════════════════════════════════════════════════════ */
.d1t-steps {
  background: #f5f5f5 !important;
  padding: calc(var(--section-y-lg) + 1rem) 0;
  position: relative;
  overflow: hidden;
  clip-path: none;
  margin: 0;
  z-index: 2;
  border-top: none;
  border-bottom: none;
}
.d1t-steps::before { display: none; }
.d1t-steps h2 {
  color: var(--text-charcoal) !important;
  margin-bottom: 2rem;
}
/* Yellow underline accent on section titles */
.d1t-steps h2::after,
.features-grid-section h2::after,
.routes-section h2::after,
.about-section h2::after,
.faq h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: var(--accent);
  border-radius: 99px;
  margin: 0.6rem auto 0;
}
/* Horizontal step slider &mdash; arrow-driven (distinct from the fleet dot-carousel) */
.d1t-steps-slider {
  position: relative;
  padding: 0 0.25rem;
}
.d1t-steps-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.d1t-steps-track::-webkit-scrollbar { display: none; }

.d1t-step {
  background: #ffffff !important;
  border: none !important;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card) !important;
  flex: 1 1 0;
  min-width: 240px;
  scroll-snap-align: center;
}
.d1t-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover) !important;
}
.d1t-step__num {
  width: 56px; height: 56px;
  background: transparent;
  color: var(--accent-dark);
  font-weight: 900;
  font-size: 1.35rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: none;
  animation: none;
}
.d1t-step h3 { color: var(--text-charcoal) !important; font-size: 1.05rem; margin: 0 0 0.5rem; }
.d1t-step p  { color: var(--text-muted) !important; font-size: 0.83rem; margin: 0; line-height: 1.6; }

/* Circular arrow controls &mdash; shown by JS only when the track overflows */
.d1t-steps-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-charcoal);
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}
.d1t-steps-arrow svg { width: 20px; height: 20px; }
.d1t-steps-arrow:hover:not(:disabled) {
  background: var(--accent);
  color: #111;
  transform: translateY(-50%) scale(1.08);
}
.d1t-steps-arrow:disabled { opacity: 0.35; cursor: default; }
.d1t-steps-arrow--prev { left: -10px; }
.d1t-steps-arrow--next { right: -10px; }

@media (max-width: 720px) {
  .d1t-step { flex: 0 0 80%; min-width: 0; }
  .d1t-steps-arrow--prev { left: 2px; }
  .d1t-steps-arrow--next { right: 2px; }
}

/* ═══════════════════════════════════════════════════════════════
   ③ FEATURED CITIES &mdash; dark section
   ═══════════════════════════════════════════════════════════════ */
.city-section {
  background: var(--bg-dark) !important;
  padding: var(--section-y-lg) 0;
  position: relative;
  border-bottom: none;
}
.city-section::after { display: none; }
.city-section h2 { color: #ffffff !important; }
.city-section .section-sub { color: rgba(255,255,255,0.5) !important; }
/* !important needed to beat city-routes.css's `.city-card { background:#fff !important }` */
.city-section .city-card {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px;
  padding: 0.65rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82) !important;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
  display: flex; align-items: center; justify-content: center;
}
.city-section .city-card:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #111 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245,184,0,0.2);
}

/* "View all cities" pill (links to the cities page) &mdash; dark-section styling */
.city-section .city-toggle-btn {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
  font-weight: 700;
  text-decoration: none !important;
}
.city-section .city-toggle-btn:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #111 !important;
}
.city-section .city-toggle-btn.active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #111 !important;
}
.city-section .city-toggle-btn svg { color: inherit !important; }

/* ═══════════════════════════════════════════════════════════════
   ④ WHY CHOOSE US &mdash; white, shadow cards
   ═══════════════════════════════════════════════════════════════ */
.features-grid-section {
  background: #ffffff !important;
  padding: var(--section-y-lg) 0;
  position: relative;
  border-top: none;
  border-bottom: none;
}
.features-grid-section::before { display: none; }
.features-grid-section h2 { color: var(--text-charcoal) !important; }
.features-grid-section .section-sub { color: var(--text-muted) !important; }

.premium-features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: #ffffff !important;
  border: none !important;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  box-shadow: var(--shadow-card) !important;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover) !important;
}
.feature-card__icon {
  font-size: 1.8rem !important;
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: #111111 !important;
  color: var(--accent) !important;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.feature-card:hover .feature-card__icon {
  background: var(--accent) !important;
  color: #111111 !important;
  transform: scale(1.08) rotate(4deg);
}
.feature-card__content h3 { color: var(--text-charcoal) !important; font-size: 0.95rem; font-weight: 700; margin: 0 0 0.3rem; }
.feature-card__content p  { color: var(--text-muted) !important; font-size: 0.8rem; margin: 0; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════════
   ⑤ POPULAR ROUTES
   ═══════════════════════════════════════════════════════════════ */
.routes-section { background: var(--white); padding: var(--section-y-lg) 0; }
.routes-section h2 { color: var(--text-charcoal); }
.city-tab {
  background: #f1ede4 !important;
  color: var(--text-charcoal);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.city-tab.active, .city-tab:hover {
  background: var(--text-charcoal) !important;
  color: var(--accent) !important;
  border-color: var(--text-charcoal) !important;
}
.route-card, .city-route-card { border-color: var(--border-warm); }
.route-card:hover, .city-route-card:hover { border-color: var(--accent-dark); }
.route-card__icon, .city-route-card__icon { color: var(--accent-dark) !important; }
.route-item a, .route-card a { color: var(--text-charcoal) !important; font-weight: 600; }
.route-item a:hover, .route-card a:hover { color: var(--accent-dark) !important; }

/* ═══════════════════════════════════════════════════════════════
   ⑥ TRUST & SAFETY STRIP
   ═══════════════════════════════════════════════════════════════ */
.d1t-trust-strip {
  background: var(--white);
  padding: 2.25rem 0;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}
.d1t-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.d1t-trust-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.5rem 0.8rem;
}
.d1t-trust-card__icon {
  font-size: 2rem;
  line-height: 1;
}
.d1t-trust-card__info h4 {
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--text-charcoal);
  margin: 0 0 0.2rem 0;
}
.d1t-trust-card__info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════════
   ⑦ TESTIMONIALS &mdash; dark
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bg-dark) !important;
  padding: var(--section-y-lg) 0;
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}
.testimonials-section::before { display: none; }
.testimonials-section h2        { color: #ffffff !important; }
.testimonials-section .section-sub { color: rgba(255,255,255,0.5) !important; }

.d1t-slider-wrap { position: relative; overflow: hidden; }
.d1t-slider {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px;
  padding: 1.5rem 1.3rem;
  min-width: 280px;
  flex: 0 0 280px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
@media (min-width: 640px) {
  .testimonial-card { min-width: 320px; flex: 0 0 320px; }
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: var(--accent) !important;
  transform: translateY(-5px) scale(1.01) !important;
  box-shadow: 0 16px 36px rgba(245, 184, 0, 0.2) !important;
}
.testimonial-rating { color: var(--accent); font-size: 1rem; margin-bottom: 0.6rem; letter-spacing: 1px; }
.testimonial-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  font-style: italic;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial-trip  { font-size: 0.72rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.testimonial-user strong { color: #ffffff; font-size: 0.86rem; display: block; }
.testimonial-user small  { color: rgba(255,255,255,0.45); font-size: 0.72rem; }

.d1t-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.d1t-slider-btn {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(212,158,0,0.35);
  background: rgba(245,184,0,0.05);
  color: var(--accent-dark);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.22s ease-in-out;
}
.d1t-slider-btn:hover {
  background: var(--accent);
  color: var(--text-charcoal);
  border-color: var(--accent);
  transform: scale(1.08);
}
.d1t-slider-dots { display: flex; gap: 0.45rem; }
.d1t-slider-dot {
  width: 7px; height: 7px;
  background: var(--border-warm);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.d1t-slider-dot.is-active {
  background: var(--accent-dark);
  transform: scale(1.45);
}

/* Stats bar inside reviews */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px;
}
.stat-item { text-align: center; }
.stat-item h3 { color: var(--accent); font-size: 1.35rem; font-weight: 800; margin: 0 0 0.1rem; }
.stat-item p  { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin: 0; }

/* Rate us panel */
.rate-us-box {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}
.rate-us-box h3 { color: #ffffff !important; margin: 0 0 0.15rem; font-size: 1rem; }
.rate-us-sub    { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin: 0 0 0.65rem; }
.rate-us-form .field label { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.rate-us-form .field input,
.rate-us-form .field textarea {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff;
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  width: 100%;
  font-size: 0.85rem;
}
.rate-us-form .field input::placeholder,
.rate-us-form .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.star-btn { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--accent); padding: 0 0.15rem; transition: transform 0.15s; }
.star-btn:hover { transform: scale(1.2); }

/* ═══════════════════════════════════════════════════════════════
   ⑧ ABOUT SECTION &mdash; clean light bg
   ═══════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--white) !important;
  padding: var(--section-y-lg) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}
.about-section::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(245,184,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.about-section h2 { color: var(--text-charcoal) !important; }
.about-section__content p { color: var(--text-body) !important; font-size: 0.92rem; line-height: 1.75; max-width: 680px; margin: 0 auto 0.9rem; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   ⑨ FAQ &mdash; white, shadow cards
   ═══════════════════════════════════════════════════════════════ */
.faq {
  background: #f5f5f5 !important;
  padding: var(--section-y-lg) 0;
  border-bottom: none;
}
.faq h2 { color: var(--text-charcoal) !important; }
.faq__item h4 { color: var(--text-charcoal) !important; }
.faq__item {
  border: none;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
  background: #ffffff;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.faq__answer, .faq__item p { color: var(--text-muted) !important; font-size: 0.84rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   ⑩ FLEET / VEHICLE SECTION
   ═══════════════════════════════════════════════════════════════ */
.vehicle-section,
.fleet-showcase,
.fleet-showcase-section { background: var(--bg-page) !important; }
.vehicle-section h2,
.fleet-showcase h2 { color: var(--text-charcoal); }
.vehicle-price,
.vehicle-card__price { color: var(--text-charcoal) !important; font-weight: 800; }
.vehicle-card__badge { background: var(--accent) !important; color: var(--text-charcoal) !important; }
.fleet-filter__btn {
  border-color: var(--border-warm);
  color: var(--text-muted);
  background: var(--white);
}
.fleet-filter__btn:hover {
  border-color: var(--accent);
  color: var(--text-charcoal);
}
.fleet-filter__btn--active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--text-charcoal);
  box-shadow: 0 4px 14px rgba(245,184,0,0.22);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION TITLE GLOBAL
   ═══════════════════════════════════════════════════════════════ */
.section-title-center { text-align: center; margin-bottom: 1.75rem; }
.section-sub { color: var(--text-muted); font-size: 0.88rem; max-width: 520px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER &mdash; dark
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0d0d0d !important;
  color: rgba(255,255,255,0.75) !important;
  border-top: 4px solid var(--accent) !important;
  padding: 3rem 0 1.5rem !important;
  box-shadow: none !important;
}

.site-footer .footer__description   { color: rgba(255,255,255,0.5) !important; }
.site-footer .footer__engage-title  { color: #ffffff !important; }
.site-footer .footer__col-title     { color: var(--accent) !important; }
.site-footer .footer__nav-links a,
.site-footer .footer__contact-details a,
.site-footer .footer__dest-link     { color: rgba(255,255,255,0.65) !important; }
.site-footer .footer__nav-links a:hover,
.site-footer .footer__contact-details a:hover,
.site-footer .footer__dest-link:hover { color: var(--accent) !important; }
.site-footer .footer__contact-details li { color: rgba(255,255,255,0.65) !important; }
.site-footer .footer__coverage      { color: rgba(255,255,255,0.4) !important; }
.site-footer .footer__divider       { border-color: rgba(255,255,255,0.08) !important; }
.site-footer .newsletter-form       { background: rgba(255,255,255,0.07) !important; border: 1px solid rgba(255,255,255,0.12) !important; }
.site-footer .newsletter-form input { color: #ffffff !important; background: transparent !important; }
.site-footer .newsletter-form input::placeholder { color: rgba(255,255,255,0.35) !important; }
.site-footer .social-link           { background: rgba(255,255,255,0.07) !important; color: rgba(255,255,255,0.8) !important; border: 1px solid rgba(255,255,255,0.12) !important; }
.site-footer .social-link:hover     { background: var(--accent) !important; color: #111 !important; border-color: var(--accent) !important; }
.site-footer .footer__bottom-bar    { color: rgba(255,255,255,0.35) !important; border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer .footer__bottom-bar a  { color: rgba(255,255,255,0.55) !important; }
.site-footer .footer__bottom-bar a:hover { color: var(--accent) !important; }
.site-footer .footer__attribution   { color: rgba(255,255,255,0.3) !important; }
.site-footer .footer__copyright     { color: rgba(255,255,255,0.35) !important; }

.footer__logo .logo__mark { background: var(--accent) !important; color: #111 !important; }
.footer__logo .logo__one {
  background: transparent !important;
  color: var(--accent) !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-weight: 900 !important;
  display: inline-block !important;
  line-height: 1 !important;
  -webkit-text-stroke: 1.2px #111111 !important;
  text-shadow:
    -1px -1px 0 #111,
     1px -1px 0 #111,
    -1px  1px 0 #111,
     1px  1px 0 #111 !important;
  margin-left: 2px !important;
  margin-right: 0 !important;
}
.footer__logo .logo__text { color: var(--accent) !important; }
.footer__brand-text { color: var(--accent) !important; }
.footer__link:hover,
.footer__nav-link:hover { color: var(--accent) !important; }
.footer__social-link {
  background: rgba(255,255,255,0.07) !important;
  color: rgba(255,255,255,0.75) !important;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer__social-link:hover {
  background: var(--accent) !important;
  color: #111 !important;
  border-color: var(--accent) !important;
}
.footer__brand-hit {
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.footer__brand-hit:hover {
  background: rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════════
   MISC OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
a:hover { color: var(--accent-dark); }

.trust-item__title, .trust-feature__title { color: var(--text-charcoal) !important; }
.trust-item__icon, .trust-feature__icon { color: var(--accent-dark) !important; }

.theme-switcher__item.active, .menu-panel__themes a.active {
  background: var(--accent) !important;
  color: var(--text-charcoal) !important;
}
.seo-content a, .seo-blog a { color: var(--text-charcoal); }
.seo-content a:hover, .seo-blog a:hover { color: var(--accent-dark); }

::-webkit-scrollbar-thumb { background: #c9bfaf; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .d1t-steps {
    clip-path: none;
    margin: 0;
    padding-top: var(--section-y-lg) !important;
    padding-bottom: var(--section-y-lg) !important;
  }
  .d1t-step { padding: 1.5rem 1.1rem; }
  .premium-features-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 88vw; flex: 0 0 88vw; }
  .hero__stats-inline { font-size: 0.72rem; }
  .feature-card { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING BUTTONS (CALL & WHATSAPP) SIZE & COLOR TUNING
   ═══════════════════════════════════════════════════════════════ */
.wa-floating-btn,
.wa-call-btn,
.floating-contact a {
  width: 52px !important;
  height: 52px !important;
}
.wa-floating-btn svg,
.wa-call-btn svg,
.floating-contact a svg {
  width: 24px !important;
  height: 24px !important;
}
.wa-btn-row {
  flex-direction: column !important;
  gap: 12px !important;
  align-items: flex-end !important;
}
.wa-widget-container {
  bottom: 5.5rem !important;
}
@media (max-width: 768px) {
  .wa-widget-container {
    bottom: 4.5rem !important;
  }
}
.wa-call-btn,
.floating-contact a[aria-label="Call"],
.floating-contact a.floating-call {
  background: #2563eb !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}
.wa-call-btn:hover,
.floating-contact a[aria-label="Call"]:hover,
.floating-contact a.floating-call:hover {
  background: #1d4ed8 !important;
  color: var(--white) !important;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4) !important;
}
.wa-floating-btn {
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
}
.wa-floating-btn:hover {
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35) !important;
}

/* Adjust floating contact panel positioning for smaller button layout */
.floating-contact {
  right: calc(1.875rem + 36px + 0.6rem) !important;
  bottom: 2rem !important;
  gap: 0.6rem !important;
}
@media (max-width: 480px) {
  .floating-contact {
    right: 4.25rem !important;
    bottom: 20px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   INNER-PAGE HEROES &mdash; unify city / route / cities-hub with the
   dark homepage hero (replaces the old navy image overlay).
   ═══════════════════════════════════════════════════════════════ */
.city-hero,
.cities-hero,
.route-hero {
  background: linear-gradient(135deg, #fbbf24 0%, #f5b800 100%) !important;
  position: relative;
}
.city-hero::before,
.cities-hero::before,
.route-hero::before {
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 75%), linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* Yellow accent line at the base, matching the homepage hero */
.city-hero::after,
.cities-hero::after,
.route-hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0; right: 0; bottom: 0;
  top: auto !important;
  width: auto !important;
  height: 4px !important;
  background: linear-gradient(90deg, #000000 0%, transparent 100%) !important;
  z-index: 4 !important;
}
/* Keep hero text crisp on the dark gradient */
.city-hero h1, .cities-hero h1, .route-hero h1,
.city-hero p, .route-hero p,
.city-hero .hero__sub, .cities-hero .hero__sub, .route-hero .hero__sub { color: #111111 !important; text-shadow: none !important; }
.city-hero .breadcrumbs a, .cities-hero .breadcrumbs a, .route-hero .breadcrumbs a { color: #222222 !important; }
.city-hero .breadcrumbs a:hover, .cities-hero .breadcrumbs a:hover, .route-hero .breadcrumbs a:hover { color: #000000 !important; }
.city-hero .breadcrumbs span, .cities-hero .breadcrumbs span, .route-hero .breadcrumbs span { color: #333333 !important; }

/* ═══════════════════════════════════════════════════════════════
   HEADER THEME DROPDOWN &mdash; centered between logo and menu
   ═══════════════════════════════════════════════════════════════ */
.header__theme-dd {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.header__theme-dd-wrap {
  position: relative;
}
.header__theme-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: #111111;
  background: var(--accent);
  border: 1px solid var(--accent);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, box-shadow .2s ease;
}
.header__theme-dd-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 2px 12px var(--accent-glow);
}
.header__theme-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 180px;
  background: rgba(20,20,20,0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 300;
}
.header__theme-dd-wrap.is-open .header__theme-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header__theme-dd-link {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: background .15s ease, color .15s ease;
}
.header__theme-dd-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  text-decoration: none;
}
.header__theme-dd-link.active {
  background: var(--accent);
  color: #111111;
}
@media (max-width: 768px) {
  .header__theme-dd-btn { padding: 5px 12px; font-size: 0.72rem; }
  .header__theme-dd-menu { min-width: 160px; }
}
/* ═══════════════════════════════════════════════════════════════
   FARE DRAWER on dark booking card — readable text overrides
   ═══════════════════════════════════════════════════════════════ */
.booking-card__fare-panel .drawer-header__title {
  color: #ffffff !important;
}
.booking-card__fare-panel .drawer-header {
  color: rgba(255,255,255,0.85) !important;
}
.booking-card__fare-panel .drawer-terms-agreement,
.booking-card__fare-panel .drawer-terms-agreement span {
  color: rgba(255,255,255,0.78) !important;
}
.booking-card__fare-panel .drawer-terms-agreement a {
  color: var(--accent) !important;
}
.booking-card__fare-panel .drawer-login-offers,
.booking-card__fare-panel .drawer-login-offers a {
  color: var(--accent) !important;
}
.booking-card__fare-panel .drawer-footer-price {
  color: rgba(255,255,255,0.85) !important;
}
.booking-card__fare-panel .drawer-footer-price .price-label {
  color: rgba(255,255,255,0.65) !important;
}
.booking-card__fare-panel .drawer-footer-price .price-value {
  color: var(--accent) !important;
}

/* ═══════════════════════════════════════════════════════════════
   FARE DRAWER — full dark theme (match site look)
   ═══════════════════════════════════════════════════════════════ */
/* Vehicle option cards */
.booking-card__fare-panel .drawer-vehicle-tab {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.14) !important;
}
.booking-card__fare-panel .drawer-vehicle-tab.active {
  background: rgba(245,184,0,0.10) !important;
  border-color: var(--accent) !important;
}
.booking-card__fare-panel .drawer-vehicle-tab__name {
  color: #ffffff !important;
}
.booking-card__fare-panel .drawer-vehicle-tab__price {
  color: var(--accent) !important;
}
/* Toggle row (Toll & Tax / GST) */
.booking-card__fare-panel .drawer-toggles-container {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}
.booking-card__fare-panel .drawer-switch-label {
  color: rgba(255,255,255,0.85) !important;
}
/* Pickup/Drop timeline card */
.booking-card__fare-panel .drawer-timeline {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}
.booking-card__fare-panel .drawer-timeline-label {
  color: rgba(255,255,255,0.55) !important;
}
.booking-card__fare-panel .drawer-timeline-value {
  color: #ffffff !important;
}
/* Inclusions / Exclusions accordions */
.booking-card__fare-panel .drawer-acc {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}
.booking-card__fare-panel .drawer-acc__chev {
  color: rgba(255,255,255,0.6) !important;
}
.booking-card__fare-panel .drawer-list-item {
  color: rgba(255,255,255,0.82) !important;
}
/* Back button */
.booking-card__fare-panel .btn-outline {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO PHONE CTA (above booking card)
   ═══════════════════════════════════════════════════════════════ */
.hero-call-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 auto 0.9rem;
  padding: 0.45rem 1.1rem;
  background: var(--bg-dark) !important;
  color: var(--white) !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hero-call-cta svg {
  color: #f5b800;
  flex-shrink: 0;
}
.hero-call-cta:hover,
.hero-call-cta:focus-visible {
  background: var(--bg-dark-2) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}



