/* ==========================================================================
   LIMO BOOKING SYSTEM — PREMIUM REDESIGN v3
   Enoves / Pearson Black Car
   -----------------------------------------------------------------------
   Visual redesign only. No IDs, classes, or structural behaviour relied on
   by limo.js have been renamed or removed. Safe drop-in replacement for
   assets/css/limo.css

   v3 changes: pulled scale back down to a tighter, boutique feel (v2 had
   over-corrected too large). Added refined micro-details — corner
   flourishes, softer layered shadows, image backdrop on vehicle cards,
   underline hover states — and enlarged/repositioned the footer logo as
   a proper closing signature rather than an afterthought.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

.booking-wrapper {
  --lb-ink: #0d0d0f;
  --lb-gold: #b8925a;
  --lb-gold-light: #ddb98c;
  --lb-gold-dark: #8f6f42;
  --lb-ivory: #faf7f0;
  --lb-ivory-dim: #f1ecdf;
  --lb-line: #e7e0cd;
  --lb-text: #24221c;
  --lb-text-muted: #79735f;
  --lb-white: #ffffff;
  --lb-radius: 14px;
  --lb-radius-sm: 9px;
  --lb-shadow: 0 14px 30px -14px rgba(13, 13, 15, 0.22);
  --lb-shadow-sm: 0 3px 10px -4px rgba(13, 13, 15, 0.1);

  all: initial;
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: var(--lb-text);
  max-width: 1080px;
  margin: 36px auto;
  padding: 0 18px;
  box-sizing: border-box;
}

.booking-wrapper,
.booking-wrapper * {
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--lb-text) !important;
  line-height: 1.55;
}

.booking-wrapper::before {
  content: "Private Chauffeur Reservation";
  display: block;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lb-gold-dark) !important;
  margin-bottom: 16px;
}

.booking-wrapper h1,
.booking-wrapper h2,
.booking-wrapper h3,
.booking-wrapper h4,
.booking-wrapper h5 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700;
  margin: 0;
}

.booking-wrapper button {
  font-family: 'Inter', sans-serif !important;
}

.booking-wrapper h2 {
  font-size: 21px;
  letter-spacing: 0.2px;
  color: var(--lb-ink) !important;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lb-line);
}

.booking-wrapper label {
  display: block;
  font-size: 10.5px;
  font-weight: 700 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lb-text-muted) !important;
  margin: 13px 0 5px;
}

.booking-wrapper input[type="text"],
.booking-wrapper input[type="email"],
.booking-wrapper input[type="tel"],
.booking-wrapper input[type="number"],
.booking-wrapper input[type="date"],
.booking-wrapper input[type="time"],
.booking-wrapper input:not([type]),
.booking-wrapper select {
  width: 100%;
  padding: 10px 13px;
  font-size: 13.5px !important;
  color: var(--lb-text) !important;
  background: var(--lb-white) !important;
  border: 1.5px solid var(--lb-line);
  border-radius: var(--lb-radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-wrapper input::placeholder {
  color: #a7a193 !important;
}

.booking-wrapper input:focus,
.booking-wrapper select:focus {
  border-color: var(--lb-gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 90, 0.16);
}

.booking-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' stroke='%2379735f' stroke-width='1.6' fill='none' fill-rule='evenodd' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 32px;
  cursor: pointer;
}

/* ==========================================================================
   STEP TRACKER  (signature element)
   ========================================================================== */

.booking-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 14px;
  padding: 0 8px;
}

.booking-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 52px;
  right: 52px;
  height: 1px;
  background: var(--lb-line);
  z-index: 0;
}

.step-indicator {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  font-size: 10.5px;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #beb8a4 !important;
  text-align: center;
}

.step-indicator .step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lb-white) !important;
  border: 1.5px solid var(--lb-line);
  font-size: 14px !important;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.25s ease;
}

