/* =============================================================================
 * CROWN CONCIERGE — BOOKING VIEW STYLES
 * File:      crown-booking.v2.0.0.css
 * Version:   2.0.0
 * Location:  /wp-content/uploads/crown/crown-booking.v2.0.0.css
 *
 * CHANGELOG
 *   2.0.0 — PHASE 1: LIGHT THEME + MOBILE SIMPLIFICATION REWRITE
 *           • Full token rename from dark-theme naming (--cb-dark,
 *             --cb-cream, --cb-cream-dim, --cb-cream-faint) to
 *             meaning-based tokens (--cb-bg, --cb-surface, --cb-ink,
 *             --cb-ink-dim, --cb-ink-faint). The old names described
 *             literal dark-theme colors and would be actively
 *             misleading once repointed at light values (e.g.
 *             "--cb-cream" producing charcoal text).
 *           • New --cb-gold-text token added: the brand gold
 *             (#c9a84c) only reaches ~2.2:1 contrast on a light
 *             background — fine for borders/button fills (dark text
 *             on gold stays high-contrast) but fails AA as text
 *             color. --cb-gold-text (#7a5e1e, ~5.7:1) is used
 *             anywhere gold appears as text/links/icons on the new
 *             light surface. --cb-gold itself is kept for
 *             decorative use (borders, button fills, dashed accents)
 *             where the contrast requirement doesn't apply the same
 *             way.
 *           • Cards dropped the dark-theme glass treatment
 *             (near-transparent gradient + backdrop-filter — which
 *             only reads as "glass" against a dark backdrop) in
 *             favor of solid white surfaces with a soft shadow. This
 *             is a legitimate simplification, not just a side effect
 *             of the theme swap: solid cards are easier to read at a
 *             glance, which is the whole point of this pass.
 *           • Touch targets: form controls now min-height 52px
 *             (was ~44px effective via padding), buttons min-height
 *             48-52px, checkboxes visually enlarged to 20px AND
 *             wrapped in a label with min-height 44px so the tap
 *             zone meets the minimum even though the visual glyph is
 *             smaller than 44px itself.
 *           • :focus-visible added to .cb-quote-btn, .cb-submit-btn,
 *             .cb-airport-btn, .cb-swap-btn — none of these had an
 *             explicit focus style in v1.1.0; they were relying on
 *             default browser behavior, which is inconsistent across
 *             browsers when a button also has no visible :focus rule
 *             defined elsewhere in the cascade.
 *           • Base font-size raised 15px -> 16px sitewide, with a
 *             further mobile bump (see MOBILE BREAKPOINT section).
 *             Labels raised 11px -> 12.5px. Sub/helper text sizes
 *             raised where they were previously carrying meaningful
 *             (non-decorative) copy.
 *           • Added prefers-reduced-motion block (v1.1.0 had none).
 *
 *   --- v1.1.0 history preserved below ---
 *   1.1.0 — Removed orphaned vehicle-grid CSS (see v1.1.0 notes).
 *   1.0.1 — mobile promo price stacking fix.
 *   1.0.0 — initial release.
 *
 * PURPOSE
 *   Visual layer for /check-availability/ dedicated booking page.
 *   Pairs with crown-booking.v2.x.js — uses the same cb- ID prefix.
 *
 * DESIGN
 *   Warm-ivory light theme. Cormorant Garamond display, DM Sans body.
 *   Gold accents on a cream/white surface system. Solid cards with
 *   soft shadows — no glass/blur effects (those depended on a dark
 *   backdrop to read correctly and don't translate to a light one).
 *
 * SCOPING
 *   Every rule is scoped under #cb-page so styles cannot leak to other
 *   parts of the WordPress site. The WordPress block must wrap
 *   everything in <div id="cb-page">…</div>.
 *
 * RESPONSIVE
 *   Mobile-simplified. Breakpoints at 880px (grid collapse) and
 *   600px (type/spacing bump for small-phone legibility).
 *
 * NOTE — SCOPE OF THIS FILE
 *   This file covers the header, trip-details form, sidebar, and
 *   confirmation screen. The quote-result section (value cards, fare
 *   strip, contact form, promo notice) is styled inline in the
 *   check-availability-block HTML file using hardcoded rgba() colors
 *   rather than these CSS variables, and needs its own light-theme
 *   pass to match — it will NOT inherit these token changes.
 * ========================================================================== */


