/**
 * Booking form – card, fields, trip type, contact switch, quote modal
 * Drop Cars – Premium intercity taxi
 */

.booking-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-align: left;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.booking-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.booking-card__eyebrow {
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

.booking-card__header {
  text-align: center;
  margin-bottom: 1.35rem;
}

.booking-card__header h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.01em;
}

.booking-form {
  display: grid;
  gap: 1.25rem;
  max-width: 100%;
  min-width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  gap: 0.35rem;
  font-weight: 700;
  color: #334155;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  height: 100%;
  width: 100%;
  min-width: 0;
}

.field>input,
.field>select,
.field>.trip-type-options,
.field>.vehicle-selector-grid,
.field>.contact-switch__inputs {
  width: 100%;
}

.field>input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]),
.field>select,
.field>.contact-switch__inputs,
.field>.trip-type-options {
  margin-top: auto;
}

/* Home page booking card only: country popover matches phone row (same light chrome as .phone-input-wrapper) */
.booking-card--home .phone-input-wrapper--country .country-code-popover {
  background: #ffffff;
  border: 1px solid #cdd8e8;
  box-shadow: 0 8px 24px rgba(15, 28, 46, 0.12);
}

.booking-card--home .phone-input-wrapper--country .country-code-option {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: #0a0a0a;
}

.booking-card--home .phone-input-wrapper--country .country-code-option:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
  color: #0a0a0a;
}

.booking-card--home .phone-input-wrapper--country .country-code-manual-inline {
  background: #ffffff;
  border: 1px dashed var(--gray-400);
  color: #0a0a0a;
}

.booking-card--home .phone-input-wrapper--country .country-code-manual-inline:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.field-pair > * {
  min-width: 0;
  width: 100%;
}

/* WhatsApp icon next to phone/contact checkbox */
.wa-check-label .wa-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-check-label .wa-label-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.contact-switch {
  gap: 0.8rem;
}

.contact-switch__controls {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.contact-switch__inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  min-width: 0;
  width: 100%;
}

.contact-switch__inputs > * {
  min-width: 0;
}

.contact-switch__btn {
  border: none;
  background: transparent;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
}

.contact-switch__btn--active {
  background: var(--blue);
  color: var(--white);
}

.field input[type="number"]::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field input,
.field select {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.55rem 0.8rem;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.8125rem;
  font-family: inherit;
  background: #f8fafc;
  color: #1e293b;
  text-transform: none;
  letter-spacing: normal;
  box-shadow: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.field input::placeholder {
  color: #94a3b8;
}

.field > span:first-child,
.field > div:first-child > span:first-child,
.form-label {
  font-size: 0.8125rem;
}

.field__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}

/* Row 2: Email under Name (col 1) | spacer or WhatsApp under Phone (col 2) */
.field-pair--contact-second {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.field-pair--contact-second > .field:first-child {
  grid-column: 1;
  grid-row: 1;
}

.field-pair--contact-second #phone-spacer {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
}

.field-pair--contact-second #whatsapp-field {
  grid-column: 2;
  grid-row: 1;
}

input[type="date"],
input[type="time"] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .booking-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 12px;
    /* Keep form fields clear of floating buttons */
    padding-bottom: 80px;
  }

  .booking-form {
    gap: 12px;
  }

  .field {
    font-size: 16px; /* match .field input (iOS zoom baseline) */
  }

  .field input,
  .field select {
    height: 38px;
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 0.55rem 0.8rem;
    min-width: 0;
    max-width: 100%;
  }

  /* Keep 2-column layout always, but prevent overflow */
  .field-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  /* Tabs: allow wrapping instead of horizontal scroll */
  .trip-type-options,
  .oneway-subtypes {
    gap: 4px;
    overflow-x: hidden;
  }

  .trip-type-options .trip-type-option,
  .oneway-subtypes label {
    font-size: 0.78rem;
    padding: 0.32rem 0.48rem;
    white-space: nowrap;
  }

  .submit-wrapper .btn-primary {
    max-width: 100%;
    font-size: 14px;
    padding: 10px;
  }

  .hourly-control > span:first-of-type {
    font-size: 16px;
  }
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: #ffffff;
}