.step-indicator > span:last-child {
  color: var(--lb-text-muted) !important;
  font-weight: 600 !important;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

.step-indicator.active {
  color: var(--lb-ink) !important;
}

.step-indicator.active .step-icon {
  background: var(--lb-ink) !important;
  border-color: var(--lb-ink);
  filter: none;
  box-shadow: 0 0 0 4px rgba(184, 146, 90, 0.25), 0 5px 12px -3px rgba(13, 13, 15, 0.4);
  transform: translateY(-1px);
}

.step-indicator.active > span:last-child {
  color: var(--lb-ink) !important;
  font-weight: 800 !important;
}

/* completed steps — derived purely from DOM order + the .active class your
   JS already sets, via :has(). No JS changes needed for this to work. */
.step-indicator:has(~ .step-indicator.active) .step-icon {
  background: var(--lb-ivory) !important;
  border-color: var(--lb-gold);
  filter: none;
  font-size: 0;
}

.step-indicator:has(~ .step-indicator.active) .step-icon::before {
  content: "✓";
  font-size: 14px;
  font-weight: 700;
  color: var(--lb-gold-dark) !important;
}

.step-indicator:has(~ .step-indicator.active) > span:last-child {
  color: var(--lb-gold-dark) !important;
}

.step-indicator:has(~ .step-indicator.active)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--lb-gold);
  z-index: -1;
}

/* progress bar */

.progress-bar-container {
  width: 100%;
  height: 3px;
  background: var(--lb-line) !important;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 26px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--lb-gold-dark), var(--lb-gold-light)) !important;
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.limo-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  background: var(--lb-ivory) !important;
  border: 1px solid var(--lb-line);
  border-radius: var(--lb-radius);
  box-shadow: var(--lb-shadow-sm);
}

body.step2 .limo-container {
  grid-template-columns: 1fr;
}

/* corner rounding handled explicitly per-column since overflow:hidden
   (which would normally clip this) breaks position:sticky on the map */
.limo-left {
  border-radius: var(--lb-radius) 0 0 var(--lb-radius);
}

.limo-right {
  border-radius: 0 var(--lb-radius) var(--lb-radius) 0;
}

body.step2 .limo-left {
  border-radius: var(--lb-radius);
}

/* corner flourish now belongs to the whole card */
.limo-container::before,
.limo-container::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-top: 1.5px solid var(--lb-gold);
  border-left: 1.5px solid var(--lb-gold);
  top: 10px;
  left: 10px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
}

.limo-container::after {
  top: auto;
  left: auto;
  bottom: 10px;
  right: 10px;
  border-top: none;
  border-left: none;
  border-bottom: 1.5px solid var(--lb-gold);
  border-right: 1.5px solid var(--lb-gold);
}

.limo-left {
  position: relative;
  background: transparent !important;
  background-image:
    radial-gradient(circle at 15% 12%, rgba(184, 146, 90, 0.05), transparent 40%),
    radial-gradient(circle at 88% 90%, rgba(184, 146, 90, 0.05), transparent 40%);
  padding: 26px 28px;
  border-right: 1px solid var(--lb-line);
}

body.step2 .limo-left {
  border-right: none;
}

/* shared "light sweep" hover for the primary call-to-action buttons */
.primary-btn,
.continue-btn,
.confirm-btn,
.vehicle .choose {
  position: relative;
  overflow: hidden;
}

.primary-btn::after,
.continue-btn::after,
.confirm-btn::after,
.vehicle .choose::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.primary-btn:hover::after,
.continue-btn:hover::after,
.confirm-btn:hover::after,
.vehicle .choose:hover::after {
  left: 130%;
}

.limo-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--lb-ivory-dim) !important;
  padding: 26px 26px;
}

body.step2 .limo-right {
  display: none;
}

/* map + distance card stick together near the top of the sidebar as the
   (much longer) form on the left scrolls past — the sidebar tint above
   still spans its full column height regardless of how long a step is */