/* ===========================================================================
 * DESIGN TOKENS
 * ======================================================================== */

#cb-page {
  --cb-gold:        #c9a84c;               /* decorative: borders, button fills, icons */
  --cb-gold-soft:   #d9c179;               /* hover state for gold fills */
  --cb-gold-dim:    rgba(201, 168, 76, 0.45); /* borders/accents — bumped from .35 for
                                                 visibility against a light surface */
  --cb-gold-text:   #7a5e1e;               /* gold-as-text/links/icons — ~5.7:1 on --cb-bg */

  --cb-bg:          #faf7f1;               /* page background, warm ivory */
  --cb-surface:     #ffffff;               /* card background */
  --cb-surface-2:   #f1ebdd;               /* secondary surface: dropdowns, tinted panels */

  --cb-ink:         #221e19;               /* primary text — ~15.6:1 on --cb-bg */
  --cb-ink-dim:     #5b5648;               /* secondary text — ~6.9:1 on --cb-bg */
  --cb-ink-faint:   #6e6754;               /* tertiary/caption text — ~5.3:1 on --cb-bg */

  --cb-line:        rgba(34, 30, 25, 0.12);  /* subtle borders */
  --cb-line-strong: rgba(34, 30, 25, 0.24);  /* input/divider borders */

  --cb-err:         #b3261e;
  --cb-err-bg:      #fbeae8;
  --cb-err-line:    rgba(179, 38, 30, 0.35);

  --cb-ok:          #2e7d4f;
  --cb-ok-bg:       #eaf6ee;
  --cb-ok-line:     rgba(46, 125, 79, 0.35);

  --cb-font-display: 'Cormorant Garamond', Georgia, serif;
  --cb-font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --cb-radius:       14px;
  --cb-radius-sm:    10px;
  --cb-radius-pill:  999px;

  --cb-ease:         cubic-bezier(0.22, 0.61, 0.36, 1);

  --cb-shadow-card:  0 2px 10px rgba(34, 30, 25, 0.06), 0 1px 2px rgba(34, 30, 25, 0.04);
  --cb-shadow-pop:   0 16px 40px rgba(34, 30, 25, 0.14);
}


/* ===========================================================================
 * PAGE LAYOUT
 * ======================================================================== */

#cb-page {
  background: var(--cb-bg);
  color: var(--cb-ink);
  font-family: var(--cb-font-body);
  font-size: 16px;
  line-height: 1.55;
  padding: 56px 24px 80px;
  min-height: 100vh;
}

#cb-page * { box-sizing: border-box; }

#cb-page .cb-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

#cb-page .cb-header {
  max-width: 1180px;
  margin: 0 auto 36px;
}

#cb-page .cb-eyebrow {
  font-family: var(--cb-font-body);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cb-gold-text);
  margin: 0 0 12px 0;
  font-weight: 600;
}

#cb-page .cb-title {
  font-family: var(--cb-font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 12px 0;
  color: var(--cb-ink);
  letter-spacing: -0.01em;
}

#cb-page .cb-subtitle {
  font-size: 16px;
  color: var(--cb-ink-dim);
  margin: 0;
  max-width: 540px;
}


/* ===========================================================================
 * SECTION LABELS
 * ======================================================================== */

#cb-page .cb-section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cb-gold-text);
  font-weight: 600;
  margin: 0 0 14px 0;
}


/* ===========================================================================
 * CARDS — solid surface + soft shadow (glass effect dropped; it only
 * read correctly against the old dark backdrop)
 * ======================================================================== */

#cb-page .cb-card {
  background: var(--cb-surface);
  border: 1px solid var(--cb-line);
  border-radius: var(--cb-radius);
  padding: 28px;
  box-shadow: var(--cb-shadow-card);
}

#cb-page .cb-card-title {
  font-family: var(--cb-font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--cb-ink);
  margin: 0 0 4px 0;
  letter-spacing: -0.005em;
}

#cb-page .cb-card-sub {
  font-size: 14px;
  color: var(--cb-ink-faint);
  margin: 0 0 22px 0;
}


/* ===========================================================================
 * FORM CONTROLS
 * ======================================================================== */

#cb-page .cb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

#cb-page .cb-field {
  display: flex;
  flex-direction: column;
  position: relative;
}

#cb-page .cb-field.cb-span-2 { grid-column: 1 / -1; }