.btn-primary {
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.1);
  filter: brightness(1.1);
}

.terms {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

.fare-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.fare-toggle__switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  background: var(--gray-100);
  padding: 0.4rem;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px var(--gray-200);
  max-width: 100%;
  font-size: 12px;
}

.fare-toggle__switch label,
.fare-toggle__switch .trip-type-option {
  min-width: 0;
  padding: 0.4rem 0.5rem;
}

.fare-toggle__switch input {
  display: none;
}

.fare-toggle__switch label,
.fare-toggle__switch .trip-type-option {
  border: none;
  font-family: inherit;
  color: var(--blue-dark);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
}

.fare-toggle__switch label:hover,
.fare-toggle__switch .trip-type-option:hover {
  background: var(--gray-200);
}

.fare-toggle__switch input:checked+label,
.fare-toggle__switch .trip-type-option--active {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

/* Wrapper for trip type + subtypes so both rows align and stay compact */
.trip-type-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
}

.trip-type-block .trip-type-field {
  width: 100%;
  align-items: center;
}

.trip-type-block .trip-type-options,
.trip-type-block .oneway-subtypes {
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .booking-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 1.7rem 1.8rem;
  }

  .booking-form {
    gap: 15px;
  }

  .trip-type-block .trip-type-options,
  .trip-type-block .oneway-subtypes {
    width: 100%;
  }

  .field-pair {
    gap: 10px;
  }
}