#map {
  position: sticky;
  top: 20px;
  width: 100%;
  height: 320px;
  border-radius: var(--lb-radius-sm);
  overflow: hidden;
  border: 1px solid var(--lb-line);
}

#distance_info {
  position: sticky;
  top: 356px;
  background: var(--lb-ink) !important;
  border-radius: var(--lb-radius-sm);
  padding: 18px 20px;
  font-size: 12.5px;
  line-height: 1.7;
}

#distance_info,
#distance_info p,
#distance_info div,
#route_summary {
  color: #ded9c9 !important;
}

#distance_info strong,
#distance_info b {
  color: var(--lb-gold-light) !important;
}

#distance_info p {
  margin: 0 0 8px;
  font-size: 13px;
}

#distance_km {
  font-family: 'Playfair Display', serif !important;
  font-size: 16px;
  color: var(--lb-gold-light) !important;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: lb-fade-in 0.3s ease;
}

@keyframes lb-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   STEP 1 — TRIP DETAILS
   ========================================================================== */

#hours_container {
  background: var(--lb-ivory-dim) !important;
  border: 1px dashed var(--lb-gold);
  border-radius: var(--lb-radius-sm);
  padding: 12px 14px;
}

#hours_container label {
  margin-top: 0;
}

#hours_container small {
  font-size: 11px !important;
  color: var(--lb-text-muted) !important;
}

#stops {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

#stops .stop {
  margin: 0;
}

.add-stop-btn {
  margin-top: 8px;
  background: none !important;
  border: none;
  color: var(--lb-gold-dark) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.add-stop-btn:hover {
  color: var(--lb-ink) !important;
  text-decoration: underline;
}

.return-trip-toggle {
  margin: 18px 0 4px;
  padding: 12px 14px;
  background: var(--lb-white) !important;
  border: 1.5px solid var(--lb-line);
  border-radius: var(--lb-radius-sm);
}

.return-trip-toggle label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12.5px;
  color: var(--lb-text) !important;
  cursor: pointer;
}

.return-trip-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--lb-gold-dark);
  cursor: pointer;
}

.toggle-label {
  font-weight: 700 !important;
}

.return-trip-fields {
  display: none;
  margin-top: 12px;
  padding: 16px 16px 4px;
  background: var(--lb-ivory-dim) !important;
  border: 1px solid var(--lb-line);
  border-left: 3px solid var(--lb-gold);
  border-radius: 0 var(--lb-radius-sm) var(--lb-radius-sm) 0;
}

.return-trip-fields h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--lb-ink) !important;
}

.return-notice {
  font-size: 11px;
  color: var(--lb-text-muted) !important;
  background: rgba(184, 146, 90, 0.12) !important;
  border-radius: var(--lb-radius-sm);
  padding: 7px 11px;
  margin: 4px 0 14px;
}

.primary-btn {
  width: 100%;
  margin-top: 22px;
  padding: 13px 18px;
  background: var(--lb-ink) !important;
  color: var(--lb-gold-light) !important;
  border: none;
  border-radius: var(--lb-radius-sm);
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.primary-btn:hover {
  background: #1e1e22 !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   STEP 2 — VEHICLES
   ========================================================================== */

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 4px;
}

.vehicle {
  position: relative;
  background: var(--lb-white) !important;
  border: 1px solid var(--lb-line);
  border-radius: var(--lb-radius);
  padding: 18px 16px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.vehicle:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow);
  border-color: var(--lb-gold);
}

.vehicle::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lb-ivory-dim) 0%, transparent 72%);
  z-index: 0;
}

.vehicle img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 88px;
  object-fit: contain;
  margin-bottom: 10px;
}

.vehicle h4 {
  font-size: 15.5px;
  margin: 0 0 6px;
  color: var(--lb-ink) !important;
}

.vehicle .info {
  font-size: 11px;
  color: var(--lb-text-muted) !important;
  margin: 2px 0;
}