#cb-page .cb-field label {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cb-ink-dim);
  font-weight: 600;
  margin-bottom: 7px;
}

#cb-page .cb-input,
#cb-page .cb-select,
#cb-page .cb-textarea {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-line-strong);
  border-radius: var(--cb-radius-sm);
  color: var(--cb-ink);
  font-family: var(--cb-font-body);
  font-size: 16px;
  min-height: 52px;
  padding: 14px 16px;
  outline: none;
  transition-property: border-color, box-shadow, background;
  transition-duration: 200ms;
  transition-timing-function: var(--cb-ease);
}

#cb-page .cb-input::placeholder,
#cb-page .cb-textarea::placeholder {
  color: var(--cb-ink-faint);
  opacity: 0.7;
}

#cb-page .cb-input:focus,
#cb-page .cb-select:focus,
#cb-page .cb-textarea:focus {
  border-color: var(--cb-gold-text);
  box-shadow: 0 0 0 3px rgba(122, 94, 30, 0.15);
}

#cb-page .cb-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 10 6'%3e%3cpath fill='none' stroke='%235b5648' stroke-width='1.6' d='M1 1l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

#cb-page .cb-textarea {
  resize: vertical;
  min-height: 96px;
  font-family: var(--cb-font-body);
}

/* Address-field valid state — gold-text check, matches new text-safe token */
#cb-page .cb-field.cb-addr.valid .cb-input {
  border-color: var(--cb-gold);
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3e%3cpath stroke='%237a5e1e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}


/* ===========================================================================
 * SUGGESTIONS DROPDOWN
 * ======================================================================== */

#cb-page .cb-sugs {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--cb-surface);
  border: 1px solid var(--cb-line-strong);
  border-radius: var(--cb-radius-sm);
  padding: 4px;
  z-index: 50;
  display: none;
  max-height: 280px;
  overflow-y: auto;
  box-shadow: var(--cb-shadow-pop);
}

#cb-page .cb-sug-item {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--cb-ink);
  cursor: pointer;
  transition: background 140ms var(--cb-ease);
}

#cb-page .cb-sug-item:hover,
#cb-page .cb-sug-item:focus-visible {
  background: rgba(201, 168, 76, 0.14);
}

#cb-page .cb-sug-item strong {
  font-weight: 600;
  color: var(--cb-ink);
}

#cb-page .cb-sug-item small {
  display: block;
  font-size: 12px;
  color: var(--cb-ink-faint);
  margin-top: 2px;
  font-weight: 400;
}


/* ===========================================================================
 * AIRPORT QUICK BUTTONS
 * ======================================================================== */

#cb-page .cb-airport-quick {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 14px;
  background: rgba(201, 168, 76, 0.08);
  border: 1.5px dashed var(--cb-gold-dim);
  border-radius: var(--cb-radius-sm);
}

#cb-page .cb-airport-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cb-gold-text);
  font-weight: 600;
  margin-right: 4px;
}

#cb-page .cb-airport-btn {
  font-family: var(--cb-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 44px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-gold-dim);
  color: var(--cb-ink);
  border-radius: var(--cb-radius-pill);
  cursor: pointer;
  transition-property: background, border-color;
  transition-duration: 160ms;
  transition-timing-function: var(--cb-ease);
}

#cb-page .cb-airport-btn:hover {
  background: rgba(201, 168, 76, 0.14);
  border-color: var(--cb-gold);
}

#cb-page .cb-airport-btn:focus-visible {
  outline: 2px solid var(--cb-gold-text);
  outline-offset: 2px;
}

#cb-page .cb-airport-btn small {
  display: inline;
  margin-left: 4px;
  font-size: 11px;
  color: var(--cb-ink-faint);
  letter-spacing: 0.02em;
}


/* ===========================================================================
 * SWAP BUTTON
 * ======================================================================== */

#cb-page .cb-swap-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin: 0;
}

#cb-page .cb-swap-btn {
  background: transparent;
  border: 1.5px solid var(--cb-line-strong);
  color: var(--cb-ink-dim);
  border-radius: var(--cb-radius-pill);
  min-height: 40px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  font-family: var(--cb-font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms var(--cb-ease), color 160ms var(--cb-ease);
}

#cb-page .cb-swap-btn:hover {
  border-color: var(--cb-gold);
  color: var(--cb-gold-text);
}