/* Primary trip type row (One Way, Round Trip, Hourly) */
.trip-type-options {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.32rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 4px 12px rgba(9, 30, 66, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  justify-items: stretch;
}

.trip-type-options .trip-type-option {
  min-width: 0;
  white-space: nowrap;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.44rem 0.6rem;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: #263445;
  transition: all 0.22s ease;
  text-align: center;
  line-height: 1.15;
}

/* Selected state: strong and unmistakable (only via JS "active") */
.trip-type-options .trip-type-option.trip-type-option--active,
.trip-type-options .trip-type-option.active {
  background: linear-gradient(180deg, #133761 0%, #0d2b4f 100%);
  color: #fff;
  border: 1px solid #0a2748;
  box-shadow: 0 4px 10px rgba(13, 43, 79, 0.18);
  transform: none;
}

.trip-type-options .trip-type-option.trip-type-option--active:hover,
.trip-type-options .trip-type-option.active:hover {
  background: linear-gradient(180deg, #133761 0%, #0d2b4f 100%);
  color: #fff;
}

/* Secondary trip type row (Outstation, Airport, Multi City) */
.oneway-subtypes {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 12px rgba(9, 30, 66, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.24rem 0.28rem;
  border-radius: 8px;
  margin: 0;
  overflow: visible;
  align-items: center;
  justify-items: stretch;
  width: 92%;
}

.oneway-subtypes label {
  min-width: 0;
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.32rem 0.4rem;
  height: auto;
  border-radius: 5px;
  background: transparent;
  color: #263445;
  border: 1px solid transparent;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
}

.oneway-subtypes input:checked+label {
  background: linear-gradient(180deg, #133761 0%, #0d2b4f 100%);
  color: var(--white);
  font-weight: 700;
  border-color: #0a2748;
  box-shadow: 0 3px 8px rgba(13, 43, 79, 0.16);
  transform: none;
}

.oneway-subtypes label.active {
  background: linear-gradient(180deg, #133761 0%, #0d2b4f 100%);
  color: var(--white);
  font-weight: 700;
  border-color: #0a2748;
  box-shadow: 0 3px 8px rgba(13, 43, 79, 0.16);
  transform: none;
}

.oneway-subtypes label.active:hover,
.oneway-subtypes input:checked+label:hover {
  background: linear-gradient(180deg, #133761 0%, #0d2b4f 100%);
  color: var(--white);
}

.form-response {
  font-weight: 600;
  min-height: 1.2em;
}

.form-response--loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-response--success {
  display: block;
  line-height: 1.5;
}

.form-response__spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(30, 75, 127, 0.25);
  border-top-color: #1e4b7f;
  border-radius: 50%;
  animation: bookingSpin 0.8s linear infinite;
  flex: 0 0 14px;
}

@keyframes bookingSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Vehicle type selector – pill buttons (legacy) */
.vehicle-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.vehicle-type-option {
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.6rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.vehicle-type-option--active,
.vehicle-type-option:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Vehicle selector grid – horizontal scroll (Chennai-style cards) */
#vehicle-selector-field {
  align-items: center;
  text-align: center;
}

.vehicle-selector-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  scroll-snap-type: x mandatory;
}

.vehicle-selector-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.sticky-submit-wrapper {
  display: none;
}

@media (max-width: 600px) {
  .sticky-submit-wrapper {
    display: none;
  }
}

@media (max-width: 560px) {
  .vehicle-selector-grid {
    gap: 0.5rem;
    justify-content: flex-start;
    /* Prevent clipping on small screens if they overflow */
  }
}

.vehicle-selector-card {
  flex: 1 1 auto;
  min-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.4rem 0.2rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  scroll-snap-align: start;
}

.vehicle-selector-card:hover {
  border-color: #d7dde5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.vehicle-selector-card--active {
  border-color: var(--blue-dark);
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f9ff 100%);
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.12);
}

/* Vehicle Type cards: hover hint vs active selection */
.vehicle-selector-card {
  border: 1px solid #ddd;
  background: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.vehicle-selector-card:hover {
  transform: translateY(-0.5px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  border-color: #d7dde5;
  background: #fafbfc;
}

.vehicle-selector-card.vehicle-selector-card--active,
.vehicle-selector-card.active {
  border: 2px solid #0d2b4f;
  background: #e6f0ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.vehicle-selector-card.vehicle-selector-card--active:hover,
.vehicle-selector-card.active:hover {
  border: 2px solid #0d2b4f;
  background: #e6f0ff;
}

.vehicle-card.active {
  border: 2px solid #0d2b4f;
  background: #e6f0ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.vehicle-card.active:hover {
  border: 2px solid #0d2b4f;
  background: #e6f0ff;
}

/* Desktop-only hover: subtle and temporary */
@media (hover: hover) and (pointer: fine) {
  .trip-type-options .trip-type-option:hover,
  .oneway-subtypes label:hover,
  .vehicle-card:hover {
    background: #f2f4f7;
    border-color: #ccc;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .trip-type-options .trip-type-option:hover {
    background: inherit;
    color: inherit;
    border: inherit;
    box-shadow: none;
    transform: none;
  }
  .vehicle-selector-card:hover {
    background: inherit;
    color: inherit;
    border: inherit;
    box-shadow: none;
    transform: none;
  }
  .oneway-subtypes label:hover,
  .vehicle-card:hover {
    background: inherit;
    color: inherit;
    border-color: inherit;
    box-shadow: none;
    transform: none;
  }
}

/* Mobile tap feedback */
.trip-type-options .trip-type-option:active,
.oneway-subtypes label:active,
.vehicle-selector-card:active,
.vehicle-card:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Prevent sticky focus outlines after tap/click */
.booking-form button:focus,
.booking-form label:focus {
  outline: none;
}

.vehicle-selector-card img {
  width: 100%;
  max-width: 56px;
  height: 40px;
  object-fit: contain;
}

.vehicle-selector-card__name {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue-dark);
}

.vehicle-selector-card__price {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
}

.vehicle-selector-grid .vehicle-selector-card__price {
  display: none;
}

.vehicle-selector-card--active .vehicle-selector-card__price {
  color: var(--blue);
}

/* Fare card (shown after Get Instant Fare) */
.fare-card {
  margin-top: 1rem;
  padding: 1.35rem 1.15rem 1.05rem;
  background: linear-gradient(160deg, #edf5ff 0%, #e9f2fc 45%, #f4f8ff 100%);
  border: 1px solid #d8e4f3;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(13, 43, 79, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}

.fare-card__label {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #304966;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.submit-wrapper {
  text-align: center;
  margin-top: 0.5rem;
}

.submit-wrapper .btn-primary {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.fare-card__amount {
  margin: 0.1rem 0 0.2rem;
  font-size: 2.15rem;
  font-weight: 800;
  color: #102d52;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.fare-card__meta {
  margin: 0.45rem 0;
  font-size: 1rem;
  color: #5f7290;
  font-weight: 600;
}

.fare-card__disclaimer {
  margin: 0.55rem 0 1rem;
  font-size: 0.88rem;
  color: #6c7f9a;
}

.btn-primary--confirm {
  background: linear-gradient(120deg, #059669, #10b981);
  margin-bottom: 0.5rem;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.3);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.fare-card__note {
  margin: 0;
  font-size: 0.88rem;
  color: #6a7f9b;
  font-weight: 600;
}

/* Phone and Country Select Input */
.phone-input-wrapper {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid #cdd8e8;
  border-radius: 5px;
  overflow: hidden;
  height: 38px;
  width: 100%;
}

.phone-input-wrapper:focus-within {
  border-color: #1e88e5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.16);
}

/* Country row: popover must escape; same chrome as .phone-input-wrapper */
.phone-input-wrapper.phone-input-wrapper--country {
  overflow: visible;
}

/* Country code: button + popover (+91 quick | empty manual) + national number */
.phone-input-wrapper--country .phone-national-input {
  flex: 1;
  min-width: 0;
}

/* Compact country column; wide enough for +91 … +999 without clipping */
.country-code-field {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  min-width: 52px;
  max-width: 52px;
  align-self: stretch;
}

/* Country pill: light bluish-gray bg, black text (normal weight) */
.country-code-trigger {
  box-sizing: border-box;
  width: 100%;
  height: 38px;
  min-height: 38px;
  margin: 0;
  padding: 0 8px;
  border: none;
  border-right: 1px solid var(--gray-200);
  border-radius: 0;
  background: var(--gray-100);
  color: #0a0a0a;
  font-family: inherit;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-code-trigger:hover {
  background: var(--gray-200);
}

.country-code-popover {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 50;
  box-sizing: border-box;
  width: 52px;
  min-width: 52px;
  max-width: 52px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
  padding: 5px;
  background: var(--white);
  border: 1px solid #cdd8e8;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(15, 28, 46, 0.12);
}

.country-code-popover.is-hidden {
  display: none !important;
}

.country-code-option {
  margin: 0;
  padding: 4px 2px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--gray-100);
  color: #0a0a0a;
  font-family: inherit;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-code-option:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
}

.country-code-manual-inline {
  box-sizing: border-box;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 32px;
  padding: 7px 6px;
  border: 1px dashed var(--gray-400);
  border-radius: 6px;
  background: var(--white);
  color: #0a0a0a;
  font-family: inherit;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  flex: none !important;
  height: auto !important;
}

/* Override .field input (padding/height) — was crushing text against the dashed border */
.field .country-code-manual-inline {
  font-size: 11px;
  padding: 7px 6px !important;
  height: auto !important;
  min-height: 32px;
}

.country-code-manual-inline:focus {
  outline: none;
  border-color: #1e88e5;
  box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

.country-code-manual-inline::placeholder {
  color: var(--gray-300);
}

.phone-input-wrapper .phone-national-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  padding-left: 0.6rem !important;
  height: 100% !important;
  color: #0a0a0a !important;
  font-weight: 400;
}

.phone-input-wrapper .phone-national-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
  opacity: 1;
}

.phone-input-wrapper .phone-national-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Stops (multi-city) */
.stops-control {
  border-radius: 8px;
  padding: 10px;
  background: #f5f7fb;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stops-control__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.stops-control__header p {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-chips {
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--blue-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-chips:hover {
  background: var(--gray-50);
}

.stops-list {
  display: grid;
  gap: 0.4rem;
}

.stop-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  cursor: grab;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.stop-item.dragging {
  cursor: grabbing;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.15);
  transform: scale(1.02);
  z-index: 10;
}

.stop-item__drag {
  color: var(--gray-400);
  font-size: 1rem;
  cursor: grab;
  padding-right: 0.2rem;
}

.stop-item input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  font-size: 0.9rem;
  padding: 0.2rem 0 !important;
  height: auto !important;
}

.stop-item input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.stop-item__actions {
  display: flex;
  gap: 0.3rem;
}

.stop-item__actions button {
  border: none;
  background: var(--gray-100);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--blue-dark);
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.stop-item__actions button:hover:not(:disabled) {
  background: var(--blue-light);
  color: var(--white);
}

.stop-item__actions button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.stops-limit {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Hourly rental */
.hourly-control {
  display: grid;
  gap: 0.6rem;
}

.hourly-control > span:first-of-type {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hourly-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hourly-option {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  background: var(--white);
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
}

.hourly-option--active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Quote modal */
.quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 46, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 9999;
}

.quote-modal--open {
  display: flex;
}

.quote-modal__card {
  background: var(--white);
  border-radius: 28px;
  padding: clamp(1.2rem, 4vw, 2rem);
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 60px rgba(11, 31, 58, 0.25);
}

.quote-modal.quote-modal--fare-mode .quote-modal__card {
  max-width: 520px;
  border-radius: 20px;
  padding: 0.75rem 1rem 0.65rem;
}

.quote-modal.quote-modal--estimate-mode .quote-modal__card {
  max-width: 480px;
  border-radius: 20px;
  padding: 0.75rem 1rem 0.65rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  box-shadow: 0 30px 60px rgba(11, 31, 58, 0.25);
}

.quote-modal.quote-modal--estimate-mode #quote-summary {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f2f56;
  text-align: left;
}

.quote-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(15, 28, 46, 0.08);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  color: #334155;
}

.quote-modal.quote-modal--estimate-mode .quote-modal__close {
  color: #334155;
}

.quote-modal.quote-modal--estimate-mode .quote-modal__close:hover {
  background: rgba(15, 28, 46, 0.12);
}

.quote-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 0.3rem;
}

.quote-modal .eyebrow {
  display: none;
}

.vehicle-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.quote-modal--estimate-mode .vehicle-grid {
  display: block;
}

.quote-modal--estimate-mode .quote-modal__meta {
  justify-content: flex-start;
  text-align: left;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  border: 1px solid #d8e5f4;
  background: #f5f9ff;
  border-radius: 12px;
  padding: 0.5rem 0.6rem 0.45rem;
}

.quote-modal--estimate-mode #quote-route {
  width: 100%;
  font-size: 0.9rem;
  color: #1e4b7f;
  font-weight: 700;
}

.quote-modal--estimate-mode #quote-fare {
  width: 100%;
  text-align: left;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #426386;
  font-weight: 600;
}

.quote-modal--fare-mode #quote-summary,
.quote-modal--fare-mode .quote-modal__meta {
  display: none;
}

.vehicle-grid--fare-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.15rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fare-list-header {
  text-align: center;
  border: 1px solid #d8e5f4;
  border-radius: 12px;
  background: #f5f9ff;
  padding: 0.5rem 0.6rem 0.45rem;
}

.fare-list-header__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f2f56;
}

.fare-list-header__route {
  margin: 0.32rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e4b7f;
}

.fare-list-header__time {
  margin: 0.22rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #426386;
}

.quote-fare-type-toggle {
  border: 1px solid #c6dced;
  background: #ffffffd9;
  border-radius: 10px;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2f4d72;
  max-width: 420px;
  margin: 0.05rem auto 0;
}

.quote-fare-type-title {
  margin: 0.1rem 0 0;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: #204265;
}

.quote-fare-type-toggle__option {
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.quote-fare-type-toggle input:not(:checked) ~ .quote-fare-type-toggle__option--base {
  opacity: 1;
}

.quote-fare-type-toggle input:checked ~ .quote-fare-type-toggle__option--inclusive {
  opacity: 1;
}

.quote-fare-type-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.quote-fare-type-toggle__switch {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #9db4c9;
  position: relative;
  flex: 0 0 36px;
  transition: background 0.2s ease;
}

.quote-fare-type-toggle__switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 40, 74, 0.3);
  transition: transform 0.2s ease;
  transform: translateX(0);
}

.quote-fare-type-toggle input:checked ~ .quote-fare-type-toggle__switch {
  background: #1994ef;
}

.quote-fare-type-toggle input:checked ~ .quote-fare-type-toggle__switch::after {
  transform: translateX(16px);
}

.quote-fare-type-line {
  margin: -0.22rem 0 0.02rem;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
}

.quote-fare-type-line.is-exclusive {
  color: #cf2b2b;
}

.quote-fare-type-line.is-inclusive {
  color: #1e88e5;
}

.vehicle-grid--fare-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.vehicle-card {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 0.6rem 0.75rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  background: var(--white);
}

.vehicle-card--fare-option {
  border: 2px solid #d5e5f7;
  border-radius: 12px;
  background: #eef7ff;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.24s ease, border-color 0.2s ease, background 0.24s ease;
}

.vehicle-card--fare-option.active {
  border-color: #0ca6d2;
  background: #dff4fb;
  box-shadow: 0 8px 22px rgba(12, 166, 210, 0.22);
  transform: translateY(-1px);
}

.vehicle-card--fare-option:hover {
  border-color: #6fcbe4;
  box-shadow: 0 6px 18px rgba(16, 61, 96, 0.14);
}

.vehicle-card__radio--left {
  margin-left: 0;
  margin-right: 0.35rem;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #9ab5d1;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  transition: all 0.2s ease;
}

.vehicle-card__radio--left input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.vehicle-card--fare-option.active .vehicle-card__radio--left {
  border-color: #0ca6d2;
  background: linear-gradient(180deg, #12b5de 0%, #0ca6d2 100%);
  box-shadow: 0 0 0 3px rgba(12, 166, 210, 0.2);
}

.vehicle-card--fare-option.active .vehicle-card__radio--left::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
}

.vehicle-card__title-line {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.vehicle-card__title-line small {
  font-size: 0.72rem;
  color: #6e7f97;
  font-weight: 700;
}

.vehicle-card__distance {
  color: #44566f;
  font-size: 0.82rem;
  font-weight: 600;
}

.vehicle-fare-note {
  margin: 0.1rem 0 0;
  text-align: center;
  color: #cf2b2b;
  font-size: 0.86rem;
  font-weight: 600;
}

.quote-modal.quote-modal--fare-mode .quote-modal__actions {
  justify-content: center;
  gap: 0.55rem;
  padding-top: 0.1rem;
}

.quote-modal.quote-modal--estimate-mode .quote-modal__actions {
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0;
  margin-top: 0.45rem;
}

.quote-modal.quote-modal--fare-mode .quote-modal__actions button {
  flex: 0 0 auto;
  min-width: 128px;
  max-width: 152px;
  padding: 0.58rem 0.9rem;
  font-size: 0.84rem;
}

.quote-modal.quote-modal--estimate-mode .quote-modal__actions button {
  flex: 0 0 auto;
  min-width: 108px;
  max-width: 132px;
  padding: 0.54rem 0.78rem;
  font-size: 0.82rem;
}

.quote-modal.quote-modal--fare-mode .quote-modal__actions .btn-outline {
  margin-left: 0;
}

.quote-modal.quote-modal--estimate-mode .quote-modal__actions .btn-outline {
  margin-left: 0;
}

.quote-modal.quote-modal--fare-mode .quote-modal__actions .btn-primary {
  margin-right: 0;
}

.quote-modal.quote-modal--estimate-mode .quote-modal__actions .btn-primary {
  margin-right: 0;
}

.selected-fare-card {
  border: 2px solid #d5e5f7;
  background: #eef7ff;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  box-shadow: 0 6px 18px rgba(16, 61, 96, 0.14);
  position: relative;
}

.selected-fare-card__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.selected-fare-card__media {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
}

.selected-fare-card__media img {
  max-width: 64px;
  max-height: 64px;
}

.selected-fare-card__details h4 {
  margin: 0;
  color: #0f2f56 !important;
  font-size: 0.9rem;
}

.selected-fare-card__details h4 small {
  color: #6e7f97 !important;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

.selected-fare-card__meta {
  margin-top: 0.15rem;
  display: flex;
  gap: 0.42rem;
  color: #44566f !important;
  font-size: 0.82rem;
  font-weight: 600;
}

.selected-fare-card__distance {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #44566f !important;
  font-weight: 600;
}

.selected-fare-card__amount {
  margin: 0.42rem 0 0;
  text-align: center;
  color: #0f2f56 !important;
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.selected-fare-card__toggle {
  margin-top: 0.25rem;
  border: 1px solid #c6dced;
  background: #ffffffd9;
  border-radius: 10px;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2f4d72;
}

.selected-fare-card__fare-title {
  margin: 0.5rem 0 0.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #204265;
}

.selected-fare-card__option {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  color: #2f4d72;
}

.selected-fare-card__toggle input:not(:checked) ~ .selected-fare-card__option--base {
  opacity: 1;
}

.selected-fare-card__toggle input:checked ~ .selected-fare-card__option--inclusive {
  opacity: 1;
}

.selected-fare-card__toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.selected-fare-card__switch {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #9db4c9;
  position: relative;
  flex: 0 0 36px;
  transition: background 0.2s ease;
}

.selected-fare-card__switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 40, 74, 0.3);
  transition: transform 0.2s ease;
  transform: translateX(0);
}

.selected-fare-card__toggle input:checked ~ .selected-fare-card__switch {
  background: #1994ef;
}

.selected-fare-card__toggle input:checked ~ .selected-fare-card__switch::after {
  transform: translateX(16px);
}

.selected-fare-card__extras {
  margin: 0.3rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.selected-fare-card__extras.is-exclusive {
  color: #cf2b2b;
}

.selected-fare-card__extras.is-inclusive {
  color: #1e88e5;
}


.vehicle-card__media {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-card__media img {
  max-width: 64px;
  max-height: 64px;
}

.vehicle-card__info {
  flex: 1;
  display: grid;
  gap: 0.15rem;
}

.vehicle-card__info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--blue-dark);
}

.vehicle-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.vehicle-card__price {
  font-weight: 700;
  color: var(--blue);
}

.vehicle-card__radio {
  margin-left: auto;
}

.vehicle-card--recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}

.quote-modal__actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.quote-modal__error {
  margin: 0.65rem 0 0.2rem;
  text-align: center;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-modal__actions button {
  flex: 1;
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}

.quote-modal__actions .btn-outline {
  background: transparent;
  border: 1px solid var(--gray-200);
  color: var(--blue-dark);
}

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

.quote-modal__cta {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  display: none;
}

.booking-success-card {
  margin-top: 0.8rem;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1rem;
  background: #f8fbff;
}

.booking-success-card h4 {
  margin: 0 0 0.5rem;
  color: var(--blue-dark);
}

.booking-success-card p {
  margin: 0;
  color: var(--gray-400);
  font-weight: 600;
}

.booking-success-card__actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
}

.booking-success-card__actions a {
  text-decoration: none;
  text-align: center;
  flex: 1;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

/* Dark navy fare modal – city and route pages only */
body.city-page .quote-modal__card,
body.route-page .quote-modal__card {
  background: #0f1c2e !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}
body.city-page .quote-modal__close,
body.route-page .quote-modal__close {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
}
body.city-page .quote-modal--estimate-mode .quote-modal__meta,
body.route-page .quote-modal--estimate-mode .quote-modal__meta {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
body.city-page .fare-list-header,
body.route-page .fare-list-header {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
body.city-page .fare-list-header__title,
body.city-page .fare-list-header__route,
body.city-page .fare-list-header__time,
body.city-page .quote-fare-type-title,
body.city-page .quote-modal__meta,
body.city-page #quote-route,
body.city-page #quote-fare,
body.route-page .fare-list-header__title,
body.route-page .fare-list-header__route,
body.route-page .fare-list-header__time,
body.route-page .quote-fare-type-title,
body.route-page .quote-modal__meta,
body.route-page #quote-route,
body.route-page #quote-fare {
  color: #fff !important;
}
body.city-page .quote-fare-type-toggle,
body.route-page .quote-fare-type-toggle {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
body.city-page .quote-fare-type-toggle__option,
body.route-page .quote-fare-type-toggle__option {
  color: rgba(255, 255, 255, 0.8) !important;
}
body.city-page .vehicle-card--fare-option,
body.route-page .vehicle-card--fare-option {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}
body.city-page .vehicle-card--fare-option.active,
body.route-page .vehicle-card--fare-option.active {
  background: linear-gradient(180deg, #143761 0%, #0c2a4f 100%) !important;
  border-color: #2bc4ff !important;
  box-shadow: 0 8px 16px rgba(4, 18, 37, 0.46) !important;
}
body.city-page .vehicle-card__title-line,
body.city-page .vehicle-card__title-line small,
body.city-page .vehicle-card__meta,
body.city-page .vehicle-card__distance,
body.city-page .vehicle-card__price,
body.route-page .vehicle-card__title-line,
body.route-page .vehicle-card__title-line small,
body.route-page .vehicle-card__meta,
body.route-page .vehicle-card__distance,
body.route-page .vehicle-card__price {
  color: #fff !important;
}
body.city-page .selected-fare-card,
body.route-page .selected-fare-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
body.city-page .selected-fare-card__fare-title,
body.city-page .selected-fare-card__details h4,
body.city-page .selected-fare-card__details h4 small,
body.city-page .selected-fare-card__meta,
body.city-page .selected-fare-card__distance,
body.city-page .selected-fare-card__amount,
body.route-page .selected-fare-card__fare-title,
body.route-page .selected-fare-card__details h4,
body.route-page .selected-fare-card__details h4 small,
body.route-page .selected-fare-card__meta,
body.route-page .selected-fare-card__distance,
body.route-page .selected-fare-card__amount {
  color: #fff !important;
}
body.city-page .selected-fare-card__toggle,
body.route-page .selected-fare-card__toggle {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
body.city-page .selected-fare-card__toggle input:checked ~ .selected-fare-card__switch,
body.route-page .selected-fare-card__toggle input:checked ~ .selected-fare-card__switch {
  background: #2bc4ff !important;
}
body.city-page .selected-fare-card__toggle input:not(:checked) ~ .selected-fare-card__option--base,
body.route-page .selected-fare-card__toggle input:not(:checked) ~ .selected-fare-card__option--base {
  color: #fff !important;
  opacity: 1 !important;
}
body.city-page .selected-fare-card__toggle input:checked ~ .selected-fare-card__option--inclusive,
body.route-page .selected-fare-card__toggle input:checked ~ .selected-fare-card__option--inclusive {
  color: #fff !important;
  opacity: 1 !important;
}
body.city-page .selected-fare-card__option,
body.route-page .selected-fare-card__option {
  color: rgba(255, 255, 255, 0.85) !important;
}
body.city-page .quote-modal__actions .btn-outline,
body.route-page .quote-modal__actions .btn-outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
}
body.city-page .quote-modal__actions .btn-outline:hover,
body.route-page .quote-modal__actions .btn-outline:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
body.city-page .quote-modal__actions .btn-primary,
body.city-page .quote-modal .quote-btn--confirm,
body.route-page .quote-modal__actions .btn-primary,
body.route-page .quote-modal .quote-btn--confirm {
  background: linear-gradient(120deg, #0f1c2e, #152a45) !important;
  color: #fff !important;
  border: 2px solid #2eb5ff !important;
  box-shadow: 0 4px 16px rgba(46, 181, 255, 0.25) !important;
}
body.city-page .quote-modal__actions .btn-primary:hover,
body.city-page .quote-modal .quote-btn--confirm:hover,
body.route-page .quote-modal__actions .btn-primary:hover,
body.route-page .quote-modal .quote-btn--confirm:hover {
  border-color: #5cc5ff !important;
  box-shadow: 0 6px 20px rgba(46, 181, 255, 0.35) !important;
}