.vehicle .price {
  margin: 10px 0 14px;
  font-size: 11.5px;
  color: var(--lb-text-muted) !important;
}

.vehicle-price {
  font-family: 'Playfair Display', serif !important;
  font-size: 17px;
  color: var(--lb-gold-dark) !important;
  font-weight: 700;
}

.vehicle .choose,
.vehicle .choose-quote {
  width: 100%;
  padding: 9px 14px;
  background: var(--lb-white) !important;
  color: var(--lb-ink) !important;
  border: 1.5px solid var(--lb-ink);
  border-radius: 999px;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vehicle .choose:hover,
.vehicle .choose-quote:hover {
  background: var(--lb-ink) !important;
  color: var(--lb-gold-light) !important;
}

/* nav buttons shared across steps 2-4 */

.nav-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.nav-buttons.vertical {
  flex-direction: column-reverse;
}

.nav-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--lb-radius-sm);
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-btn {
  background: transparent !important;
  border: 1.5px solid var(--lb-line);
  color: var(--lb-text-muted) !important;
}

.back-btn:hover {
  border-color: var(--lb-ink);
  color: var(--lb-ink) !important;
}

.continue-btn,
.confirm-btn {
  background: var(--lb-ink) !important;
  border: 1.5px solid var(--lb-ink);
  color: var(--lb-gold-light) !important;
}

.continue-btn:hover,
.confirm-btn:hover {
  background: #1e1e22 !important;
  transform: translateY(-1px);
}

.confirm-btn {
  background: linear-gradient(135deg, var(--lb-gold-dark), var(--lb-gold)) !important;
  border-color: var(--lb-gold-dark);
  color: var(--lb-ink) !important;
  font-size: 13px !important;
}

.confirm-btn:hover {
  background: linear-gradient(135deg, var(--lb-gold), var(--lb-gold-light)) !important;
  transform: translateY(-1px);
}

.nav-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   STEP 3 — EXTRAS
   ========================================================================== */

#step3 label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 600 !important;
  color: var(--lb-text) !important;
  background: var(--lb-white) !important;
  border: 1.5px solid var(--lb-line);
  border-radius: var(--lb-radius-sm);
  padding: 13px 15px;
  margin: 0 0 10px;
}

#step3 label:hover {
  border-color: var(--lb-gold);
}

.extra {
  width: 56px !important;
  padding: 7px 8px !important;
  text-align: center;
  font-weight: 700 !important;
  font-size: 13px !important;
  flex: none !important;
}

/* ==========================================================================
   STEP 4 — CHECKOUT
   ========================================================================== */

.summary-card {
  background: var(--lb-ink) !important;
  border-radius: var(--lb-radius);
  padding: 20px 22px;
  font-size: 12.5px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.summary-card,
.summary-card p,
.summary-card div {
  color: #ded9c9 !important;
}

.summary-card b,
.summary-card strong {
  color: var(--lb-gold-light) !important;
}

.summary-card hr {
  border: none;
  border-top: 1px solid rgba(250, 247, 240, 0.18);
  margin: 10px 0;
}

.section-wrapper {
  margin-bottom: 20px;
}

.section-wrapper h4,
.payment-section h4 {
  font-size: 14.5px;
  color: var(--lb-ink) !important;
  margin: 0 0 12px;
}

.section-wrapper input {
  margin-bottom: 10px;
}

.payment-section {
  background: var(--lb-white) !important;
  border: 1.5px solid var(--lb-line);
  border-radius: var(--lb-radius);
  padding: 18px 20px 22px;
  margin-bottom: 20px;
}

.secure-note {
  font-size: 11px;
  color: var(--lb-text-muted) !important;
  background: rgba(184, 146, 90, 0.12) !important;
  border-radius: var(--lb-radius-sm);
  padding: 9px 12px;
  margin: 0 0 14px;
}

.condition-item {
  background: var(--lb-ivory-dim) !important;
  border-left: 3px solid var(--lb-line);
  border-radius: 0 var(--lb-radius-sm) var(--lb-radius-sm) 0;
  padding: 12px 16px;
  margin-bottom: 10px;
}

.condition-item p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--lb-text-muted) !important;
}