#cb-page .cb-swap-btn:focus-visible {
  outline: 2px solid var(--cb-gold-text);
  outline-offset: 2px;
}


/* ===========================================================================
 * QUOTE BUTTON
 * ======================================================================== */

#cb-page .cb-quote-btn {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  background: var(--cb-gold);
  color: var(--cb-ink);
  font-family: var(--cb-font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  border-radius: var(--cb-radius-sm);
  cursor: pointer;
  transition-property: background, transform;
  transition-duration: 200ms, 120ms;
  transition-timing-function: var(--cb-ease);
  margin-top: 4px;
}

#cb-page .cb-quote-btn:hover:not(:disabled) {
  background: var(--cb-gold-soft);
}

#cb-page .cb-quote-btn:active:not(:disabled) {
  transform: translateY(1px);
}

#cb-page .cb-quote-btn:focus-visible {
  outline: 3px solid var(--cb-ink);
  outline-offset: 2px;
}

#cb-page .cb-quote-btn:disabled {
  background: rgba(201, 168, 76, 0.25);
  color: rgba(34, 30, 25, 0.4);
  cursor: not-allowed;
}

#cb-page .cb-quote-btn.loading {
  background: rgba(201, 168, 76, 0.7);
  cursor: progress;
}


/* ===========================================================================
 * SLIM ERROR
 * ======================================================================== */

#cb-page .cb-slim-error {
  display: none;
  margin: 0 0 16px 0;
  padding: 13px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cb-err);
  background: var(--cb-err-bg);
  border: 1px solid var(--cb-err-line);
  border-radius: var(--cb-radius-sm);
}


/* ===========================================================================
 * PROMO STRIKETHROUGH — still live, used by the recommended fare strip's
 * price display. Kept as-is functionally, recolored for light theme.
 * ======================================================================== */

#cb-page .cb-strike {
  text-decoration: line-through;
  opacity: 0.55;
  font-size: 0.7em;
  margin-right: 8px;
  color: var(--cb-ink-faint);
}

#cb-page .cb-promo {
  color: var(--cb-gold-text);
}


/* ===========================================================================
 * INFO SECTION — contact fields
 * ======================================================================== */

#cb-page .cb-phone-hint {
  display: none;
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.02em;
  color: var(--cb-ink-faint);
}

#cb-page .cb-phone-hint.visible { display: block; }
#cb-page .cb-phone-hint.ok      { color: var(--cb-ok); }
#cb-page .cb-phone-hint.err     { color: var(--cb-err); }

/* Consent — checkbox enlarged + label padded so the tap zone meets
   44px minimum even though the visual glyph stays smaller */
#cb-page .cb-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 44px;
  padding: 8px 0;
  cursor: pointer;
}

#cb-page .cb-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  accent-color: var(--cb-gold);
  flex-shrink: 0;
  cursor: pointer;
}

#cb-page .cb-consent-text {
  font-size: 13px;
  color: var(--cb-ink-dim);
  line-height: 1.55;
}

#cb-page .cb-consent-text a {
  color: var(--cb-gold-text);
  text-decoration: underline;
  text-decoration-color: var(--cb-gold-dim);
  text-underline-offset: 2px;
}


/* ===========================================================================
 * SUBMIT BUTTON + BANNER
 * ======================================================================== */

/* NOTE: v1.1.0 gave this button a cream (near-white) fill on a dark
   page — a deliberate "brightest thing on the page" trick. On a
   light page that same fill would blend straight into the
   background, so the trick now inverts: dark ink fill on the light
   page, which preserves the "highest-contrast element" effect. */
#cb-page .cb-submit-btn {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: var(--cb-ink);
  color: var(--cb-surface);
  font-family: var(--cb-font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  border-radius: var(--cb-radius-sm);
  cursor: pointer;
  margin-top: 12px;
  transition-property: background, transform;
  transition-duration: 200ms, 120ms;
  transition-timing-function: var(--cb-ease);
}

#cb-page .cb-submit-btn:hover:not(:disabled) {
  background: #3a342b;
}

#cb-page .cb-submit-btn:active:not(:disabled) {
  transform: translateY(1px);
}

#cb-page .cb-submit-btn:focus-visible {
  outline: 3px solid var(--cb-gold-text);
  outline-offset: 2px;
}

