/* ============================================
   Company Booking Page Styles
   Fixes: icon alignment, form spacing, 
   booking summary layout, checkbox alignment
   
   Uses var(--accent-gold) from theme.css for
   consistent gold accent across all pages.
   ============================================ */

/* Geist — public-site (limohawk.com) booking-form font, used by the
   .cb-public-cream opt-in skin (end of file). @import must lead the
   stylesheet — only comments may precede it. */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');

/* Section Headers — icon inline with heading */
.section-header-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.section-header-premium h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary, #e8e0d0);
}

.section-header-premium i {
  font-size: 1rem;
  color: var(--accent-gold, #c2a262);
  flex-shrink: 0;
}

/* Card Title Container — icon inline with step heading */
.card-title-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title-container i {
  font-size: 1.2rem;
  color: var(--accent-gold, #c2a262);
  flex-shrink: 0;
}

.card-title-container h2 {
  margin: 0;
}

/* Premium Card Header */
.premium-card-header {
  margin-bottom: 20px;
}

.premium-card-header p {
  margin: 6px 0 0 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Form Sections — spacing and separation */
.form-section-premium {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-section-premium:last-of-type {
  border-bottom: none;
  margin-bottom: 12px;
}

/* Tighter form group spacing within company booking sections */
.form-section-premium .premium-form-group {
  margin-bottom: 16px !important;
}

/* Section description text */
.section-description-premium {
  margin: 4px 0 12px 0;
  font-size: 0.88rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* Premium Label */
.premium-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary, #e8e0d0);
  margin-bottom: 8px;
}

.luggage-info {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
  font-size: 0.85em;
}

/* Helper text under inputs */
.helper-text-premium {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.8rem;
  opacity: 0.6;
}

.helper-text-premium.secondary {
  color: var(--text-primary, #e8e0d0);
}

.helper-text-premium.info {
  color: var(--accent-gold, #c2a262);
  opacity: 0.8;
}

small.helper-text-premium {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Date/time input — white calendar icon */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* Premium Grid */
.premium-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .premium-grid[style*="--grid-cols: 2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-grid[style*="--grid-cols: 3"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .premium-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Reduce excessive form group margin inside grids */
.premium-grid .premium-form-group {
  margin-bottom: 0 !important;
}

/* NOTE: Service button styles (.premium-btn-group .service-btn) are defined
   in components.css using var(--accent-gold). Do NOT duplicate here. */

/* Form Actions */
.form-actions-premium {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.form-actions-premium .full-width {
  width: 100%;
}

/* Checkbox Group — Terms & Conditions */
.premium-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.premium-checkbox-group .premium-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent-gold, #c2a262);
  cursor: pointer;
}

.premium-checkbox-group .premium-label-checkbox {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-primary, #e8e0d0);
  opacity: 0.85;
  cursor: pointer;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.premium-checkbox-group .premium-label-checkbox em {
  color: var(--accent-gold, #c2a262);
  font-style: italic;
}

/* Cost Summary */
.cost-summary-premium {
  background: rgba(194, 162, 98, 0.08);
  border: 1px solid rgba(194, 162, 98, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
  color: var(--accent-gold, #c2a262);
  font-size: 0.9rem;
}

/* Premium Spacing */
.premium-spacing {
  max-width: 900px;
  margin: 0 auto;
}

.premium-spacing-top {
  margin-top: 16px;
}

/* ============================================
   Booking Summary — Step 3 bottom section
   ============================================ */

.booking-summary-premium {
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(194, 162, 98, 0.2);
  background: rgba(0, 0, 0, 0.15);
}

.booking-summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(194, 162, 98, 0.08);
  border-bottom: 1px solid rgba(194, 162, 98, 0.15);
}

.booking-summary-header i {
  color: var(--accent-gold, #c2a262);
  font-size: 1.1rem;
}

.booking-summary-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #e8e0d0);
}

.booking-summary-body {
  padding: 0;
}

/* Summary Sections */
.summary-section {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-section:last-child {
  border-bottom: none;
}

.summary-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-gold, #c2a262);
}

.summary-section-title i {
  font-size: 0.85rem;
}

/* Summary Key-Value Rows */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.summary-row .summary-label {
  color: var(--text-primary, #e8e0d0);
  opacity: 0.65;
  flex-shrink: 0;
  margin-right: 12px;
}

.summary-row .summary-value {
  color: var(--text-primary, #e8e0d0);
  font-weight: 500;
  text-align: right;
}

/* Pricing Section — highlighted */
.summary-section.pricing {
  background: rgba(194, 162, 98, 0.05);
}

.summary-row.commission {
  opacity: 0.75;
  font-size: 0.84rem;
}

.summary-row.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--accent-gold, #c2a262);
  font-size: 1.1rem;
  font-weight: 700;
}

.summary-row.total .summary-label,
.summary-row.total .summary-value {
  color: var(--accent-gold, #c2a262);
}

/* Full-breakdown expander (issue #410) — B2B accounts reveal the operator +
   commission build-up on demand; collapsed by default so the default view stays
   Fare / VAT / Total. */
.pricing-breakdown-expander {
  margin-top: 10px;
  border-top: 1px solid rgba(23, 55, 40, 0.1);
  padding-top: 8px;
}

.pricing-breakdown-expander > summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 0.8;
  color: var(--accent-gold, #c2a262);
  padding: 4px 0;
  user-select: none;
}

.pricing-breakdown-expander > summary::-webkit-details-marker {
  display: none;
}

.pricing-breakdown-expander > summary > i {
  transition: transform 0.15s ease;
  margin-right: 6px;
  font-size: 0.75rem;
}

.pricing-breakdown-expander[open] > summary > i {
  transform: rotate(90deg);
}

.pricing-breakdown-expander .summary-row {
  font-size: 0.84rem;
  opacity: 0.85;
}

/* Sub-rows: indented breakdown lines (e.g. airport pickup + dropoff split) */
.summary-row.summary-sub-row {
  font-size: 0.85em;
  opacity: 0.75;
  padding-left: 20px;
}

/* Operators Grid — Step 2 vehicle cards */
.operators-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Loading overlay */
.premium-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.premium-loading-content {
  text-align: center;
  color: var(--text-primary, #e8e0d0);
}

.premium-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(194, 162, 98, 0.2);
  border-top-color: var(--accent-gold, #c2a262);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

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

/* ===========================================================================
   .cb-public-cream — opt-in "public-site cream card" skin for booking forms.
   ===========================================================================
   Matches the public limohawk.com "Book your ride" widget (a LIGHT cream card:
   cream panel #f5f0e6, white fields, dark-green #173728 text, gold accents,
   floating on the dark app page). Applied ONLY to the elements that carry the
   `.cb-public-cream` class (the booking fragment's #booking-content), so it
   never leaks to the other pages that share the #booking-content id.

   USED BY: company-booking.html, b2c-booking.html (add `cb-public-cream` to the
   #booking-content div). The .page-header is deliberately NOT skinned, so the
   page heading keeps the app's default light-on-dark styling.

   See patterns/scoped-page-restyle.md for the full rationale + gotchas
   (white-on-cream hazards, the full-width time-slot notice, etc.).
   =========================================================================== */

.cb-public-cream {
    --accent-gold: #C7A05A;
    --accent-gold-hover: #D9AF61;
    font-family: 'Geist', 'Outfit', sans-serif;
    /* Card panels → CREAM (public-site light surface); .premium-card reads var(--secondary-bg). */
    --secondary-bg: #f5f0e6;
    --glass-border: rgba(199, 160, 90, 0.30);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
    /* Fields → white, dark-green text. */
    --input-bg: #ffffff;
    --input-tint-bg: #ffffff;
    --input-placeholder: rgba(23, 55, 40, 0.45);
    /* Text → dark green on the cream card (flips the dark-theme white text). */
    --text-main: #173728;
    --text-primary: #173728;
    --text-secondary: #4a5a54;
    color: #173728;
}

/* The booking column is a SOLID CREAM surface on the operator wave page — it must
   NEVER read as transparent. Set the cream EXPLICITLY (not via the --secondary-bg
   variable cascade, which falls back to the dark glass value when it doesn't
   resolve) on both the column wrapper and its cards. */
.cb-public-cream,
.cb-public-cream .premium-card {
    background-color: #f5f0e6 !important;
}

/* The cream column has rounded corners (the inner cards are rounded too).
   No overflow:hidden — it would clip the address-autocomplete / date dropdowns. */
.cb-public-cream {
    border-radius: 16px;
}

/* Headings / body text inside the cream cards → dark green. */
.cb-public-cream .premium-card,
.cb-public-cream .premium-card-header h2,
.cb-public-cream .card-title-container h2,
.cb-public-cream .premium-card-header p,
.cb-public-cream .section-header-premium h3,
.cb-public-cream .premium-label,
.cb-public-cream .helper-text-premium,
.cb-public-cream .section-description-premium {
    color: #173728;
}

/* Section divider hairlines were white-on-dark; make them dark-on-cream. */
.cb-public-cream .form-section-premium {
    border-bottom-color: rgba(23, 55, 40, 0.12) !important;
}

/* Fields: white bg + dark-green text + gold border. */
.cb-public-cream .premium-input {
    background-color: #ffffff !important;
    color: #173728 !important;
    border: 1px solid rgba(199, 160, 90, 0.55);
}
.cb-public-cream .premium-input::placeholder { color: rgba(23, 55, 40, 0.45); }
.cb-public-cream .premium-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(199, 160, 90, 0.25);
}
/* Dark dropdown arrow on the white <select> (base SVG is gold); white bg kept. */
.cb-public-cream select.premium-input,
.cb-public-cream .premium-form select.premium-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23173728' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 16px) center !important;
}
/* Dark calendar icon on white date/time inputs (base CSS inverts it to white). */
.cb-public-cream input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.cb-public-cream input[type="date"]::-webkit-calendar-picker-indicator,
.cb-public-cream input[type="time"]::-webkit-calendar-picker-indicator {
    filter: none !important;
}

/* Airport-terminal autocomplete (js/airport-search.js) — a separate widget, not
   a .premium-input, so it misses the white-field treatment and renders dark on
   the cream card. Bring it + its dropdown in line. */
.cb-public-cream .airport-search-input {
    background-color: #ffffff !important;
    color: #173728 !important;
    border: 1px solid rgba(199, 160, 90, 0.55) !important;
}
.cb-public-cream .airport-search-input::placeholder { color: rgba(23, 55, 40, 0.45); }
.cb-public-cream .airport-search-icon { color: rgba(23, 55, 40, 0.5); }
.cb-public-cream .airport-search-list {
    background: #ffffff;
    border: 1px solid rgba(199, 160, 90, 0.30);
    color: #173728;
}
.cb-public-cream .airport-search-item,
.cb-public-cream .airport-main-info,
.cb-public-cream .airport-city { color: #173728; }
.cb-public-cream .airport-search-item:hover,
.cb-public-cream .airport-search-item.active { background: rgba(199, 160, 90, 0.15); }

/* Intl phone trigger (b2c uses it) follows the same white/dark language. */
.cb-public-cream .intl-phone-trigger {
    background-color: #ffffff !important;
    color: #173728 !important;
}

/* Inactive service-type + secondary buttons: white pill, gold border, dark text. */
.cb-public-cream .btn-premium.service-btn,
.cb-public-cream .btn-premium.secondary {
    background: #ffffff;
    color: #173728;
    border: 1px solid rgba(199, 160, 90, 0.45);
}
.cb-public-cream .btn-premium.service-btn i { color: #173728; }
/* Active service button + primary/success CTAs: gold fill, dark text. */
.cb-public-cream .btn-premium.service-btn.active {
    background: var(--accent-gold);
    color: #173728;
    border-color: var(--accent-gold);
}
.cb-public-cream .btn-premium.service-btn.active i { color: #173728; }
.cb-public-cream .btn-premium.primary,
.cb-public-cream .btn-premium.success {
    color: #173728;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* The "earliest available time slot" notice — calm amber info line, full-width
   (placed below the date/time grid in markup so it reads on one row). */
.cb-public-cream #booking-datetime-hint {
    color: #9a6a1c;
    font-weight: 500;
}

/* ===========================================================================
   #348 — Cream-skin contrast fixes (legibility sweep, Faiz 2026-06-16).
   The booking flow wears `.cb-public-cream` (a LIGHT/cream card), but several
   sub-components were styled for the DARK app card: gold TEXT (`--accent-gold`
   = #C7A05A on cream ≈ illegible "yellow"), the results service-level badge,
   and the JS/inline-white payment-success block. These overrides re-state each
   surface in legible dark-on-cream values (deep amber #8a5a12 for gold text,
   dark-green #173728 for body). Scoped to `.cb-public-cream` so the dark-card
   surfaces that share the same classes are untouched (the "no regression to
   other themed surfaces" criterion).
   =========================================================================== */

/* --- #351: remove the empty left "icon" indent on form fields. ---
   style.css (loaded by the shell, NOT in the deploy bundle so it can't be
   edited there) sets `.premium-form .premium-input { padding: 14px 20px 14px
   60px !important }` — a 60px left pad reserving space for a leading icon that
   the booking form doesn't have, so every field + textarea (Full Name, Email,
   Booster Seats, Special Requirements, …) shows a big blank indent with the
   text pushed right. Override it back to symmetric padding on the cream
   booking surface. Higher specificity (.cb-public-cream .premium-form
   .premium-input = 0,3,0) + !important beats the style.css rule (0,2,0). */
.cb-public-cream .premium-form .premium-input,
.cb-public-cream .premium-form textarea.premium-input {
    padding: 12px 16px !important;
}
/* selects keep room on the RIGHT for the dropdown chevron. */
.cb-public-cream .premium-form select.premium-input {
    padding: 12px 40px 12px 16px !important;
}

/* --- Step 3 Booking Summary: gold-on-cream "yellow" → legible deep amber. --- */
.cb-public-cream .booking-summary-premium {
    background: #fffdf8;
    border-color: rgba(199, 160, 90, 0.35);
}
.cb-public-cream .booking-summary-header {
    background: rgba(199, 160, 90, 0.12);
    border-bottom-color: rgba(199, 160, 90, 0.25);
}
.cb-public-cream .booking-summary-header i { color: #8a5a12; }
.cb-public-cream .booking-summary-header h4 { color: #173728; }
.cb-public-cream .summary-section { border-bottom-color: rgba(23, 55, 40, 0.10); }
.cb-public-cream .summary-section-title { color: #8a5a12; }
.cb-public-cream .summary-section-title i { color: #8a5a12; }
.cb-public-cream .summary-row .summary-label { color: #173728; opacity: 0.75; }
.cb-public-cream .summary-row .summary-value { color: #173728; }
.cb-public-cream .summary-section.pricing { background: rgba(199, 160, 90, 0.06); }
.cb-public-cream .summary-row.total { border-top-color: #8a5a12; }
.cb-public-cream .summary-row.total .summary-label,
.cb-public-cream .summary-row.total .summary-value { color: #8a5a12; }

/* --- Step 2 results cards: match limohawk.com's vehicle cards (dark-green
   translucent panel + gold gradient border + cream/gold text), NOT white
   panels that clash with the cream page. Colours from limohawk-web
   src/app/limohawk-com/colors.ts (darkGreen #173728, gold #C7A05A, cream
   #f5f0e6). Opacity is raised vs limohawk.com's 0.4 because our page behind
   the card is cream, not dark, so the dark fill needs to be near-opaque to
   read. --- */
.cb-public-cream .operator-card.quote-card-horizontal {
    position: relative;
    border: none;
    background: linear-gradient(135deg, rgba(13, 23, 18, 0.94) 1%, rgba(12, 27, 20, 0.94) 100%);
    color: #f5f0e6;
}
/* Signature gold gradient border (masked) — the limohawk.com card look. */
.cb-public-cream .operator-card.quote-card-horizontal::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(rgb(50, 79, 66) 0%, rgb(199, 160, 90) 47%, rgb(19, 23, 22) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}
.cb-public-cream .operator-card.quote-card-horizontal:hover {
    box-shadow: 0 6px 20px rgba(13, 23, 18, 0.25);
}
.cb-public-cream .quote-card-top h4 { color: #f5f0e6; }
.cb-public-cream .quote-card-top .service-level-badge {
    background: rgba(199, 160, 90, 0.18);
    color: #C7A05A;
}
.cb-public-cream .quote-card-top .vehicle-capacity { color: #f5f0e6; opacity: 0.6; }
.cb-public-cream .amenities-toggle { color: #C7A05A; opacity: 0.9; }
.cb-public-cream .amenities-included-label { color: #C7A05A; opacity: 0.9; }
.cb-public-cream .amenity-item { color: #f5f0e6; opacity: 0.7; }
.cb-public-cream .amenity-item i { color: #C7A05A; }
.cb-public-cream .quote-card-bottom .price { color: #C7A05A; }
.cb-public-cream .quote-card-bottom .price .price-vat-suffix,
.cb-public-cream .quote-card-bottom .price-label { color: rgba(245, 240, 230, 0.5); }
.cb-public-cream .quote-card-horizontal .vehicle-image-container { background: #1a1a1a; }
.cb-public-cream .quote-card-horizontal .vehicle-image-fallback { color: #f5f0e6; opacity: 0.25; }
/* BOOK ME stays the gold pill with dark text (limohawk.com CTA). */
.cb-public-cream .quote-card-bottom .select-quote-btn {
    background: #C7A05A;
    color: #173728;
}

/* --- Step 4 Payment Successful panel: white-on-cream → dark-on-cream. ---
   The JS-injected confirmation rows are token-routed (var(--text-main) etc.)
   in company-booking.js; this gives the panel itself a readable surface. */
.cb-public-cream #booking-confirmation-details {
    background: rgba(23, 55, 40, 0.05) !important;
    border: 1px solid rgba(199, 160, 90, 0.25);
}
.cb-public-cream #payment-success p { color: var(--text-secondary); }

/* --- #359: Step-1 date + hour/minute pickup picker row. --- */
.datetime-picker-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.datetime-picker-row .datetime-date {
    flex: 1 1 150px;
    min-width: 0;
}
/* #349: day / month / year dropdowns (locale-proof UK date order). Sized SNUG to
   their content (a single-digit day shouldn't sit in a huge box) — proportional,
   not stretched: day/year/hour/minute narrow, month wider. Wraps on mobile. */
.datetime-picker-row .datetime-date-part {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding-right: 30px !important;   /* room for the select chevron */
}
.datetime-picker-row .datetime-sep { margin: 0 2px; }
.datetime-picker-row .datetime-time {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding-right: 34px !important;   /* room for the select chevron */
}

/* Airport direction — compact button group (deliberately SMALLER than the big
   Service Type cards above it: this is a sub-choice, so it sits lower in the
   visual hierarchy). Drives the hidden #airport-direction select. */
.airport-direction-group { display: flex; gap: 8px; flex-wrap: wrap; }
.airport-direction-group .airport-dir-btn {
    flex: 1 1 0;
    min-width: 90px;
    padding: 11px 14px;
    border: 1px solid rgba(23, 55, 40, 0.18);
    border-radius: 8px;
    background: #fff;
    color: #173728;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.airport-direction-group .airport-dir-btn:hover { border-color: var(--accent-gold, #c2a262); }
.airport-direction-group .airport-dir-btn.active {
    background: var(--accent-gold, #c2a262);
    border-color: var(--accent-gold, #c2a262);
    color: #173728;
    font-weight: 600;
}
.datetime-picker-row .datetime-colon {
    font-weight: 600;
    opacity: 0.6;
    margin: 0 -2px;
}
.cb-public-cream .datetime-picker-row .datetime-colon { color: #173728; }

/* The date+time picker needs the full card width — in the 2-col Booking-Time
   grid its column is only ~50% wide, so the 7 day/month/year + hour:minute
   controls wrap and the minute select drops to a 2nd row. Span both columns so
   they all sit on one row; the (hourly-only) Duration field flows to the next
   row. Still wraps gracefully under 768px where the grid collapses to 1 col. */
@media (min-width: 768px) {
  .premium-grid .premium-form-group.cb-datetime-fullwidth { grid-column: 1 / -1; }
}

/* Breathing room between the big Service-Type buttons and the Airport Location
   field below them — the label was sitting too tight under the button row.
   padding-top (not margin-top) so it ADDS to the button group's margin rather
   than collapsing into it; a clear, deliberate gap. */
#airport-direction-row { padding-top: 32px; }

/* No section divider lines on the cream booking page — clean whitespace
   separation between sections instead of the faint rules. */
.cb-public-cream .form-section-premium { border-bottom: none; }

/* Company-booking page subtitle: the global .page-header-text p caps width at
   600px, which wraps this one-sentence subtitle onto a 2nd row on desktop.
   Scope a wider cap to this page only so it stays on one line (wraps on mobile). */
.cb-page-header .page-header-text p { max-width: 760px; }