.condition-item strong {
  color: var(--lb-text) !important;
}

.terms-checkbox {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 18px 0;
  font-size: 11.5px;
  color: var(--lb-text-muted) !important;
  line-height: 1.6;
}

.terms-checkbox label {
  display: flex;
  gap: 9px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400 !important;
  margin: 0;
  cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 1px;
  accent-color: var(--lb-gold-dark);
  cursor: pointer;
}

.terms-checkbox a {
  color: var(--lb-gold-dark) !important;
  font-weight: 600 !important;
}

.security-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.security-badge span {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  color: var(--lb-gold-dark) !important;
  background: rgba(184, 146, 90, 0.12) !important;
  border: 1px solid rgba(184, 146, 90, 0.35);
  border-radius: 999px;
  padding: 5px 13px;
}

/* ==========================================================================
   ACTIVATION / ERROR NOTICE
   ========================================================================== */

.limo-activation-notice {
  max-width: 1080px;
  margin: 36px auto;
  padding: 16px 20px;
  background: #fff4e5 !important;
  border: 1px solid #f0c988;
  border-radius: var(--lb-radius-sm);
  color: #7a5510 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px;
}

/* ==========================================================================
   FOOTER — enlarged, repositioned as a proper closing signature
   ========================================================================== */

.booking-footer {
  margin-top: 30px;
}

.footer-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lb-gold), transparent) !important;
  margin-bottom: 22px;
}

.footer-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--lb-gold) !important;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo {
  max-height: 22px;
  width: auto;
  opacity: 0.8;
}

.copyright {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--lb-text-muted) !important;
  margin: 0;
}

.copyright a {
  color: var(--lb-gold-dark) !important;
  text-decoration: none;
  font-weight: 700 !important;
}

.copyright a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .limo-container {
    grid-template-columns: 1fr;
  }

  .limo-left {
    border-right: none;
    border-bottom: 1px solid var(--lb-line);
    border-radius: var(--lb-radius) var(--lb-radius) 0 0;
    padding: 22px 18px;
  }

  body.step2 .limo-left {
    border-radius: var(--lb-radius);
  }

  .limo-right {
    border-radius: 0 0 var(--lb-radius) var(--lb-radius);
    padding: 20px 18px;
  }

  body.step2 .limo-right {
    display: none;
  }

  /* stacked single-column layout: map doesn't need to stay pinned */
  #map {
    position: static;
    height: 240px;
  }

  #distance_info {
    position: static;
  }
}

@media (max-width: 620px) {
  .booking-wrapper {
    margin: 18px auto;
    padding: 0 10px;
    font-size: 13px;
  }

  .booking-steps::before {
    left: 26px;
    right: 26px;
  }

  .step-indicator {
    font-size: 9px;
  }

  .step-indicator .step-icon {
    width: 30px;
    height: 30px;
    font-size: 13px !important;
  }

  .step-indicator > span:last-child {
    display: none;
  }

  .limo-left {
    padding: 18px 14px;
  }

  .vehicle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .vehicle {
    padding: 14px 10px 16px;
  }

  .nav-buttons {
    flex-direction: column;
  }

  .nav-buttons.vertical {
    flex-direction: column-reverse;
  }

  .footer-logo {
    max-height: 18px;
  }
}

@media (max-width: 420px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.booking-wrapper button:focus-visible,
.booking-wrapper input:focus-visible,
.booking-wrapper select:focus-visible {
  outline: 2px solid var(--lb-gold-dark);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .booking-wrapper * {
    animation: none !important;
    transition: none !important;
  }
}