#cb-page .cb-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#cb-page .cb-submit-btn.sending {
  background: rgba(34, 30, 25, 0.55);
  cursor: progress;
}

#cb-page .cb-banner {
  grid-column: 1 / -1;
  display: none;
  padding: 13px 16px;
  font-size: 14px;
  border-radius: var(--cb-radius-sm);
  border: 1px solid transparent;
  margin-top: 8px;
}

#cb-page .cb-banner.ok {
  display: block;
  color: var(--cb-ok);
  background: var(--cb-ok-bg);
  border-color: var(--cb-ok-line);
}

#cb-page .cb-banner.err {
  display: block;
  color: var(--cb-err);
  background: var(--cb-err-bg);
  border-color: var(--cb-err-line);
}


/* ===========================================================================
 * PROMO NOTICE BANNER
 * ======================================================================== */

#cb-page .cb-promo-notice {
  display: none;
  margin-bottom: 16px;
  padding: 15px 18px;
  background: linear-gradient(135deg, rgba(46, 125, 79, 0.06), rgba(201, 168, 76, 0.08));
  border: 1px solid rgba(46, 125, 79, 0.3);
  border-left: 3px solid var(--cb-ok);
  border-radius: var(--cb-radius-sm);
}

#cb-page .cb-promo-notice-icon {
  display: inline-block;
  margin-right: 6px;
  font-size: 14px;
  vertical-align: middle;
}

#cb-page .cb-promo-notice-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--cb-ink-dim);
}

#cb-page .cb-promo-notice-body strong {
  color: var(--cb-ok);
  font-weight: 700;
}


/* ===========================================================================
 * CONFIRMATION
 * ======================================================================== */

#cb-page #cb-confirmation {
  display: none;
  text-align: center;
  padding: 80px 40px;
}

#cb-page #cb-confirmation .cb-conf-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.14);
  border: 1.5px solid var(--cb-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

#cb-page #cb-confirmation .cb-conf-logo svg,
#cb-page #cb-confirmation .cb-conf-logo img {
  width: 36px;
  height: auto;
}

#cb-page #cb-confirmation h2 {
  font-family: var(--cb-font-display);
  font-size: 34px;
  font-weight: 500;
  color: var(--cb-ink);
  margin: 0 0 12px 0;
}

#cb-page #cb-confirmation p {
  color: var(--cb-ink-dim);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto;
}

#cb-page #cb-confirmation .cb-conf-lead {
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.55;
}

#cb-page #cb-confirmation .cb-conf-lead strong {
  color: var(--cb-gold-text);
  font-weight: 700;
}

#cb-page #cb-confirmation .cb-conf-card {
  max-width: 460px;
  margin: 0 auto 14px;
  padding: 18px 20px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--cb-gold-dim);
  border-radius: var(--cb-radius-sm);
  text-align: left;
}

#cb-page #cb-confirmation .cb-conf-card:last-child { margin-bottom: 0; }

#cb-page #cb-confirmation .cb-conf-card-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cb-gold-text);
  font-weight: 600;
  margin-bottom: 6px;
}

#cb-page #cb-confirmation .cb-conf-card-body {
  margin: 0;
  font-size: 14px;
  color: var(--cb-ink-dim);
  max-width: none;
  text-align: left;
  line-height: 1.55;
}

#cb-page #cb-confirmation .cb-conf-card-body a {
  color: var(--cb-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--cb-gold-text);
  transition: color 160ms var(--cb-ease);
}

#cb-page #cb-confirmation .cb-conf-card-body a:hover,
#cb-page #cb-confirmation .cb-conf-card-body a:focus-visible {
  color: var(--cb-gold-text);
}


/* ===========================================================================
 * SIDEBAR
 * ======================================================================== */

#cb-page .cb-sidebar {
  position: sticky;
  top: 32px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#cb-page .cb-side-card {
  background: var(--cb-surface);
  border: 1px solid var(--cb-line);
  border-radius: var(--cb-radius);
  padding: 24px;
  box-shadow: var(--cb-shadow-card);
}

#cb-page .cb-side-card h3 {
  font-family: var(--cb-font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cb-ink);
  margin: 0 0 16px 0;
  letter-spacing: -0.005em;
}

#cb-page .cb-step {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

#cb-page .cb-step:last-child { margin-bottom: 0; }

#cb-page .cb-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.16);
  border: 1.5px solid var(--cb-gold-dim);
  color: var(--cb-gold-text);
  font-family: var(--cb-font-display);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cb-page .cb-step-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--cb-ink);
  margin-bottom: 2px;
}

#cb-page .cb-step-body p {
  font-size: 13px;
  color: var(--cb-ink-faint);
  margin: 0;
  line-height: 1.5;
}

#cb-page .cb-promise {
  list-style: none;
  padding: 0;
  margin: 0;
}

#cb-page .cb-promise li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--cb-ink-dim);
  padding: 9px 0;
  border-bottom: 1px solid var(--cb-line);
}

#cb-page .cb-promise li:last-child { border-bottom: none; }

#cb-page .cb-promise li::before {
  content: "✓";
  color: var(--cb-gold-text);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

#cb-page .cb-promise strong {
  color: var(--cb-ink);
  font-weight: 600;
}

#cb-page .cb-support {
  text-align: center;
  background: rgba(201, 168, 76, 0.06);
  border-color: var(--cb-gold-dim);
}

#cb-page .cb-support .cb-support-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cb-gold-text);
  font-weight: 600;
  margin-bottom: 8px;
}

#cb-page .cb-support .cb-support-num {
  display: block;
  font-family: var(--cb-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--cb-ink);
  text-decoration: none;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

#cb-page .cb-support .cb-support-num:hover,
#cb-page .cb-support .cb-support-num:focus-visible {
  color: var(--cb-gold-text);
}

#cb-page .cb-support .cb-support-hours {
  font-size: 12px;
  color: var(--cb-ink-faint);
  letter-spacing: 0.02em;
}


/* ===========================================================================
 * REDUCED MOTION
 * ======================================================================== */

@media (prefers-reduced-motion: reduce) {
  #cb-page .cb-input,
  #cb-page .cb-select,
  #cb-page .cb-textarea,
  #cb-page .cb-quote-btn,
  #cb-page .cb-submit-btn,
  #cb-page .cb-airport-btn,
  #cb-page .cb-swap-btn,
  #cb-page .cb-sug-item,
  #cb-page .cb-support .cb-support-num,
  #cb-page #cb-confirmation .cb-conf-card-body a {
    transition: none;
  }
  #cb-page .cb-quote-btn:active:not(:disabled),
  #cb-page .cb-submit-btn:active:not(:disabled) {
    transform: none;
  }
}


/* ===========================================================================
 * MOBILE BREAKPOINT — 880px: layout collapse
 * ======================================================================== */

@media (max-width: 880px) {
  #cb-page {
    padding: 32px 16px 64px;
  }

  #cb-page .cb-title { font-size: 34px; }

  #cb-page .cb-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #cb-page .cb-card { padding: 24px 20px; }

  #cb-page .cb-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #cb-page .cb-field.cb-span-2 { grid-column: 1; }

  #cb-page .cb-sidebar {
    position: static;
  }

  #cb-page .cb-airport-quick {
    flex-direction: column;
    align-items: stretch;
  }

  #cb-page .cb-airport-btn {
    justify-content: center;
  }
}


/* ===========================================================================
 * SMALL MOBILE — 600px: legibility bump (larger type, roomier spacing,
 * fewer things competing for attention per screen)
 * ======================================================================== */

@media (max-width: 600px) {
  #cb-page {
    font-size: 17px;
    padding: 28px 16px 56px;
  }

  #cb-page .cb-eyebrow { font-size: 12.5px; }
  #cb-page .cb-title { font-size: 28px; }
  #cb-page .cb-subtitle { font-size: 16px; }

  #cb-page .cb-card { padding: 22px 18px; }
  #cb-page .cb-card-title { font-size: 22px; }
  #cb-page .cb-card-sub { font-size: 14px; }

  #cb-page .cb-field label { font-size: 13px; }

  #cb-page .cb-input,
  #cb-page .cb-select,
  #cb-page .cb-textarea {
    font-size: 16.5px;
    min-height: 54px;
    padding: 15px 16px;
  }

  #cb-page .cb-form-grid { gap: 20px; }

  #cb-page .cb-quote-btn,
  #cb-page .cb-submit-btn {
    min-height: 58px;
    font-size: 15.5px;
  }

  #cb-page .cb-side-card { padding: 20px 18px; }
  #cb-page .cb-side-card h3 { font-size: 19px; }
}
