/* ═══════════════════════════════════════════════════════════
   SWINGO SINTRA LP — Custom CSS (complements Tailwind)
   Brand font + component primitives + animations
   ═══════════════════════════════════════════════════════════ */

/* ────── Authentic Sans Pro (Swingo brand font, hosted on Webflow CDN) */
@font-face {
  font-family: 'Authentic Sans';
  src: url('https://cdn.prod.website-files.com/6818e494945bdde30e92edb9/6818e494945bdde30e92edd8_AUTHENTICSans-90.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Authentic Sans';
  src: url('https://cdn.prod.website-files.com/6818e494945bdde30e92edb9/6818e494945bdde30e92edc5_AUTHENTICSans-130.woff2') format('woff2');
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

/* ────── Base */
:root {
  --brick:       #bf6826;
  --brick-dark:  #8d4711;
  --dark:        #1b3d48;
  --egg-light:   #f5f2e9;
  --mustard:     #dab162;
}

html { -webkit-text-size-adjust: 100%; }
/* Native smooth-scroll fallback (when Lenis hasn't booted or is paused) */
html:not(.lenis) { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* iOS safe-area for sticky CTA */
.safe-bottom { padding-bottom: max(0.625rem, env(safe-area-inset-bottom)); }

/* ────── CTA buttons */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brick);
  color: #fff;
  font-weight: 700;
  padding: 0.95rem 1.625rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  transition: transform .25s cubic-bezier(.16,1,.3,1),
              background-color .2s ease;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.cta-primary:hover {
  background: var(--brick-dark);
  transform: translateY(-2px);
}
.cta-primary:active { transform: translateY(0) scale(0.98); }
.cta-primary svg { transition: transform .25s ease; }
.cta-primary:hover svg { transform: translateX(3px); }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--brick);
  border: 2px solid var(--brick);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  transition: all .2s ease;
  text-decoration: none;
}
.cta-secondary:hover { background: var(--brick); color: #fff; }

/* Dark-section secondary */
section.bg-swingo-dark .cta-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
section.bg-swingo-dark .cta-secondary:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

/* ────── Feature cards (Why this tour) */
.card-feature {
  background: #fff;
  border: 1px solid rgba(27, 61, 72, 0.06);
  border-radius: 1.75rem;
  padding: 1.875rem;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1),
              border-color .35s ease,
              box-shadow .35s ease;
  box-shadow: 0 1px 2px rgba(22, 21, 22, 0.04);
}
.card-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 104, 38, 0.18);
  box-shadow: 0 24px 48px -20px rgba(22, 21, 22, 0.18);
}
.card-feature .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--egg-light);
  color: var(--brick);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
}
.card-feature .icon-wrap svg { width: 24px; height: 24px; }
.card-feature h3 { font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.375rem; color: var(--dark); }
.card-feature p { color: rgba(27, 61, 72, 0.7); font-size: 0.9rem; line-height: 1.55; }

/* ────── Highlight cards (top 3) */
.highlight-card {
  background: #fff;
  border-radius: 1.75rem;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1),
              box-shadow .4s ease;
  box-shadow: 0 4px 24px -12px rgba(22, 21, 22, 0.1);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(22, 21, 22, 0.25);
}
.highlight-card img {
  transition: transform .6s ease;
}
.highlight-card:hover img {
  transform: scale(1.04);
}
.badge-unesco {
  display: inline-block;
  background: var(--mustard);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* ────── Timeline */
.timeline { position: relative; list-style: none; padding: 0; margin: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 4.25rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--brick) 0%, var(--mustard) 50%, var(--egg-light) 100%);
  opacity: 0.5;
}
@media (max-width: 640px) {
  .timeline::before { left: 1.5rem; }
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  padding: 0.5rem 0 1.75rem;
}
@media (max-width: 640px) {
  .timeline li { grid-template-columns: 3rem 1fr; gap: 1rem; }
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 3.5rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brick);
  z-index: 1;
}
@media (max-width: 640px) {
  .timeline li::before { left: 0.75rem; }
}
.timeline .t-time {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brick);
  padding-top: 0.5rem;
}
@media (max-width: 640px) {
  .timeline .t-time { font-size: 0.875rem; padding-top: 0.6rem; }
}
.timeline .t-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}
.timeline .t-dur {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(27, 61, 72, 0.55);
  letter-spacing: 0.01em;
}
.timeline .opt { font-size: 0.95rem; font-weight: 500; color: rgba(27, 61, 72, 0.5); }
.timeline .t-content p { color: rgba(27, 61, 72, 0.75); line-height: 1.6; }

/* ────── Included list (dark section) */
.incl {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.92);
}
.incl::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mustard);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231b3d48'><path d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ────── Mini check */
.check-mini {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brick);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ────── Travellers' photos (TripAdvisor gallery, masonry via CSS columns) */
.photo-grid {
  column-count: 4;
  column-gap: 1.25rem;
}
@media (max-width: 1023px) { .photo-grid { column-count: 3; column-gap: 1rem; } }
@media (max-width: 639px)  { .photo-grid { column-count: 2; column-gap: 0.75rem; } }

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  margin: 0 0 1.25rem;
  break-inside: avoid;
  display: block;
  box-shadow: 0 4px 24px -12px rgba(22, 21, 22, 0.18);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
@media (max-width: 1023px) { .photo-card { margin-bottom: 1rem; } }
@media (max-width: 639px)  { .photo-card { margin-bottom: 0.75rem; border-radius: 1.25rem; } }

.photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(22, 21, 22, 0.28);
}
.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.photo-card:hover img { transform: scale(1.06); }

.photo-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1.125rem;
  background: linear-gradient(to top,
              rgba(0, 0, 0, 0.82) 0%,
              rgba(0, 0, 0, 0.55) 40%,
              transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.photo-card .stars {
  color: var(--mustard);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.photo-card .photo-name {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
}
.photo-card .photo-date {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.3;
}

/* ────── Testimonials */
.testimonial {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  margin: 0;
  box-shadow: 0 4px 24px -12px rgba(22, 21, 22, 0.12);
  border: 1px solid rgba(27, 61, 72, 0.04);
  display: flex;
  flex-direction: column;
}
.testimonial .stars {
  color: var(--mustard);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.testimonial blockquote {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--dark);
  margin: 0 0 1rem;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
  padding-top: 1rem;
  line-height: 1.3;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--egg-light);
  box-shadow: 0 0 0 2px #fff,
              0 2px 6px rgba(22, 21, 22, 0.12);
}
.testimonial figcaption strong {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark);
}
.testimonial figcaption span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(27, 61, 72, 0.55);
}

/* ────── Form */
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(27, 61, 72, 0.7);
  margin-bottom: 0.375rem;
}
.form-input {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(27, 61, 72, 0.15);
  border-radius: 0.625rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.9375rem;
  color: var(--dark);
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
  font-family: inherit;
}
.form-input:focus {
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15);
}
.form-input::placeholder { color: rgba(27, 61, 72, 0.4); }

/* ────── FAQ */
.faq-item {
  background: var(--egg-light);
  border: 1px solid rgba(27, 61, 72, 0.05);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: background-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  background: #fff;
  box-shadow: 0 12px 28px -16px rgba(22, 21, 22, 0.15);
}
.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--brick);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s ease, background-color .2s ease;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--brick);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: rgba(27, 61, 72, 0.78);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ────── Sticky CTA on scroll */
#sticky-cta.show { transform: translateY(0); }

/* ════════════════════════════════════════════════════════════════════
   HERO QUOTE CARD — first contact, must look premium and be live
   ════════════════════════════════════════════════════════════════════ */
.hero-quote-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  width: 100%;
  box-shadow: 0 24px 60px -20px rgba(22, 21, 22, 0.35),
              0 8px 16px -8px rgba(22, 21, 22, 0.15);
}
@media (min-width: 1024px) {
  .hero-quote-card {
    width: 420px;
    margin-left: auto;
    padding: 1.75rem;
  }
}

.quote-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
}
.quote-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--dark);
  line-height: 1.2;
}
.quote-rating {
  font-size: 0.75rem;
  margin-top: 0.375rem;
  color: rgba(27, 61, 72, 0.7);
}
.quote-price { text-align: right; flex-shrink: 0; }
.quote-price-from {
  font-size: 0.7rem;
  color: rgba(27, 61, 72, 0.55);
  text-transform: lowercase;
}
.quote-price-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin: 0.125rem 0;
}
.quote-price-meta {
  font-size: 0.6875rem;
  color: rgba(27, 61, 72, 0.55);
}

/* Form */
.quote-form { display: flex; flex-direction: column; gap: 0.875rem; }
.quote-field { display: flex; flex-direction: column; gap: 0.375rem; }
.quote-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(27, 61, 72, 0.75);
}
.quote-input {
  width: 100%;
  border: 1.5px solid rgba(27, 61, 72, 0.12);
  border-radius: 0.625rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.9375rem;
  color: var(--dark);
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-input:focus {
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15);
}

/* Tour selector (segmented radio cards) */
.quote-tour-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.quote-tour-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.75rem;
  border: 1.5px solid rgba(27, 61, 72, 0.1);
  border-radius: 0.75rem;
  cursor: pointer;
  text-align: center;
  transition: all .15s ease;
  position: relative;
  background: #fff;
}
.quote-tour-card input { position: absolute; opacity: 0; pointer-events: none; }
.quote-tour-card:hover { border-color: rgba(191, 104, 38, 0.3); }
.quote-tour-card:has(input:checked) {
  border-color: var(--brick);
  background: rgba(191, 104, 38, 0.04);
}
.quote-tour-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark);
}
.quote-tour-meta {
  font-size: 0.6875rem;
  color: rgba(27, 61, 72, 0.55);
}

/* Mini steppers */
.quote-pax {
  border: 1.5px solid rgba(27, 61, 72, 0.1);
  border-radius: 0.75rem;
  padding: 0.25rem 0.875rem;
}
.quote-pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 0.75rem;
}
.quote-pax-row + .quote-pax-row {
  border-top: 1px solid rgba(27, 61, 72, 0.06);
}
.quote-pax-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}
.quote-pax-meta {
  font-size: 0.6875rem;
  color: var(--sage, #a1b081);
  font-weight: 600;
  margin-left: 0.375rem;
}
.quote-pax-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.quote-pax-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--brick);
  background: #fff;
  color: var(--brick);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: all .12s ease;
}
.quote-pax-btn:hover:not([disabled]) {
  background: var(--brick);
  color: #fff;
}
.quote-pax-btn[disabled] {
  border-color: rgba(27, 61, 72, 0.12);
  color: rgba(27, 61, 72, 0.25);
  cursor: not-allowed;
}
.quote-pax-count {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}

/* Trust signals */
.quote-trust {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0.375rem 0 0;
  font-size: 0.7rem;
  color: rgba(27, 61, 72, 0.65);
}
.quote-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}
@media (max-width: 380px) {
  .quote-trust { flex-direction: column; gap: 0.25rem; }
}

/* ────── Hero text shadow (boosts legibility over image) */
header h1,
header > div > div > p,
header .text-white {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5),
               0 1px 3px rgba(0, 0, 0, 0.3);
}
header h1 { text-shadow: 0 3px 32px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.4); }
/* Reset for the quote card on the right which sits on white bg */
header aside .text-white,
header aside h1,
header aside p { text-shadow: none; }

/* ────── Eyebrow label (simple, no leading dash) */
.eyebrow {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  margin-bottom: 0.875rem;
  color: var(--brick);
}
.eyebrow-brick   { color: var(--brick); }
.eyebrow-mustard { color: var(--mustard); }
.eyebrow-muted   { color: rgba(27, 61, 72, 0.55); }

/* ────── Urgency dot (finite pulse — 4 cycles then stops) */
.urgency-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mustard);
  box-shadow: 0 0 0 0 rgba(218, 177, 98, 0.7);
  animation: urgency-pulse 1.6s ease-out 4;
}
@keyframes urgency-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(218, 177, 98, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(218, 177, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(218, 177, 98, 0); }
}

/* ═══════════════════════════════════════════════════════════
   BOOKING WIZARD MODAL
   ═══════════════════════════════════════════════════════════ */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.booking-modal.hidden { display: none; }

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 21, 22, 0.6);
  animation: fade .25s ease-out;
}
/* Optional blur — enable with .booking-modal.with-blur if needed */
.booking-modal.with-blur .booking-backdrop {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking-panel {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -20px rgba(22, 21, 22, 0.35);
  animation: pop .35s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
@media (min-width: 640px) {
  .booking-panel {
    max-height: min(90vh, 820px);
    border-radius: 1.75rem;
    margin: 1rem;
  }
  .booking-modal { padding: 0.5rem; }
}
@media (max-width: 639px) {
  .booking-panel { height: 100dvh; max-height: 100dvh; }
}

@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes pop {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ────── Header */
.booking-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background: #fff;
  position: sticky; top: 0; z-index: 1;
}
.booking-progress {
  display: flex;
  gap: 0.375rem;
}
.booking-progress-step {
  flex: 1;
  height: 4px;
  background: rgba(27, 61, 72, 0.12);
  border-radius: 999px;
  transition: background-color .3s ease;
}
.booking-progress-step.active { background: var(--brick); }
.booking-progress-step.done   { background: var(--brick); }

.booking-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking-step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(27, 61, 72, 0.6);
}
.booking-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(27, 61, 72, 0.06);
  border: none;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease;
}
.booking-close:hover { background: rgba(27, 61, 72, 0.12); }

/* ────── Body & steps */
.booking-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 639px) { .booking-body { padding: 1.25rem; } }

.booking-step { animation: slide-in .35s ease-out; }
@keyframes slide-in {
  from { opacity: 0; transform: translateX(15px); }
  to   { opacity: 1; transform: translateX(0); }
}
.booking-step[hidden] { display: none !important; }

.booking-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.375rem;
  line-height: 1.15;
}
.booking-sub {
  color: rgba(27, 61, 72, 0.65);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}
@media (max-width: 480px) {
  .booking-row { grid-template-columns: 1fr; }
}
.booking-field { margin-bottom: 0.875rem; }

.booking-hint {
  background: var(--egg-light);
  border-radius: 0.625rem;
  padding: 0.875rem;
  font-size: 0.875rem;
  color: rgba(27, 61, 72, 0.7);
  text-align: center;
}

/* ────── Pax steppers (Adult / Child / Infant) */
.pax-steppers {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border: 1.5px solid rgba(27, 61, 72, 0.1);
  border-radius: 1.125rem;
  padding: 1rem 1.25rem;
  background: #fff;
}
.pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
}
.pax-row + .pax-row {
  border-top: 1px solid rgba(27, 61, 72, 0.08);
}
.pax-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pax-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--dark);
}
.pax-meta {
  font-size: 0.75rem;
  color: rgba(27, 61, 72, 0.55);
}
.pax-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pax-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--brick);
  background: #fff;
  color: var(--brick);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  padding: 0;
  user-select: none;
}
.pax-btn:hover:not([disabled]) {
  background: var(--brick);
  color: #fff;
}
.pax-btn:active:not([disabled]) { transform: scale(0.95); }
.pax-btn[disabled] {
  border-color: rgba(27, 61, 72, 0.15);
  color: rgba(27, 61, 72, 0.3);
  cursor: not-allowed;
}
.pax-count {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}

/* ────── Tour pick cards */
.booking-tour-pick {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 480px) {
  .booking-tour-pick { grid-template-columns: 1fr; }
}
.tour-pick-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem;
  border: 2px solid rgba(27, 61, 72, 0.08);
  border-radius: 1.125rem;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
}
.tour-pick-card input { position: absolute; opacity: 0; pointer-events: none; }
.tour-pick-card:hover { border-color: rgba(191, 104, 38, 0.4); }
.tour-pick-card:has(input:checked) { border-color: var(--brick); background: rgba(191, 104, 38, 0.04); }
.tour-pick-title { font-weight: 700; font-size: 0.9375rem; color: var(--dark); }
.tour-pick-meta { font-size: 0.75rem; color: rgba(27, 61, 72, 0.6); }
.tour-pick-price { margin-left: auto; font-weight: 700; color: var(--brick); font-size: 0.95rem; }

/* ────── Add-ons list */
.booking-addons { margin-top: 1.25rem; }
.booking-addons:empty { display: none; }
.booking-addons-list { display: grid; gap: 0.5rem; }
.addon-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem;
  border: 2px solid rgba(27, 61, 72, 0.08);
  border-radius: 1.125rem;
  cursor: pointer;
  transition: all .2s ease;
  background: #fff;
  position: relative;
}
.addon-card input { position: absolute; opacity: 0; pointer-events: none; }
.addon-card:hover { border-color: rgba(191, 104, 38, 0.4); }
.addon-card:has(input:checked) {
  border-color: var(--brick);
  background: rgba(191, 104, 38, 0.04);
}
.addon-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(27, 61, 72, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all .15s ease;
}
.addon-card:has(input:checked) .addon-check {
  background: var(--brick);
  border-color: var(--brick);
}
.addon-check::after {
  content: '✓';
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity .15s ease;
}
.addon-card:has(input:checked) .addon-check::after { opacity: 1; }
.addon-content { flex: 1; min-width: 0; }
.addon-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.addon-recommended {
  display: inline-block;
  background: rgba(218, 177, 98, 0.2);
  color: #7a5a1f;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
}
.addon-desc {
  font-size: 0.8125rem;
  color: rgba(27, 61, 72, 0.65);
  margin-top: 2px;
}
.addon-price {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--brick);
  font-size: 0.9375rem;
  text-align: right;
}
.addon-price-free {
  color: var(--sage, #a1b081);
  font-size: 0.8125rem;
}

/* ────── Slots list */
.booking-slots { margin-top: 1.25rem; }
.booking-slots-loading {
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  color: rgba(27, 61, 72, 0.6);
  font-size: 0.875rem;
  gap: 0.5rem;
}
.booking-slots-loading::before {
  content: '';
  width: 18px; height: 18px;
  border: 2px solid rgba(27,61,72,0.15);
  border-top-color: var(--brick);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.booking-slots-list { display: grid; gap: 0.5rem; }
.slot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  border: 2px solid rgba(27, 61, 72, 0.08);
  border-radius: 1.125rem;
  cursor: pointer;
  background: #fff;
  transition: all .2s ease;
}
.slot-card:hover { border-color: rgba(191, 104, 38, 0.4); }
.slot-card.selected { border-color: var(--brick); background: rgba(191, 104, 38, 0.06); }
.slot-time { font-weight: 700; font-size: 1rem; color: var(--dark); }
.slot-meta { font-size: 0.75rem; color: rgba(27, 61, 72, 0.6); margin-top: 2px; }
.slot-price { font-weight: 700; color: var(--brick); }
.slot-stock-low {
  display: inline-block;
  background: rgba(191, 104, 38, 0.1);
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.5rem;
}
.booking-slots-empty {
  text-align: center;
  padding: 1.5rem;
  color: rgba(27, 61, 72, 0.55);
  font-size: 0.875rem;
}

/* ────── Checkbox */
.booking-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(27, 61, 72, 0.75);
  cursor: pointer;
}
.booking-checkbox input { margin-top: 3px; accent-color: var(--brick); }

/* ────── Summary card */
.booking-summary {
  background: var(--egg-light);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: rgba(27, 61, 72, 0.75);
}
.summary-row strong { color: var(--dark); font-weight: 600; }
.summary-total {
  border-top: 1px solid rgba(27, 61, 72, 0.12);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 700;
}
.summary-promo strong {
  color: var(--brick);
  font-size: 0.75rem;
  background: rgba(191, 104, 38, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.summary-total .amount { font-size: 1.375rem; color: var(--brick); }

/* ────── Promo code (collapsible) */
.promo-details {
  margin-bottom: 1.25rem;
  border: 1px solid rgba(27, 61, 72, 0.08);
  border-radius: 0.875rem;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease;
}
.promo-details[open] {
  border-color: rgba(191, 104, 38, 0.3);
}
.promo-details summary {
  list-style: none;
  cursor: pointer;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brick);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.promo-details summary::-webkit-details-marker { display: none; }
.promo-details summary::after {
  content: '+';
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--brick);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(191, 104, 38, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease;
}
.promo-details[open] summary::after {
  content: '−';
  background: var(--brick);
  color: #fff;
}
.promo-row {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 0.875rem;
}
.promo-row .form-input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.promo-apply-btn {
  flex-shrink: 0;
  background: var(--brick);
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  padding: 0 1.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color .15s ease;
}
.promo-apply-btn:hover { background: var(--brick-dark); }
.promo-apply-btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.promo-msg {
  padding: 0 1rem 0.875rem;
  font-size: 0.8125rem;
  min-height: 0;
}
.promo-msg.success { color: #2d7a3f; }
.promo-msg.error   { color: #c0392b; }

/* ────── Stripe Element (Card) */
.card-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  gap: 0.75rem;
}
.card-brands {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.card-brand {
  height: 22px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(22, 21, 22, 0.08);
}
.stripe-card-element {
  background: #fff;
  border: 1.5px solid rgba(27, 61, 72, 0.15);
  border-radius: 0.625rem;
  padding: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.stripe-card-element.StripeElement--focus {
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15);
}
.stripe-card-element.StripeElement--invalid {
  border-color: #c0392b;
}
.card-errors {
  color: #c0392b;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  min-height: 1.1em;
}

/* ────── Pay trust strip (Stripe + secure) */
.pay-trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: var(--egg-light);
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(27, 61, 72, 0.7);
}
.pay-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pay-trust-stripe { gap: 0.375rem; }
.stripe-logo {
  height: 22px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .pay-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ────── Pay step trust list */
.pay-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.pay-trust li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(27, 61, 72, 0.85);
}

/* ────── Pay safe note */
.booking-paysafe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(27, 61, 72, 0.55);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ────── Success screen */
.booking-success { text-align: center; padding: 0.5rem 0 1rem; }
.success-burst {
  width: 84px; height: 84px;
  margin: 0 auto 1.25rem;
  background: rgba(161, 176, 129, 0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage, #a1b081);
  position: relative;
  animation: success-pop .5s cubic-bezier(.16,1,.3,1) .1s backwards;
}
.success-burst svg { width: 40px; height: 40px; }
@keyframes success-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.booking-confirmation-code {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin: 1rem auto;
}
.booking-success-actions {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.25rem;
}
@media (max-width: 480px) {
  .booking-success-actions { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.mt-5 { margin-top: 1.25rem; }

/* ────── Footer */
.booking-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
  background: #fff;
}
.booking-footer.hidden { display: none; }

.booking-back {
  background: transparent;
  border: none;
  color: rgba(27, 61, 72, 0.7);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  transition: background-color .15s ease;
}
.booking-back:hover { background: rgba(27, 61, 72, 0.06); }
.booking-back[hidden] { visibility: hidden; }

.booking-footer .cta-primary { padding: 0.75rem 1.5rem; }
.booking-footer .cta-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ────── Error banner */
.booking-error {
  background: rgba(191, 104, 38, 0.08);
  border: 1px solid rgba(191, 104, 38, 0.25);
  color: var(--brick-dark);
  padding: 0.875rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  margin-top: 1rem;
}
.booking-error.hidden { display: none; }

/* ────── Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1),
              transform .9s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
/* Hero copy lives in a relative container, reveal there is more subtle */
header [data-reveal] { transform: translateY(16px); }

/* ────── Refined hover for cards & buttons */
.card-feature,
.highlight-card,
.testimonial,
.faq-item {
  transition: transform .35s cubic-bezier(.16, 1, .3, 1),
              box-shadow .35s cubic-bezier(.16, 1, .3, 1),
              border-color .35s ease;
}

.cta-primary,
.cta-secondary,
.tour-pick-card,
.slot-card,
.addon-card {
  transition: transform .25s cubic-bezier(.16, 1, .3, 1),
              background-color .2s ease,
              border-color .2s ease,
              color .2s ease,
              box-shadow .25s ease;
}

/* Subtle parallax-like scale on hero image */
header img { transition: transform 12s ease-out; }
header:hover img { transform: scale(1.04); }

/* Focus visible */
.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.booking-back:focus-visible,
.form-input:focus-visible,
.tour-pick-card:focus-within,
.slot-card:focus-visible,
.addon-card:focus-within {
  outline: 2px solid var(--brick);
  outline-offset: 2px;
}

/* ────── Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════════
   LOVELYSTAY LP — service cards, route cards, step cards
   ════════════════════════════════════════════════════════════════════ */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 1.75rem;
  padding: 2rem 1.5rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.16,1,.3,1),
              box-shadow .35s ease,
              border-color .25s ease;
  box-shadow: 0 12px 36px -16px rgba(22, 21, 22, 0.35);
  color: var(--dark);
  font-family: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px -16px rgba(22, 21, 22, 0.45);
  border-color: rgba(191, 104, 38, 0.2);
}
.service-card-featured {
  border-color: var(--brick);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 250, 240, 1) 100%);
}
.service-card-featured:hover { border-color: var(--brick); }
.service-badge {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--brick);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(191, 104, 38, 0.1);
  color: var(--brick);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 30px; height: 30px; }
.service-title { font-size: 1.375rem; font-weight: 800; line-height: 1.1; }
.service-desc { font-size: 0.9375rem; color: rgba(27, 61, 72, 0.7); line-height: 1.5; }
.service-features {
  list-style: none; padding: 0; margin: 0.25rem 0 0;
  display: flex; flex-direction: column; gap: 0.375rem; flex: 1;
}
.service-features li {
  position: relative; padding-left: 1.25rem;
  font-size: 0.8125rem; color: rgba(27, 61, 72, 0.75);
}
.service-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--brick); font-weight: 700;
}
.service-price {
  display: flex; align-items: baseline; gap: 0.375rem;
  padding-top: 0.5rem; border-top: 1px solid rgba(27, 61, 72, 0.08);
  margin-top: 0.5rem;
}
.service-price-from { font-size: 0.75rem; color: rgba(27, 61, 72, 0.55); }
.service-price-value { font-size: 1.75rem; font-weight: 800; color: var(--dark); }
.service-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--brick); color: #fff; font-weight: 700;
  padding: 0.875rem; border-radius: 9999px; font-size: 0.9375rem;
  margin-top: 0.5rem; transition: background-color .15s ease;
}
.service-card:hover .service-cta { background: var(--brick-dark); }

/* Step cards */
.step-card {
  position: relative; background: #fff; border-radius: 1.5rem;
  padding: 2rem 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.625rem;
  box-shadow: 0 4px 24px -12px rgba(22, 21, 22, 0.12);
  border: 1px solid rgba(27, 61, 72, 0.05);
}
.step-card h3 { font-weight: 700; font-size: 1.0625rem; margin-top: 0.5rem; }
.step-card p { font-size: 0.875rem; color: rgba(27, 61, 72, 0.7); line-height: 1.55; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brick); color: #fff; font-weight: 800; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
}

/* Route cards */
.route-card {
  background: #fff; border: 1.5px solid rgba(27, 61, 72, 0.08);
  border-radius: 1rem; padding: 1rem 1.25rem; text-align: left;
  cursor: pointer; display: flex; flex-direction: column; gap: 0.25rem;
  transition: all .2s ease; font-family: inherit;
}
.route-card:hover {
  border-color: var(--brick); transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(191, 104, 38, 0.3);
}
.route-card strong { font-size: 1.0625rem; font-weight: 700; color: var(--dark); }
.route-card span { font-size: 0.8125rem; color: rgba(27, 61, 72, 0.6); }

/* Service card type label (One-way / By the hour) */
.service-type {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(27, 61, 72, 0.55);
  background: rgba(27, 61, 72, 0.06);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.service-card-featured .service-type {
  color: var(--brick);
  background: rgba(191, 104, 38, 0.1);
}
.service-price-unit {
  font-size: 0.75rem;
  color: rgba(27, 61, 72, 0.55);
  font-weight: 500;
  margin-left: -0.125rem;
}

/* ─── Comparison table */
.compare-table {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(27, 61, 72, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 36px -16px rgba(22, 21, 22, 0.15);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(27, 61, 72, 0.06);
  font-size: 0.9375rem;
}
/* 2-column variant (Airport Transfer vs Private Driver only) */
.compare-table-2col .compare-row {
  grid-template-columns: 1.2fr 1fr 1fr;
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(27, 61, 72, 0.85);
}
.compare-label {
  font-weight: 700;
  color: var(--dark) !important;
  background: rgba(27, 61, 72, 0.03);
}
.compare-head {
  background: var(--dark);
  color: #fff;
  border-bottom: none;
}
.compare-head > div {
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
  color: #fff;
  gap: 0.25rem;
}
.compare-head strong {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.15;
}
.compare-head span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
}
.compare-featured {
  background: rgba(191, 104, 38, 0.05);
  position: relative;
}
.compare-head .compare-featured {
  background: var(--brick);
}
.compare-head .compare-featured span {
  color: rgba(255, 255, 255, 0.85);
}
.compare-check {
  color: var(--sage, #a1b081);
  font-weight: 800;
  font-size: 1.125rem;
}
.compare-x {
  color: rgba(27, 61, 72, 0.35);
  font-size: 0.875rem;
}
.compare-cta-row > div {
  padding: 1.25rem;
}
.compare-pick {
  background: transparent;
  color: var(--brick);
  font-weight: 700;
  font-size: 0.875rem;
  border: 1.5px solid var(--brick);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all .15s ease;
  white-space: nowrap;
}
.compare-pick:hover {
  background: var(--brick);
  color: #fff;
}
.compare-cta-row .compare-featured .compare-pick {
  background: var(--brick);
  color: #fff;
}
.compare-cta-row .compare-featured .compare-pick:hover {
  background: var(--brick-dark);
  border-color: var(--brick-dark);
}

/* Quick rule of thumb helper */
.compare-helper {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: var(--egg-light);
  border-radius: 1rem;
  border: 1px solid rgba(27, 61, 72, 0.05);
}
.compare-helper-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(191, 104, 38, 0.15);
  color: var(--brick);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-helper-icon svg { width: 18px; height: 18px; }
.compare-helper p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(27, 61, 72, 0.85);
}
.compare-helper strong { color: var(--dark); }

/* Mobile: stack the comparison table */
@media (max-width: 720px) {
  .compare-row {
    grid-template-columns: 1fr;
  }
  .compare-row > div {
    padding: 0.75rem 1rem;
  }
  .compare-label {
    background: var(--dark);
    color: #fff !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.625rem 1rem !important;
  }
  .compare-row:not(.compare-head):not(.compare-cta-row) > div:not(.compare-label)::before {
    content: attr(data-col);
    font-weight: 600;
    color: rgba(27, 61, 72, 0.5);
    font-size: 0.75rem;
    margin-right: 0.5rem;
  }
  .compare-head, .compare-cta-row {
    display: none;
  }
}

/* Override the mobile-stack approach above — keep table horizontal but smaller */
@media (max-width: 720px) {
  .compare-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .compare-table-2col .compare-row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .compare-row > div {
    padding: 0.625rem 0.5rem;
    font-size: 0.75rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.25rem;
  }
  .compare-label {
    background: rgba(27, 61, 72, 0.03);
    color: var(--dark) !important;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.75rem !important;
    padding: 0.625rem 0.5rem !important;
    text-align: left;
    align-items: flex-start !important;
  }
  .compare-head, .compare-cta-row {
    display: grid;
  }
  .compare-head > div {
    padding: 0.875rem 0.5rem;
  }
  .compare-head strong {
    font-size: 0.8125rem;
  }
  .compare-head span {
    font-size: 0.5625rem;
  }
  .compare-pick {
    font-size: 0.6875rem;
    padding: 0.375rem 0.625rem;
  }
  .compare-row:not(.compare-head):not(.compare-cta-row) > div:not(.compare-label)::before {
    content: none;
  }
}

/* Service card image (header at top) */
.service-card {
  padding-top: 0 !important;
  overflow: hidden;
}
.service-image {
  margin: 0 -1.5rem 0;
  height: 160px;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
  margin-top: 0;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-card .service-type {
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  color: var(--dark) !important;
}
.service-card-featured .service-type {
  background: rgba(191, 104, 38, 0.95);
  color: #fff !important;
}
.service-card .service-badge {
  top: 12px;
  left: 12px;
}
.service-card > .service-icon,
.service-card > .service-title,
.service-card > .service-desc,
.service-card > .service-features,
.service-card > .service-price,
.service-card > .service-cta {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.service-card > .service-icon {
  margin-top: -28px;
  z-index: 1;
  position: relative;
  background: #fff;
  box-shadow: 0 8px 20px -8px rgba(22, 21, 22, 0.2);
}

/* ════════════════════════════════════════════════════════════════════
   BOKUN WIDGET MODAL — iframe with native Bokun calendar/booking
   ════════════════════════════════════════════════════════════════════ */
.bokun-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bokun-modal.hidden { display: none; }
.bokun-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 21, 22, 0.6);
  animation: fade .25s ease-out;
}
.bokun-modal-panel {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 920px;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -20px rgba(22, 21, 22, 0.45);
  animation: pop .35s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
@media (min-width: 640px) {
  .bokun-modal-panel {
    max-height: min(92vh, 900px);
    border-radius: 1.5rem;
    margin: 1rem;
  }
  .bokun-modal { padding: 0.5rem; }
}
.bokun-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
  background: #fff;
  z-index: 2;
  gap: 1rem;
}
.bokun-modal-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brick);
}
.bokun-modal-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 2px;
}
.bokun-modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27, 61, 72, 0.06);
  border: none;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease;
}
.bokun-modal-close:hover { background: rgba(27, 61, 72, 0.12); }
.bokun-modal-body {
  flex: 1;
  position: relative;
  overflow: hidden;
}
#bokun-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.bokun-modal-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #fff;
  pointer-events: none;
  transition: opacity .3s ease;
  font-size: 0.9375rem;
  color: rgba(27, 61, 72, 0.7);
}
.bokun-modal-loading.hide { opacity: 0; }
.bokun-modal-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(27, 61, 72, 0.15);
  border-top-color: var(--brick);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ════════════════════════════════════════════════════════════════════
   HERO LIGHT — Swingo official style (azul claro + van em destaque)
   ════════════════════════════════════════════════════════════════════ */
.hero-light {
  /* Solid Swingo brand blue (#a4c1d2 = --swingo-blue) */
  background: #a4c1d2;
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  top: -120px; right: -140px;
}
.hero-blob-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  bottom: 60px; left: -100px;
}

/* Hero social proof: reviewer avatars + rating */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  width: fit-content;
  margin: 0 auto 2.75rem;
  padding: 0.45rem 0.875rem 0.45rem 0.5rem;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 9999px;
  box-shadow: 0 6px 18px -8px rgba(27,61,72,0.2);
  position: relative;
  z-index: 1;
}
.hero-avatar-stack { display: flex; align-items: center; }
.hero-avatar-stack img,
.hero-avatar-stack .hero-avatar-more {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  background: #f5f2e9;
  margin-left: -10px;
  display: block;
  box-shadow: 0 2px 4px rgba(27,61,72,0.12);
}
.hero-avatar-stack img:first-child { margin-left: 0; }
.hero-avatar-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brick);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-social-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1;
  white-space: nowrap;
}
.hero-social-stars { color: #dab162; letter-spacing: 0.05em; font-size: 0.9rem; }
.hero-social-meta b { font-weight: 800; }
@media (max-width: 640px) {
  .hero-social-proof { padding: 0.4rem 0.7rem 0.4rem 0.4rem; gap: 0.55rem; }
  .hero-avatar-stack img,
  .hero-avatar-stack .hero-avatar-more { width: 26px; height: 26px; }
  .hero-social-text { font-size: 0.75rem; gap: 0.3rem; }
}

/* Headline */
.hero-headline {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.hero-headline-accent {
  background: linear-gradient(120deg, var(--brick) 0%, #d97b34 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* Subhead */
.hero-subhead {
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.2rem);
  color: rgba(27,61,72,0.75);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}
.hero-cta-book { padding: 1rem 1.875rem; font-size: 1rem; }
.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  background: rgba(255,255,255,0.85);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(27,61,72,0.1);
  transition: all .2s ease;
  text-decoration: none;
}
.hero-cta-wa:hover {
  background: #fff;
  border-color: rgba(27,61,72,0.2);
  transform: translateY(-2px);
}
.hero-cta-wa svg { width: 18px; height: 18px; color: #25D366; }

/* Service quick chips */
.hero-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(27,61,72,0.1);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: all .2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-chip svg {
  width: 16px; height: 16px;
  color: var(--brick);
}
.hero-chip:hover {
  background: #fff;
  border-color: var(--brick);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(27,61,72,0.2);
}

/* Image card */
.hero-image-card {
  position: relative;
  max-width: 1100px;
  margin: 3.5rem auto 0;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 30px 80px -25px rgba(22, 21, 22, 0.4),
              0 12px 24px -10px rgba(22, 21, 22, 0.2);
  aspect-ratio: 16 / 9;
  background: #1b3d48;
  z-index: 1;
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 12s ease-out;
}
.hero-image-card:hover img { transform: scale(1.03); }

/* Subtle bottom-edge gradient on the image so chips read well */
.hero-image-veil {
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

/* Floating chips */
.hero-rating-chip {
  position: absolute;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px -8px rgba(22, 21, 22, 0.25);
  font-size: 0.875rem;
}
.hero-rating-chip-left { left: 1.25rem; }

.hero-price-chip {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  background: var(--dark);
  color: #fff;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px -8px rgba(22, 21, 22, 0.4);
  font-size: 0.875rem;
}
.hero-price-chip-from {
  font-size: 0.7rem;
  opacity: 0.7;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-price-chip-amount {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-price-chip-meta {
  font-size: 0.75rem;
  opacity: 0.65;
  font-weight: 500;
}

/* Trust strip */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  margin: 3rem auto 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
  max-width: 60rem;
}
.hero-trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(27,61,72,0.72);
}
.hero-trust-strip li b {
  color: var(--dark);
  font-weight: 700;
}
.hero-trust-strip svg {
  width: 18px; height: 18px;
  color: var(--brick);
  flex-shrink: 0;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .hero-image-card { margin-top: 1.5rem; border-radius: 1.25rem; aspect-ratio: 5 / 4; }
  .hero-rating-chip,
  .hero-price-chip {
    bottom: 0.875rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
  }
  .hero-rating-chip-left { left: 0.75rem; }
  .hero-price-chip       { right: 0.75rem; }
  .hero-price-chip-amount { font-size: 1rem; }
  .hero-price-chip-meta { display: none; }
  .hero-trust-strip { gap: 0.5rem 1.25rem; margin-top: 1.5rem; }
  .hero-trust-strip li { font-size: 0.8rem; }
  .hero-cta-row { gap: 0.5rem; }
  .hero-cta-book { padding: 0.95rem 1.5rem; }
  .hero-cta-wa { padding: 0.85rem 1.25rem; }
  .hero-blob-1, .hero-blob-2 { display: none; }
}

/* Services section background */
.services-section {
  background: #fff;
  padding: 4rem 0 4rem;
}
@media (min-width: 640px) { .services-section { padding: 5rem 0 6rem; } }

/* Top bar override on light hero — keep dark bar visible */

/* Override Sintra LP's dark-hero text-shadow — Lovelystay hero is light bg */
header h1,
header > div > div > p,
header .text-white,
header p {
  text-shadow: none !important;
}

/* ═══════════════════════════════════════════════════════════
   FLATPICKR THEME — match Swingo brand (brick + dark teal)
   ═══════════════════════════════════════════════════════════ */
.flatpickr-calendar {
  border-radius: 1rem !important;
  border: 1px solid rgba(27, 61, 72, 0.1) !important;
  box-shadow: 0 20px 50px -15px rgba(27, 61, 72, 0.28) !important;
  font-family: inherit !important;
  padding: 0.5rem !important;
  background: #fff !important;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after {
  border-bottom-color: rgba(27, 61, 72, 0.1);
}

/* Month / year header — needs explicit height so the month name renders */
.flatpickr-months {
  padding: 0.5rem 0 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
}
.flatpickr-months .flatpickr-month {
  background: transparent !important;
  color: #1b3d48 !important;
  height: 2rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 1;
  overflow: visible !important;
}
.flatpickr-current-month {
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0 !important;
  color: #1b3d48 !important;
  height: 2rem !important;
  line-height: 2rem !important;
  position: static !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: auto !important;
  left: auto !important;
  right: auto !important;
}
.flatpickr-monthDropdown-months,
.flatpickr-current-month .numInput,
.flatpickr-current-month .numInputWrapper {
  color: #1b3d48 !important;
  font-weight: 700 !important;
  background: transparent !important;
  font-size: 1rem !important;
}
.flatpickr-current-month input.cur-year {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #1b3d48 !important;
  padding: 0 0.15rem !important;
}
.flatpickr-monthDropdown-months:hover {
  background: rgba(191, 104, 38, 0.08) !important;
}

/* Prev / next arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
  color: #1b3d48 !important;
  fill: #1b3d48 !important;
  padding: 0.4rem !important;
}
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: #bf6826 !important;
}

/* Weekday header */
.flatpickr-weekdays {
  height: 1.75rem;
}
.flatpickr-weekday {
  color: rgba(27, 61, 72, 0.55) !important;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Days grid */
.flatpickr-days {
  padding: 0.25rem;
}
.dayContainer {
  padding: 0;
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  gap: 0.1rem;
}
.flatpickr-day {
  border-radius: 0.55rem !important;
  border: 1.5px solid transparent !important;
  height: 2.4rem !important;
  line-height: 2.4rem !important;
  max-width: 2.4rem !important;
  color: #1b3d48 !important;
  font-weight: 500;
  font-size: 0.88rem;
}
.flatpickr-day.today {
  border-color: #bf6826 !important;
  color: #bf6826 !important;
  font-weight: 700;
}
.flatpickr-day.today:hover {
  background: rgba(191, 104, 38, 0.08) !important;
  color: #bf6826 !important;
}
.flatpickr-day:hover {
  background: rgba(191, 104, 38, 0.08) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #bf6826 !important;
  border-color: #bf6826 !important;
  color: #fff !important;
  font-weight: 700;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(27, 61, 72, 0.25) !important;
}
.flatpickr-day.flatpickr-disabled:hover {
  background: transparent !important;
}

/* Time picker — for input[type=time] flatpickr */
.flatpickr-time {
  border-top: 1px solid rgba(27, 61, 72, 0.08);
  margin-top: 0.3rem;
}
.flatpickr-time input {
  color: #1b3d48 !important;
  font-weight: 700;
  font-size: 1.1rem !important;
}
.flatpickr-time input:hover,
.flatpickr-time input:focus {
  background: rgba(191, 104, 38, 0.08) !important;
}
.flatpickr-time .flatpickr-time-separator {
  color: #1b3d48 !important;
}
.flatpickr-time .arrowUp::after { border-bottom-color: #bf6826; }
.flatpickr-time .arrowDown::after { border-top-color: #bf6826; }

/* Hide the now-hidden native input that Flatpickr replaces */
.flatpickr-input.flatpickr-mobile { display: block; }
input.flatpickr-input:not(.form-control):not(.flatpickr-mobile) { display: none !important; }

/* The alt input that flatpickr creates inherits .quote-input from altInputClass.
   Force a dark text color so it doesn't look greyed-out on mobile (default
   browser style for readonly inputs is lower contrast). Add a calendar icon
   on the left to match the clock icon in the .quote-time-trigger. */
input.quote-input.flatpickr-alt-input,
input.flatpickr-alt-input.quote-input[readonly],
input.quote-input[readonly] {
  cursor: pointer;
  color: #1b3d48 !important;
  -webkit-text-fill-color: #1b3d48;
  opacity: 1 !important;
  background-color: #ffffff !important;
  font-weight: 600;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bf6826' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3e%3cline x1='16' y1='2' x2='16' y2='6'/%3e%3cline x1='8' y1='2' x2='8' y2='6'/%3e%3cline x1='3' y1='10' x2='21' y2='10'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: left 0.85rem center !important;
  background-size: 1.05rem 1.05rem !important;
  padding-left: 2.4rem !important;
  padding-right: 0.7rem !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   THE SWINGO PROMISE — direct response to common transfer complaints
   ═══════════════════════════════════════════════════════════ */
.promise-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--swingo-egg-light, #f5f2e9) 100%);
  border-top: 1px solid rgba(27, 61, 72, 0.05);
}
@media (min-width: 640px) {
  .promise-section { padding: 5.5rem 0 6.5rem; }
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .promise-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.promise-card {
  background: #fff;
  border: 1px solid rgba(27, 61, 72, 0.06);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 6px 24px -16px rgba(22, 21, 22, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px -18px rgba(22, 21, 22, 0.22);
  border-color: rgba(191, 104, 38, 0.18);
}

.promise-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.promise-icon svg { width: 1.5rem; height: 1.5rem; }
.promise-icon-mustard { background: rgba(218, 177, 98, 0.16); color: #b48a3a; }
.promise-icon-sage    { background: rgba(161, 176, 129, 0.18); color: #6d8049; }
.promise-icon-brick   { background: rgba(191, 104, 38, 0.14); color: #bf6826; }
.promise-icon-blue    { background: rgba(164, 194, 210, 0.22); color: #4d7d97; }

.promise-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--swingo-dark, #1b3d48);
  letter-spacing: -0.01em;
}
.promise-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(27, 61, 72, 0.72);
}

/* ═══════════════════════════════════════════════════════════
   MERCEDES VITO GALLERY — vehicle showcase
   ═══════════════════════════════════════════════════════════ */
.vehicle-section {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 640px) { .vehicle-section { padding: 5.5rem 0 6.5rem; } }

.vehicle-copy h2 {
  letter-spacing: -0.02em;
}

.vehicle-specs {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.vehicle-specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
}
.vehicle-specs li:last-child { border-bottom: none; }
.vehicle-specs svg {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: #bf6826;
  margin-top: 0.1rem;
}
.vehicle-specs strong {
  display: block;
  color: var(--swingo-dark, #1b3d48);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}
.vehicle-specs span {
  font-size: 0.875rem;
  color: rgba(27, 61, 72, 0.65);
  line-height: 1.4;
}

/* Van photo collage — asymmetric premium feel */
.vehicle-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.875rem;
  width: 100%;
  aspect-ratio: 5 / 4.2;
  max-width: 36rem;
  margin: 0 auto;
}
.vehicle-photo {
  overflow: hidden;
  border-radius: 1.1rem;
  box-shadow: 0 18px 50px -20px rgba(22, 21, 22, 0.32);
  background: var(--swingo-egg-light, #f5f2e9);
  margin: 0;
}
.vehicle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vehicle-photo:hover img { transform: scale(1.04); }

.vehicle-photo-main {
  grid-row: 1 / span 2;
  grid-column: 1;
}
.vehicle-photo-interior {
  grid-row: 1;
  grid-column: 2;
}
.vehicle-photo-detail {
  grid-row: 2;
  grid-column: 2;
}

@media (max-width: 768px) {
  .vehicle-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    aspect-ratio: 4 / 3.5;
    max-width: 100%;
    margin-top: 2rem;
  }
  .vehicle-photo-main {
    grid-row: 1;
    grid-column: 1 / span 2;
    aspect-ratio: 16 / 9;
  }
  .vehicle-photo-interior {
    grid-row: 2;
    grid-column: 1;
    aspect-ratio: 1 / 1;
  }
  .vehicle-photo-detail {
    grid-row: 2;
    grid-column: 2;
    aspect-ratio: 1 / 1;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO QUOTE CARD — Sintra LP design (.quote-* classes)
   ═══════════════════════════════════════════════════════════ */

.hq-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.7rem 1.6rem 1.5rem;
  width: 100%;
  max-width: 26rem;
  justify-self: end;
  color: #1b3d48;
  box-shadow:
    0 32px 80px -32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (min-width: 640px) {
  .hq-card { padding: 1.9rem 1.75rem 1.7rem; }
}
@media (max-width: 1023px) {
  .hq-card { margin: 0 auto; }
}

/* Header: title left + price right (Sintra style) — more breathing room */
.quote-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
}
.quote-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1b3d48;
  line-height: 1.2;
}
.quote-rating {
  font-size: 0.75rem;
  margin-top: 0.375rem;
  color: rgba(27, 61, 72, 0.7);
}
.quote-price { text-align: right; flex-shrink: 0; }
.quote-price-from {
  font-size: 0.7rem;
  color: rgba(27, 61, 72, 0.55);
  text-transform: lowercase;
}
.quote-price-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1b3d48;
  line-height: 1;
  margin: 0.125rem 0;
}
.quote-price-meta {
  font-size: 0.6875rem;
  color: rgba(27, 61, 72, 0.55);
}

/* Form layout — more generous gaps for visual breathing */
.quote-form { display: flex; flex-direction: column; gap: 1.65rem; }
.quote-field { display: flex; flex-direction: column; gap: 0.45rem; }
.quote-field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quote-field-row-3 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .quote-field-row-3 { grid-template-columns: 1fr; gap: 0.45rem; }
}

/* ── Time picker — iOS-style wheel picker (button + popover with spinning wheels) ── */
.quote-time-pick {
  position: relative;
  width: 100%;
}
.quote-time-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 1.5px solid rgba(27, 61, 72, 0.1);
  border-radius: 1.125rem;
  cursor: pointer;
  font-family: inherit;
  color: #1b3d48;
  font-weight: 700;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.quote-time-trigger:hover { border-color: rgba(191, 104, 38, 0.4); }
.quote-time-pick.is-open .quote-time-trigger,
.quote-time-trigger:focus-visible {
  border-color: #bf6826;
  box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15);
  outline: none;
}
.quote-time-trigger-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: #bf6826;
  flex-shrink: 0;
}
.quote-time-trigger-value {
  flex: 1;
  text-align: left;
}
.quote-time-trigger-chevron {
  width: 1rem;
  height: 1rem;
  color: rgba(27, 61, 72, 0.5);
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.quote-time-pick.is-open .quote-time-trigger-chevron { transform: rotate(180deg); }

/* Popover — appears below the trigger */
.time-wheel-popover {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 40;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow:
    0 24px 60px -16px rgba(27, 61, 72, 0.35),
    0 0 0 1px rgba(27, 61, 72, 0.08);
  padding: 0.7rem;
}
/* Each column = up arrow + wheel + down arrow */
.time-wheel-wheels {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.35rem;
  align-items: center;
  overflow: visible;
}
.time-wheel-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.time-wheel-arrow {
  width: 100%;
  height: 1.6rem;
  background: rgba(27, 61, 72, 0.04);
  border: none;
  border-radius: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(27, 61, 72, 0.55);
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.time-wheel-arrow:hover {
  background: rgba(191, 104, 38, 0.12);
  color: #bf6826;
}
.time-wheel-arrow svg { width: 0.85rem; height: 0.85rem; }
.time-wheel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.time-wheel-arrow:disabled:hover {
  background: rgba(27, 61, 72, 0.04);
  color: rgba(27, 61, 72, 0.55);
}
.time-wheel {
  height: 132px;          /* 4 × 33 — shows ~3 items with center highlighted */
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  list-style: none;
  margin: 0.4rem 0;
  padding: 49.5px 0;      /* 1.5 × ITEM_HEIGHT so first/last items can center */
  position: relative;
  z-index: 1;
}
.time-wheel::-webkit-scrollbar { display: none; }
.time-wheel-item {
  height: 33px;           /* ITEM_HEIGHT (smaller, matches date input height) */
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(27, 61, 72, 0.3);
  font-variant-numeric: tabular-nums;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  transition: color 0.12s ease, font-size 0.12s ease, font-weight 0.12s ease;
}
.time-wheel-item.is-near {
  color: rgba(27, 61, 72, 0.5);
  font-size: 0.92rem;
}
.time-wheel-item.is-active {
  color: #1b3d48;
  font-weight: 800;
  font-size: 1.15rem;
}
.time-wheel-colon {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(27, 61, 72, 0.45);
  user-select: none;
  align-self: center;
  padding: 0 0.1rem;
}
/* Center highlight band — visually mark the selected row inside each column.
   Positioned relative to the column so the band sits exactly over the wheel's
   center row (between the up and down arrows). */
.time-wheel-col::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 33px;
  transform: translateY(-50%);
  background: rgba(191, 104, 38, 0.06);
  border-top: 1px solid rgba(27, 61, 72, 0.1);
  border-bottom: 1px solid rgba(27, 61, 72, 0.1);
  border-radius: 0.4rem;
  pointer-events: none;
  z-index: 0;
}
/* Fade overlays at top and bottom of each wheel */
.time-wheel-col::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 49.5px;
  pointer-events: none;
  z-index: 2;
  top: 1.6rem;            /* start below the up arrow */
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0) 100%) top/100% 49.5px no-repeat,
    linear-gradient(0deg,   #ffffff 0%, rgba(255,255,255,0) 100%) bottom/100% 49.5px no-repeat;
  height: calc(100% - 3.2rem);  /* fades cover area between arrows */
  pointer-events: none;
}
.time-wheel-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.time-wheel-btn {
  flex: 1;
  padding: 0.7rem 0.5rem;
  border-radius: 0.85rem;
  border: 1.5px solid transparent;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.time-wheel-btn-cancel {
  background: rgba(27, 61, 72, 0.06);
  color: #1b3d48;
}
.time-wheel-btn-cancel:hover { background: rgba(27, 61, 72, 0.1); }
.time-wheel-btn-done {
  background: #bf6826;
  color: #ffffff;
}
.time-wheel-btn-done:hover { background: #a25618; }

/* Label with icon (for flight info legends) */
.quote-label-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.quote-label-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #bf6826;
  flex-shrink: 0;
}

/* "(optional)" suffix on labels */
.quote-label-optional {
  font-weight: 500;
  color: rgba(27, 61, 72, 0.5);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
  margin-left: 0.35rem;
}

/* Inline checkbox — flatter than .bk-checkbox card style, simpler */
.bk-check-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.4rem 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: #1b3d48;
  line-height: 1.45;
  position: relative;            /* anchor the hidden input INSIDE the label */
}
.bk-check-inline input {
  /* Pin the visually-hidden checkbox to the top-left of its own label so
     browser focus-into-view doesn't scroll the modal body when the user
     ticks/unticks it (the bug: clicking the checkbox made the form scroll
     up, leaving empty space below). */
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.bk-check-inline em {
  font-style: normal;
  color: rgba(27, 61, 72, 0.55);
  font-size: 0.78rem;
  margin-left: 0.15rem;
}
.bk-check-box {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.3rem;
  border: 1.8px solid rgba(27, 61, 72, 0.3);
  background: #fff;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all 0.15s ease;
}
.bk-check-inline:has(input:checked) .bk-check-box {
  background: #bf6826;
  border-color: #bf6826;
}

/* "I don't have flight details yet" — opt-out checkbox below flight fields */
.bk-check-no-flight {
  padding: 0.7rem 0.85rem;
  background: rgba(218, 177, 98, 0.08);
  border: 1px dashed rgba(218, 177, 98, 0.45);
  border-radius: 0.7rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
}
.bk-check-no-flight:has(input:checked) {
  background: rgba(191, 104, 38, 0.06);
  border-color: rgba(191, 104, 38, 0.35);
  border-style: solid;
}
.bk-check-no-flight em {
  color: rgba(27, 61, 72, 0.55);
  font-style: normal;
  font-size: 0.78rem;
  margin-left: 0.2rem;
}
.bk-check-inline:has(input:checked) .bk-check-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3e%3cpath d='M5 13l4 4L19 7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.85rem;
}

/* Flight info: simple fieldset, no border */
[data-flight-group] {
  border: none;
  padding: 0;
  margin: 0;
}
[data-flight-group] legend {
  padding: 0;
  margin-bottom: 0.5rem;
}
[data-flight-group] + [data-flight-group] {
  margin-top: 1.1rem;
}
.quote-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(27, 61, 72, 0.78);
  letter-spacing: -0.005em;
}
.quote-input {
  width: 100%;
  border: 1.5px solid rgba(27, 61, 72, 0.1) !important;
  border-radius: 1.125rem !important;
  padding: 0.875rem 1rem !important;
  font-size: 0.9375rem;
  color: #1b3d48;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: #fff;
}
.quote-input:focus {
  border-color: #bf6826 !important;
  box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15) !important;
}
/* Native select needs explicit chevron */
select.quote-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3d48' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem !important;
  cursor: pointer;
}

/* Service / tour picker (segmented radio cards) */
.quote-tour-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.quote-tour-pick-3 {
  grid-template-columns: repeat(3, 1fr);
}
.quote-tour-pick-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ─── Custom Destination Dropdown (route picker) ──────────────── */
.route-picker {
  position: relative;
  width: 100%;
}
.route-picker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1.5px solid rgba(27, 61, 72, 0.1);
  border-radius: 1.125rem;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  color: rgba(27, 61, 72, 0.55);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}
.route-picker-trigger:hover {
  border-color: rgba(191, 104, 38, 0.4);
}
.route-picker.is-open .route-picker-trigger,
.route-picker-trigger:focus-visible {
  border-color: #bf6826;
  box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15);
  outline: none;
}
.route-picker.is-selected .route-picker-trigger-value {
  color: #1b3d48;
  font-weight: 700;
}
.route-picker-trigger-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: #bf6826;
  flex-shrink: 0;
}
.route-picker-trigger-value {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.route-picker-trigger-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: #bf6826;
  flex-shrink: 0;
  padding: 0.15rem 0.5rem;
  background: rgba(191, 104, 38, 0.08);
  border-radius: 999px;
}
.route-picker-chevron {
  width: 1rem;
  height: 1rem;
  color: rgba(27, 61, 72, 0.5);
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.route-picker.is-open .route-picker-chevron {
  transform: rotate(180deg);
}

/* Panel (popover) */
.route-picker-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 30;
  background: #fff;
  border-radius: 1rem;
  box-shadow:
    0 24px 60px -16px rgba(27, 61, 72, 0.35),
    0 0 0 1px rgba(27, 61, 72, 0.08);
  padding: 1rem;
  max-height: 22rem;
  overflow-y: auto;
}
.route-picker-panel-head {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
}
.route-picker-panel-head h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1b3d48;
  margin: 0 0 0.15rem;
  letter-spacing: -0.01em;
}
.route-picker-panel-head p {
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.6);
  margin: 0;
  line-height: 1.4;
}

.route-picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
@media (max-width: 480px) {
  .route-picker-grid { grid-template-columns: 1fr; }
  .route-picker-panel { max-height: 18rem; }
}

.route-picker-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.75rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
  font-family: inherit;
}
.route-picker-card:hover {
  background: #ece6ce;
  border-color: rgba(191, 104, 38, 0.3);
}
.route-picker-card.is-selected {
  background: rgba(191, 104, 38, 0.08);
  border-color: #bf6826;
}
.route-picker-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b3d48;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.route-picker-card-meta {
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.65);
  line-height: 1.3;
}
.route-picker-card.is-selected .route-picker-card-meta {
  color: #bf6826;
  font-weight: 600;
}

/* Route pair (From + To with visual A→B line on the left) */
.quote-route-pair {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 1.65rem;
}
.quote-route-row {
  position: relative;
  display: flex;
  align-items: center;
}
.quote-route-field {
  flex: 1;
  min-width: 0;
}
.quote-route-marker {
  position: absolute;
  left: -1.65rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 2px solid #1b3d48;
  background: #fff;
  flex-shrink: 0;
  z-index: 2;
}
.quote-route-marker-to {
  background: #1b3d48;
}
.quote-route-line {
  position: absolute;
  left: -1.235rem;
  top: 28%;
  bottom: 28%;
  width: 1.5px;
  background: rgba(27, 61, 72, 0.25);
  z-index: 1;
}

/* Readonly inputs (locked side of From/To) */
.quote-input[readonly] {
  background: rgba(27, 61, 72, 0.04) !important;
  color: rgba(27, 61, 72, 0.65) !important;
  cursor: default;
}
.quote-input[readonly]:focus {
  border-color: rgba(27, 61, 72, 0.1) !important;
  box-shadow: none !important;
}

/* Hint label next to a field's label */
.quote-label-hint {
  font-weight: 500;
  color: rgba(27, 61, 72, 0.55);
  font-size: 0.7rem;
  margin-left: 0.3rem;
}

/* Mobile — route pair tighter */
@media (max-width: 480px) {
  .quote-route-pair { padding-left: 1.35rem; }
  .quote-route-marker { left: -1.35rem; width: 0.75rem; height: 0.75rem; }
  .quote-route-line { left: -1.0rem; }
}

/* Small helper hint below a field (e.g. "Airport → your hotel") */
.quote-field-hint {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.6);
  margin-top: 0.3rem;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.quote-field-hint::before {
  content: "•";
  color: #bf6826;
  font-weight: 700;
  flex-shrink: 0;
}

/* When hint is inside a .quote-field with a stepper/picker above, more space */
.quote-field > .quote-tour-pick + .quote-field-hint,
.quote-field > .quote-pax + .quote-field-hint {
  margin-top: 0.65rem;
  margin-bottom: 0.5rem;
}
.quote-tour-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.75rem;
  border: 1.5px solid rgba(27, 61, 72, 0.1);
  border-radius: 0.75rem;
  cursor: pointer;
  text-align: center;
  transition: all .15s ease;
  position: relative;
  background: #fff;
}
.quote-tour-card input { position: absolute; opacity: 0; pointer-events: none; }
.quote-tour-card:hover { border-color: rgba(191, 104, 38, 0.3); }
.quote-tour-card:has(input:checked) {
  border-color: #bf6826;
  background: rgba(191, 104, 38, 0.04);
}
.quote-tour-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1b3d48;
}
.quote-tour-meta {
  font-size: 0.6875rem;
  color: rgba(27, 61, 72, 0.55);
}

/* Mini steppers (Sintra style — bordered wrapper, divider between rows) */
.quote-pax {
  border: 1.5px solid rgba(27, 61, 72, 0.1);
  border-radius: 1.125rem;
  padding: 0.4rem 1.1rem;
}
.quote-pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 0.75rem;
}
.quote-pax-row + .quote-pax-row {
  border-top: 1px solid rgba(27, 61, 72, 0.06);
}
.quote-pax-row > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.quote-pax-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1b3d48;
}
.quote-pax-meta {
  font-size: 0.6875rem;
  color: #a1b081;
  font-weight: 600;
}
.quote-pax-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.quote-pax-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid #bf6826;
  background: #fff;
  color: #bf6826;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: all .12s ease;
}
.quote-pax-btn:hover:not([disabled]) {
  background: #bf6826;
  color: #fff;
}
.quote-pax-btn[disabled] {
  border-color: rgba(27, 61, 72, 0.12);
  color: rgba(27, 61, 72, 0.25);
  cursor: not-allowed;
}
.quote-pax-count {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
  color: #1b3d48;
  font-variant-numeric: tabular-nums;
}

/* CTA inside quote card */
.quote-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #bf6826;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 10px 24px -10px rgba(191, 104, 38, 0.5);
  transition: background .15s ease;
}
.quote-cta svg { width: 1.1rem; height: 1.1rem; }
.quote-cta:hover { background: #8d4711; }

/* Trust signals */
.quote-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.7rem;
  color: rgba(27, 61, 72, 0.65);
}
.quote-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}
.quote-trust svg { width: 0.85rem; height: 0.85rem; color: #a1b081; }

/* ═══════════════════════════════════════════════════════════
   LEGACY .hq-* classes kept for backward compat (unused now)
   ═══════════════════════════════════════════════════════════ */

.hq-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.5rem 1.4rem 1.35rem;
  width: 100%;
  max-width: 26rem;
  justify-self: end;
  color: #1b3d48;
  box-shadow:
    0 32px 80px -32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (min-width: 640px) {
  .hq-card { padding: 1.65rem 1.55rem 1.5rem; }
}
@media (max-width: 1023px) {
  .hq-card { margin: 0 auto; }
}

/* Compact header: title + rating chip */
.hq-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.07);
}
.hq-card-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #bf6826;
  margin: 0 0 0.15rem;
}
.hq-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1b3d48;
  margin: 0;
}
.hq-card-trust {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  padding-top: 0.05rem;
}
.hq-card-trust-stars {
  color: #dab162;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.hq-card-trust-text {
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.65);
  margin-top: 0.2rem;
}
.hq-card-trust-text b { color: #1b3d48; font-weight: 700; }

/* Form layout */
.hq-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hq-fields {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Segmented tabs (Transfer / Private Driver) */
.hq-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
  background: var(--swingo-egg-light, #f5f2e9);
  padding: 0.3rem;
  border-radius: 0.85rem;
  margin-bottom: 0.4rem;
}
.hq-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.5rem;
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(27, 61, 72, 0.6);
  transition: all 0.18s ease;
}
.hq-tab input { position: absolute; opacity: 0; pointer-events: none; }
.hq-tab svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; opacity: 0.7; }
.hq-tab:hover { color: #1b3d48; }
.hq-tab:has(input:checked) {
  background: #fff;
  color: #bf6826;
  box-shadow: 0 2px 8px -2px rgba(27, 61, 72, 0.12);
}
.hq-tab:has(input:checked) svg { opacity: 1; }

/* Input groups with floating icon + mini-label inside */
.hq-input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.85rem;
  padding: 0.55rem 0.85rem 0.55rem 0.7rem;
  transition: all 0.18s ease;
}
.hq-input-group:focus-within {
  border-color: #bf6826;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(191, 104, 38, 0.08);
}
.hq-input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  flex-shrink: 0;
  color: rgba(27, 61, 72, 0.5);
}
.hq-input-icon svg { width: 1.15rem; height: 1.15rem; }
.hq-input-icon-dest { color: #bf6826; }

.hq-input-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.hq-input-mini-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(27, 61, 72, 0.55);
  margin-bottom: 0.1rem;
  line-height: 1;
}
.hq-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.94rem;
  font-weight: 600;
  color: #1b3d48;
  font-family: inherit;
  padding: 0;
  letter-spacing: -0.01em;
}
.hq-input::placeholder {
  color: rgba(27, 61, 72, 0.45);
  font-weight: 500;
}
.hq-input:focus { outline: none; }

/* Native date/time look subtle */
input[type="date"].hq-input,
input[type="time"].hq-input {
  cursor: pointer;
  font-variant-numeric: tabular-nums;
}
input[type="date"].hq-input::-webkit-calendar-picker-indicator,
input[type="time"].hq-input::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
  filter: invert(20%) sepia(15%) saturate(700%) hue-rotate(150deg);
}

/* Select dropdown */
.hq-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3d48' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 0.95rem;
  padding-right: 1.4rem;
  cursor: pointer;
}

/* Connector A↓B between From and To */
.hq-route-connector {
  display: flex;
  justify-content: flex-start;
  padding-left: 1.05rem;
  margin: -0.35rem 0;
  height: 0.7rem;
  position: relative;
}
.hq-route-connector::before {
  content: "";
  position: absolute;
  left: 1.66rem;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(191, 104, 38, 0.35);
}
.hq-route-connector-icon {
  display: none;
}

/* 2-col row (Date+Time, Pax+Luggage groups) */
.hq-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Counter pills (Passengers / Luggage) */
.hq-counter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.hq-counter {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border-radius: 0.85rem;
  border: 1.5px solid transparent;
}
.hq-counter-full {
  grid-column: span 2;
  padding: 0.7rem 0.85rem;
}
.hq-counter > svg {
  width: 1.15rem;
  height: 1.15rem;
  color: rgba(27, 61, 72, 0.5);
  flex-shrink: 0;
}
.hq-counter-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.hq-counter-meta strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b3d48;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hq-counter-meta span {
  font-size: 0.7rem;
  color: rgba(27, 61, 72, 0.55);
  margin-top: 0.1rem;
}
.hq-counter-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.hq-counter-btn {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1.5px solid rgba(27, 61, 72, 0.18);
  background: #fff;
  color: #1b3d48;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: all 0.15s ease;
}
.hq-counter-btn:hover:not(:disabled) {
  border-color: #bf6826;
  color: #bf6826;
}
.hq-counter-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Duration chip selector (Driver: 2h/4h/6h/8h) */
.hq-duration {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
  background: var(--swingo-egg-light, #f5f2e9);
  padding: 0.3rem;
  border-radius: 0.85rem;
}
.hq-duration-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0;
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(27, 61, 72, 0.55);
  transition: all 0.15s ease;
}
.hq-duration-chip input { position: absolute; opacity: 0; pointer-events: none; }
.hq-duration-chip:hover { color: #1b3d48; }
.hq-duration-chip:has(input:checked) {
  background: #fff;
  color: #bf6826;
  box-shadow: 0 2px 8px -2px rgba(27, 61, 72, 0.12);
}

/* Live price block (above CTA) */
.hq-price-block {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(191, 104, 38, 0.07), rgba(218, 177, 98, 0.07));
  border: 1px solid rgba(191, 104, 38, 0.18);
  border-radius: 0.85rem;
  margin-top: 0.3rem;
}
.hq-price-from {
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.6);
  font-weight: 500;
  margin-right: 0.35rem;
}
.hq-price-value {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #bf6826;
}
.hq-price-meta {
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.55);
  text-align: right;
  flex-shrink: 0;
  max-width: 50%;
}

/* CTA — bold orange pill */
.hq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #bf6826;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow:
    0 12px 28px -10px rgba(191, 104, 38, 0.55),
    0 0 0 1px rgba(191, 104, 38, 0.6);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.hq-cta svg { width: 1.15rem; height: 1.15rem; }
.hq-cta:hover {
  background: #8d4711;
  box-shadow:
    0 16px 36px -10px rgba(191, 104, 38, 0.65),
    0 0 0 1px rgba(141, 71, 17, 0.6);
}
.hq-cta:active { transform: translateY(1px); }

/* Inline trust line at bottom */
.hq-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: rgba(27, 61, 72, 0.65);
  margin: 0.55rem 0 0;
}
.hq-trust svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--swingo-sage, #a1b081);
  flex-shrink: 0;
}
.hq-trust-dot {
  color: rgba(27, 61, 72, 0.3);
  font-weight: 700;
}

/* Hero left badges (4-up row) */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.hero-badge svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #dab162;
  flex-shrink: 0;
}

/* Stars inside hero pill */
.hero-pill-stars {
  color: #dab162;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}

/* Mobile: tighter spacing on quote card */
@media (max-width: 640px) {
  .hq-card { padding: 1.5rem 1.4rem 1.4rem; border-radius: 1.15rem; }
  .hq-card-title { font-size: 1.18rem; }
  .hq-tab { font-size: 0.85rem; padding: 0.55rem 0.35rem; }
  .hq-input-group { padding: 0.5rem 0.7rem 0.5rem 0.6rem; }
  .hq-input-icon { width: 1.7rem; }
  .hq-input-mini-label { font-size: 0.62rem; }
  .hq-input { font-size: 0.9rem; }
  .hq-counter { padding: 0.5rem 0.65rem; gap: 0.45rem; }
  .hq-counter-meta strong { font-size: 0.88rem; }
  .hq-counter-btn { width: 1.55rem; height: 1.55rem; }
  .hq-duration-chip { font-size: 0.85rem; padding: 0.5rem 0; }
  .hq-price-value { font-size: 1.3rem; }
  .hq-cta { padding: 0.9rem 1.25rem; font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════════
   CINEMATIC HERO (Sintra-style) — full-bleed van + quote card
   ═══════════════════════════════════════════════════════════ */

/* Nav over dark hero */
.hero-nav {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 30;
}
.hero-nav .hero-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-nav .hero-nav-cta:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 640px) {
  .hero-nav .hero-nav-cta { display: none; }
}

/* Hero container */
.hero-cinematic {
  min-height: 100vh;
  background: #1b3d48;
  color: #fff;
}
.hero-cinematic h1,
.hero-cinematic h2,
.hero-cinematic h3,
.hero-cinematic p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.hero-cinematic .hero-quote-card * {
  text-shadow: none !important;
}

/* Partnership chip — "In partnership with [LovelyStay logo]" */
.hero-partnership {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-partnership-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.hero-partnership-logo {
  height: 2.2rem;
  width: auto;
  color: #ffffff;        /* white — fill="currentColor" inside the SVG */
  flex-shrink: 0;
  opacity: 0.95;
}
@media (max-width: 640px) {
  .hero-partnership { gap: 0.65rem; }
  .hero-partnership-text { font-size: 0.72rem; }
  .hero-partnership-logo { height: 1.9rem; }
}

/* Trust pill above headline */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-pill b { font-weight: 700; }
.hero-pill-sep {
  opacity: 0.5;
}
@media (min-width: 640px) {
  .hero-pill { font-size: 0.9rem; padding: 0.45rem 1.05rem; }
}

/* Hero headline + accent */
.hero-title {
  font-size: clamp(2.4rem, 6vw + 0.5rem, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero-title-accent {
  color: #dab162; /* swingo-mustard */
  display: inline-block;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  max-width: 36rem;
}
@media (min-width: 640px) {
  .hero-sub { font-size: 1.15rem; margin-bottom: 2rem; }
}

/* Proof points grid (4 features with mustard checks) */
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
  margin-bottom: 2rem;
  max-width: 30rem;
  list-style: none;
  padding: 0;
}
.hero-proof-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.hero-proof-grid svg {
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-proof-grid {
    grid-template-columns: repeat(4, minmax(0, auto));
    gap: 0.75rem 1.75rem;
  }
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
}
.hero-cta-book {
  font-size: 1rem;
  padding: 0.95rem 1.65rem;
}
.hero-cta-wa-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-cta-wa-dark svg { width: 1.15rem; height: 1.15rem; color: #25D366; }
.hero-cta-wa-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Avatar stack row (under CTAs) */
.hero-avatars-row {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-top: 0.5rem;
}
.hero-avatars {
  display: flex;
}
.hero-avatars img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2.5px solid #1b3d48;
  margin-right: -0.7rem;
  background: var(--swingo-egg-light, #f5f2e9);
}
.hero-avatars-more {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #bf6826;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  border: 2.5px solid #1b3d48;
  margin-left: 0.05rem;
}
.hero-avatars-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}
.hero-avatars-stars {
  color: #dab162;
  font-size: 1rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.1rem;
}
.hero-avatars-text p { margin: 0; }

/* ═══════════════════════════════════════════════════════════
   HERO QUOTE CARD (right side — mini booking widget)
   ═══════════════════════════════════════════════════════════ */
.hero-quote-card {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.6rem 1.4rem;
  color: #1b3d48;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  width: 100%;
  max-width: 30rem;
  justify-self: end;
}
@media (min-width: 640px) {
  .hero-quote-card { padding: 1.85rem 1.65rem; }
}
@media (max-width: 1023px) {
  .hero-quote-card { margin: 0 auto; }
}

.hero-quote-header { margin-bottom: 1rem; }
.hero-quote-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  line-height: 1.1;
  color: #1b3d48;
}
.hero-quote-meta {
  font-size: 0.85rem;
  color: rgba(27, 61, 72, 0.7);
}

/* Sintra-style header bar: eyebrow+title+rating on left, price on right */
.hero-quote-header-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
}
.hero-quote-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(27, 61, 72, 0.8);
  margin: 0;
}
.hero-quote-rating-sep {
  color: rgba(27, 61, 72, 0.4);
}
.hero-quote-rating-count {
  color: rgba(27, 61, 72, 0.6);
}
.hero-quote-price {
  text-align: right;
  flex-shrink: 0;
}
.hero-quote-price-from {
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.55);
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.hero-quote-price-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1b3d48;
  letter-spacing: -0.02em;
  margin: 0.15rem 0 0.1rem;
  line-height: 1;
}
.hero-quote-price-meta {
  font-size: 0.7rem;
  color: rgba(27, 61, 72, 0.55);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

/* Sintra-style horizontal stepper rows ("Adult [- 1 +]") */
.hero-quote-pax {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border-radius: 0.85rem;
  padding: 0.5rem 0.85rem;
}
.hero-quote-pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0;
}
.hero-quote-pax-row + .hero-quote-pax-row {
  border-top: 1px solid rgba(27, 61, 72, 0.06);
  padding-top: 0.65rem;
}
.hero-quote-pax-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b3d48;
  letter-spacing: -0.01em;
}
.hero-quote-pax-meta {
  display: block;
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.55);
  margin-top: 0.1rem;
}
.hero-quote-pax-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.hero-quote-pax-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1.5px solid #bf6826;
  background: #fff;
  color: #bf6826;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  padding: 0;
}
.hero-quote-pax-btn:not(:disabled):hover {
  background: #bf6826;
  color: #fff;
}
.hero-quote-pax-btn:disabled {
  border-color: rgba(27, 61, 72, 0.18);
  color: rgba(27, 61, 72, 0.3);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.6);
}
.hero-quote-pax-count {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: #1b3d48;
}

/* Native date/time input — bigger, calendar icon visible */
.hero-quote-input-date {
  padding: 0.8rem 0.85rem;
}

/* Select dropdown — matches text inputs visually */
.hero-quote-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3d48' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.hero-quote-input-wrap .hero-quote-select {
  padding-left: 2.3rem;
}

/* Route meta line (shown when destination is picked) */
.hero-quote-route-meta {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(27, 61, 72, 0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-quote-route-meta::before {
  content: "•";
  color: #bf6826;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING MODAL (custom 3-step wizard, replaces Bokun iframe)
   ═══════════════════════════════════════════════════════════ */
.bk-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  /* Anchor panel to top so content-height changes (radios, steps, flight
     info appearing) don't recenter the panel — which the user perceived as
     "the whole visual jumping up". */
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow: hidden;            /* page never scrolls when modal is open */
}
.bk-modal.hidden { display: none; }

.bk-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 61, 72, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bk-modal-panel {
  position: relative;
  width: 100%;
  max-width: 760px;            /* narrower since summary is removed — single-col */
  /* Always full available height — prevents the panel from shrinking/growing
     when content changes (which would re-center it and look like the page
     "jumps up" every time the user clicks a radio/checkbox). */
  height: calc(100vh - 4rem);
  max-height: calc(100vh - 4rem);
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 30px 100px -30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Top bar — progress + close */
.bk-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
}

.bk-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bk-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: rgba(27, 61, 72, 0.45);
}
.bk-step-num {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(27, 61, 72, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(27, 61, 72, 0.55);
  font-weight: 800;
  transition: all 0.25s ease;
}
.bk-step-label { display: inline-block; }
.bk-step-sep {
  width: 2rem;
  height: 1.5px;
  background: rgba(27, 61, 72, 0.12);
  border-radius: 999px;
  list-style: none;
}
.bk-step.is-active {
  color: #1b3d48;
}
.bk-step.is-active .bk-step-num {
  background: #bf6826;
  color: #fff;
}
.bk-step.is-done .bk-step-num {
  background: var(--swingo-sage, #a1b081);
  color: #fff;
}
@media (max-width: 640px) {
  .bk-step-label { display: none; }
  .bk-step-sep { width: 1rem; }
}

.bk-modal-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(27, 61, 72, 0.06);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1b3d48;
  transition: background 0.15s ease;
}
.bk-modal-close svg { width: 1.1rem; height: 1.1rem; }
.bk-modal-close:hover { background: rgba(27, 61, 72, 0.12); }

/* Trust strip inside modal (top, dark — copy of Welcome Pickups pattern) */
.bk-modal-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: #1b3d48;
  color: #fff;
}
.bk-modal-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bk-modal-trust-item svg {
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
  color: #dab162;
}
.bk-modal-trust-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.bk-modal-trust-item span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .bk-modal-trust { display: none; }
}

/* Body — single column (Order Summary panel currently hidden) */
.bk-modal-body {
  display: block;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
}

.bk-modal-main {
  background: transparent;
  padding: 1.5rem 1.65rem 1.25rem;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* Hide the old desktop Order Summary aside (replaced by .bk-price-bar at top) */
.bk-modal-summary { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════
   .bk-price-bar — always-visible price summary at top of every modal step
   Shows: [van icon · vehicle name | direction · route] [ Total · €XX ]
   Updates live as user changes direction radio, luggage steppers, pax.
   ═══════════════════════════════════════════════════════════════════════ */
.bk-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #1b3d48 0%, #25525f 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bk-price-bar-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}
.bk-price-bar-vehicle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.005em;
}
.bk-price-bar-vehicle svg {
  width: 1rem;
  height: 1rem;
  color: #dab162;
  flex-shrink: 0;
}
/* ═══════════════════════════════════════════════════════════════════════
   .bk-review — Step 2 booking summary panel (above Stripe form)
   ═══════════════════════════════════════════════════════════════════════ */
.bk-review {
  background: linear-gradient(180deg, #ffffff 0%, var(--swingo-egg-light, #f5f2e9) 100%);
  border: 1px solid rgba(27, 61, 72, 0.08);
  border-radius: 1rem;
  padding: 1.25rem 1.4rem 1.1rem;
  margin-bottom: 1.6rem;
  box-shadow: 0 8px 24px -16px rgba(27, 61, 72, 0.15);
}
.bk-review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.07);
}
.bk-review-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bf6826;
  display: block;
  margin-bottom: 0.15rem;
}
.bk-review-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1b3d48;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.bk-review-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.7rem;
  background: rgba(191, 104, 38, 0.08);
  color: #bf6826;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.bk-review-edit:hover { background: rgba(191, 104, 38, 0.16); }
.bk-review-edit svg { width: 0.85rem; height: 0.85rem; }
.bk-review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.bk-review-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.4;
}
.bk-review-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(27, 61, 72, 0.65);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bk-review-label svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #bf6826;
  flex-shrink: 0;
}
.bk-review-value {
  color: #1b3d48;
  font-weight: 600;
}
.bk-review-price {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(27, 61, 72, 0.18);
}
.bk-review-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
  color: rgba(27, 61, 72, 0.8);
  padding: 0.2rem 0;
  font-variant-numeric: tabular-nums;
}
.bk-review-price-row-meta {
  font-size: 0.82rem;
  color: rgba(27, 61, 72, 0.6);
}
.bk-review-price-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1b3d48;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(27, 61, 72, 0.1);
  margin-top: 0.4rem;
}
.bk-review-price-total span:last-child {
  color: #bf6826;
  font-size: 1.4rem;
}
.bk-review-price-meta-text {
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.55);
  margin-top: 0.5rem;
  text-align: right;
}

/* Section title within a step (e.g. "Payment details" header) */
.bk-step-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1b3d48;
  margin: 0 0 0.9rem;
  letter-spacing: -0.005em;
}

@media (max-width: 640px) {
  .bk-review { padding: 1rem 1.1rem; }
  .bk-review-row { grid-template-columns: 6.5rem 1fr; font-size: 0.84rem; }
  .bk-review-label { font-size: 0.7rem; }
  .bk-review-title { font-size: 1.05rem; }
}

.bk-price-bar-route {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bk-price-bar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 0.1rem;
}
.bk-price-bar-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.bk-price-bar-amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: #dab162;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .bk-price-bar {
    padding: 0.7rem 1rem;
    gap: 0.7rem;
  }
  .bk-price-bar-vehicle { font-size: 0.82rem; }
  .bk-price-bar-route   { font-size: 0.7rem; }
  .bk-price-bar-amount  { font-size: 1.2rem; }
}

/* Tighter spacing inside modal steps */
.bk-step-panel { display: none; flex: 1; }
.bk-step-panel.is-active { display: block; }
.bk-step-title { margin-bottom: 0.3rem; font-size: 1.4rem; }
.bk-step-sub  { margin-bottom: 1.25rem; font-size: 0.9rem; }

/* Step panels — only active is visible */
.bk-step-panel { display: none; flex: 1; }
.bk-step-panel.is-active { display: block; }

.bk-step-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1b3d48;
  margin-bottom: 0.4rem;
}
.bk-step-sub {
  font-size: 0.94rem;
  color: rgba(27, 61, 72, 0.68);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* (Legacy .bk-mobile-summary removed — replaced by .bk-price-bar at modal top
   which is now always visible on every step, desktop and mobile.) */

/* ─── Step 1 redesign — clean blocks matching hero card style ─── */
.bk-block { margin-bottom: 1.1rem; }
.bk-block:last-child { margin-bottom: 0; }
.bk-block-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #1b3d48;
  margin-bottom: 0.5rem;
  text-transform: none;
}
.bk-tag-included {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.5rem;
  background: rgba(161, 176, 129, 0.18);
  color: #6d8049;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Direction cards: compact horizontal cards */
.bk-dir-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.bk-dir-loading {
  padding: 0.85rem 1rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(27, 61, 72, 0.55);
}
.bk-dir-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.95rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.bk-dir-card input { position: absolute; opacity: 0; pointer-events: none; }
.bk-dir-card:hover { background: #ece6ce; }
.bk-dir-card:has(input:checked) {
  background: rgba(191, 104, 38, 0.07);
  border-color: #bf6826;
}
.bk-dir-card::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  border: 1.8px solid rgba(27, 61, 72, 0.3);
  background: #fff;
  flex-shrink: 0;
  transition: all 0.15s ease;
  position: relative;
}
.bk-dir-card:has(input:checked)::before {
  border-color: #bf6826;
  background: radial-gradient(circle at center, #bf6826 0 38%, #fff 40% 100%);
}
.bk-dir-card-body {
  flex: 1;
  min-width: 0;
}
.bk-dir-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b3d48;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.bk-dir-card-desc {
  font-size: 0.75rem;
  color: rgba(27, 61, 72, 0.62);
  margin-top: 0.2rem;
  line-height: 1.35;
}
.bk-dir-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #bf6826;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bk-dir-card-price span {
  font-size: 0.62rem;
  color: rgba(27, 61, 72, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

/* Section label inside steps */
.bk-section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(27, 61, 72, 0.6);
  margin: 1.25rem 0 0.7rem;
}
.bk-section-label:first-of-type { margin-top: 0; }
.bk-included {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  background: rgba(161, 176, 129, 0.18);
  color: #6d8049;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

/* Direction picker (3 stacked cards: Arrival / Departure / Round-Trip) */
.bk-direction-pick {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.bk-direction-loading {
  padding: 1rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border-radius: 0.7rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(27, 61, 72, 0.6);
}
.bk-direction-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}
.bk-direction-card input { position: absolute; opacity: 0; pointer-events: none; }
.bk-direction-card:hover { background: #ece6ce; }
.bk-direction-card:has(input:checked) {
  background: rgba(191, 104, 38, 0.06);
  border-color: #bf6826;
}
.bk-direction-radio {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  border: 2px solid rgba(27, 61, 72, 0.3);
  background: #fff;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: border-color 0.15s ease;
}
.bk-direction-card:has(input:checked) .bk-direction-radio {
  border-color: #bf6826;
}
.bk-direction-card:has(input:checked) .bk-direction-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #bf6826;
}
.bk-direction-body { flex: 1; }
.bk-direction-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.bk-direction-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #1b3d48;
  letter-spacing: -0.01em;
}
.bk-direction-price {
  font-size: 1rem;
  font-weight: 800;
  color: #bf6826;
}
.bk-direction-desc {
  font-size: 0.82rem;
  color: rgba(27, 61, 72, 0.7);
  line-height: 1.45;
  margin-bottom: 0.45rem;
}
.bk-direction-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.55);
}
.bk-direction-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.bk-direction-tag svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--swingo-sage, #a1b081);
}

/* Place select (dropdown) — leave room for the chevron */
.bk-place-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3d48' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Collapsible recap on Step 1 */
.bk-recap-collapsible {
  margin-top: 1rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border-radius: 0.7rem;
  padding: 0.85rem 1rem;
}
.bk-recap-collapsible summary {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(27, 61, 72, 0.7);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bk-recap-collapsible summary::-webkit-details-marker { display: none; }
.bk-recap-collapsible summary::before {
  content: "▸";
  color: rgba(27, 61, 72, 0.5);
  transition: transform 0.15s ease;
}
.bk-recap-collapsible[open] summary::before {
  transform: rotate(90deg);
}
.bk-recap-collapsible .bk-recap-grid {
  margin-top: 0.85rem;
  margin-bottom: 0.5rem;
}

/* Step 1 — Recap grid */
.bk-recap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.bk-recap-item {
  background: var(--swingo-egg-light, #f5f2e9);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
}
.bk-recap-item-full { grid-column: span 2; }
.bk-recap-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: rgba(27, 61, 72, 0.55);
  margin-bottom: 0.2rem;
}
.bk-recap-item strong {
  font-size: 0.98rem;
  color: #1b3d48;
  font-weight: 700;
}
.bk-recap-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #bf6826;
  margin-top: 0.5rem;
  text-decoration: none;
}
.bk-recap-edit:hover { text-decoration: underline; }

/* Form fields (Step 2 + 3) */
.bk-field { margin-bottom: 1rem; }
.bk-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1b3d48;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.bk-required { color: #bf6826; }
.bk-optional {
  color: rgba(27, 61, 72, 0.5);
  font-weight: 500;
}
.bk-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1.5px solid rgba(27, 61, 72, 0.15);
  border-radius: 0.65rem;
  font-size: 0.95rem;
  color: #1b3d48;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.bk-input:focus {
  outline: none;
  border-color: #bf6826;
  background: #fff;
}
textarea.bk-input { resize: vertical; min-height: 5rem; }
.bk-field-hint {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: rgba(27, 61, 72, 0.55);
  line-height: 1.4;
}

/* Radio cards (passenger role) */
.bk-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.bk-radio-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.7rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.bk-radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.bk-radio-card:has(input:checked) {
  background: rgba(191, 104, 38, 0.06);
  border-color: #bf6826;
}
.bk-radio-dot {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  border: 2px solid rgba(27, 61, 72, 0.3);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.bk-radio-card:has(input:checked) .bk-radio-dot {
  border-color: #bf6826;
}
.bk-radio-card:has(input:checked) .bk-radio-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #bf6826;
}
.bk-radio-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1b3d48;
}

/* Checkboxes (add-ons + consent) */
.bk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border-radius: 0.7rem;
  cursor: pointer;
  margin-bottom: 0.6rem;
  transition: background 0.15s ease;
}
.bk-checkbox:hover { background: #ece6ce; }
.bk-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.bk-checkbox-box {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.3rem;
  border: 1.8px solid rgba(27, 61, 72, 0.3);
  background: #fff;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: all 0.15s ease;
}
.bk-checkbox:has(input:checked) .bk-checkbox-box {
  background: #bf6826;
  border-color: #bf6826;
}
.bk-checkbox:has(input:checked) .bk-checkbox-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3e%3cpath d='M5 13l4 4L19 7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.9rem;
}
.bk-checkbox-content { flex: 1; }
.bk-checkbox-content strong {
  display: block;
  font-size: 0.92rem;
  color: #1b3d48;
  margin-bottom: 0.15rem;
  font-weight: 700;
}
.bk-checkbox-content span {
  display: block;
  font-size: 0.78rem;
  color: rgba(27, 61, 72, 0.65);
  line-height: 1.4;
}
.bk-checkbox-compact { padding: 0.6rem 0.85rem; }
.bk-checkbox-compact .bk-checkbox-content span {
  font-size: 0.82rem;
  color: rgba(27, 61, 72, 0.78);
}

/* Generic section card inside booking modal — uniform style + generous breathing room */
.bk-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.1);
}
.bk-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.bk-section-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #1b3d48;
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.bk-section-sub {
  font-size: 0.85rem;
  color: rgba(27, 61, 72, 0.6);
  margin: 0 0 1.15rem;
  line-height: 1.5;
}
.bk-section-optional {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(27, 61, 72, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(27, 61, 72, 0.06);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.bk-section .quote-field {
  margin-bottom: 1.25rem;
}
.bk-section .quote-field:last-child {
  margin-bottom: 0;
}
.bk-section .quote-field-hint {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.5;
}
.bk-section .quote-pax {
  margin-top: 0.25rem;
}

/* Step title/subtitle need more breathing room before content starts */
.bk-step-title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.bk-step-sub {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Flat layout: every direct child of step-panel = field, separated by gap */
.bk-step-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.bk-step-panel.is-active > h2,
.bk-step-panel.is-active > p {
  margin-bottom: 0;
}
.bk-step-panel.is-active > p + * {
  margin-top: 0.35rem;
}

/* Modal main panel needs more horizontal padding so content breathes */
.bk-modal-main {
  padding: 1.75rem 2rem 1.5rem;
}
@media (max-width: 900px) {
  .bk-modal-main { padding: 1.4rem 1.15rem 1.25rem; }
  .bk-section { margin-bottom: 1.65rem; padding-bottom: 1.65rem; }
}

/* Tighter row gaps inside the form */
.bk-section .quote-field-row-2 {
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.bk-section .quote-field-row-2:last-child {
  margin-bottom: 0;
}

/* Checkbox cards in optional section — more padding, lighter look */
.bk-section .bk-checkbox {
  margin-bottom: 1rem;
}
.bk-section .bk-checkbox-compact {
  background: transparent;
  padding: 0.5rem 0;
  margin-bottom: 0;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
  padding-top: 1.25rem;
  border-radius: 0;
}

/* Flight group breathing inside .bk-section wrapper */
.bk-section .bk-flight-group {
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(27, 61, 72, 0.08);
  margin-top: 0.85rem;
}
.bk-section .bk-flight-group:first-of-type {
  margin-top: 0;
}
.bk-section .bk-flight-group + .bk-flight-group {
  margin-top: 0.85rem;
}

/* Flight info section (legacy class kept; new design uses .bk-section) */
.bk-flight-section {
  margin: 0 0 1rem;
}
.bk-flight-header {
  margin-bottom: 1rem;
}
.bk-flight-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1b3d48;
  margin: 0;
}
.bk-flight-sub {
  font-size: 0.75rem;
  color: rgba(27, 61, 72, 0.6);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.bk-flight-group {
  border: none;
  padding: 0.85rem 0;
  margin: 0;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
}
.bk-flight-group:first-of-type {
  border-top: none;
  padding-top: 0;
}
.bk-flight-group-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1b3d48;
  margin-bottom: 0.75rem;
  padding: 0;
}
.bk-flight-group-title svg {
  width: 1rem;
  height: 1rem;
  color: #bf6826;
  flex-shrink: 0;
}
.bk-flight-group .quote-field {
  margin-bottom: 0.6rem;
}
.bk-flight-group .quote-field:last-child {
  margin-bottom: 0;
}
.bk-flight-group .quote-field-row-2 {
  margin-bottom: 0;
}

.bk-section-divider {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(27, 61, 72, 0.55);
  margin: 1.5rem 0 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
}

/* Promo row (Step 3) */
.bk-promo-row {
  display: flex;
  gap: 0.5rem;
}
.bk-promo-row .bk-input { flex: 1; }
.bk-promo-apply {
  padding: 0 1.25rem;
  background: #1b3d48;
  color: #fff;
  border: none;
  border-radius: 0.65rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.bk-promo-apply:hover { background: #0f2a32; }

/* Stripe mount + trust */
.bk-stripe-mount {
  padding: 1rem;
  background: #fff;
  border: 1.5px solid rgba(27, 61, 72, 0.15);
  border-radius: 0.65rem;
  margin-bottom: 1rem;
  min-height: 3.5rem;
}
.bk-stripe-trust {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
.bk-stripe-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.7);
  font-weight: 500;
}
.bk-stripe-trust svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--swingo-sage, #a1b081);
  flex-shrink: 0;
}

/* Confirmation (Step 4) */
.bk-confirm {
  text-align: center;
  padding: 2.5rem 1rem 1rem;
}
.bk-confirm-tick {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: var(--swingo-sage, #a1b081);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.bk-confirm-tick svg { width: 2rem; height: 2rem; color: #fff; }
.bk-confirm-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1b3d48;
  margin-bottom: 0.4rem;
}
.bk-confirm-sub {
  font-size: 0.95rem;
  color: rgba(27, 61, 72, 0.68);
  margin-bottom: 0.85rem;
}
.bk-confirm-code {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #1b3d48;
  margin-bottom: 1.25rem;
}
.bk-confirm-meta {
  font-size: 0.85rem;
  color: rgba(27, 61, 72, 0.65);
  margin-bottom: 1.25rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.bk-confirm-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.bk-confirm-wa svg { width: 1.2rem; height: 1.2rem; }
.bk-confirm-wa:hover { background: #1ebe5c; }

/* Footer nav */
.bk-modal-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
}
.bk-modal-footer-spacer { flex: 1; }
.bk-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.2rem;
  background: transparent;
  border: 1.5px solid rgba(27, 61, 72, 0.18);
  border-radius: 999px;
  color: #1b3d48;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.bk-btn-back:hover { background: rgba(27, 61, 72, 0.06); }

.bk-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  background: #bf6826;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px -8px rgba(191, 104, 38, 0.45);
  transition: background 0.15s ease, transform 0.1s ease;
}
.bk-btn-next:hover:not(:disabled) { background: #8d4711; }
.bk-btn-next:active:not(:disabled) { transform: translateY(1px); }
.bk-btn-next:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.bk-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(220, 38, 38, 0.08);
  border-left: 3px solid #dc2626;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  color: #991b1b;
}

/* RIGHT sidebar — Order summary (sticky so it follows user as they scroll).
   Background is transparent because the body gradient already paints the
   cream column — no more "empty cream block" below sticky summary. */
.bk-modal-summary {
  background: transparent;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  align-self: start;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}
/* Mobile: restore explicit bg since gradient is off */
@media (max-width: 900px) {
  .bk-modal-summary { background: var(--swingo-egg-light, #f5f2e9); }
}
.bk-summary-hero {
  position: relative;
  height: 11rem;
  flex-shrink: 0;
}
.bk-summary-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bk-summary-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,61,72,0.3) 0%, rgba(27,61,72,0.7) 100%);
}
.bk-summary-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  background: rgba(27, 61, 72, 0.85);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.bk-summary-heading {
  position: absolute;
  bottom: 0.85rem;
  left: 1rem;
  z-index: 2;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.bk-summary-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}

.bk-summary-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
  margin-bottom: 1rem;
}
.bk-summary-row svg {
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(27, 61, 72, 0.55);
  flex-shrink: 0;
}
.bk-summary-row span {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b3d48;
}
.bk-summary-edit {
  font-size: 0.78rem;
  color: #bf6826;
  font-weight: 600;
  text-decoration: none;
}
.bk-summary-edit:hover { text-decoration: underline; }

/* Vertical A → B route display */
.bk-summary-route {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.bk-route-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.4rem;
}
.bk-route-marker {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 2px solid #1b3d48;
  background: #fff;
  flex-shrink: 0;
}
.bk-route-marker-b {
  background: #1b3d48;
}
.bk-route-track {
  width: 2px;
  flex: 1;
  background: rgba(27, 61, 72, 0.18);
  margin: 0.2rem 0;
  min-height: 1.5rem;
}
.bk-route-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.bk-route-stop strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b3d48;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.bk-route-stop span {
  display: block;
  font-size: 0.78rem;
  color: rgba(27, 61, 72, 0.62);
  margin-top: 0.15rem;
}

.bk-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
}
.bk-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: #fff;
  border: 1px solid rgba(27, 61, 72, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1b3d48;
}
.bk-chip svg { width: 0.92rem; height: 0.92rem; }

/* Total */
.bk-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
  margin-bottom: 0.85rem;
}
.bk-summary-total strong {
  display: block;
  font-size: 0.95rem;
  color: #1b3d48;
  font-weight: 800;
}
.bk-summary-total span {
  display: block;
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.55);
  margin-top: 0.15rem;
}
.bk-summary-amount {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #bf6826;
}

.bk-summary-cancel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(27, 61, 72, 0.68);
  margin: 0;
  line-height: 1.4;
}
.bk-summary-cancel svg { flex-shrink: 0; }

/* Mobile responsive — modal becomes near-fullscreen, sidebar stacks at bottom */
@media (max-width: 900px) {
  .bk-modal { padding: 0; align-items: stretch; }
  .bk-modal-panel {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .bk-modal-body {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .bk-modal-summary {
    order: 2;
    border-top: 1px solid rgba(27, 61, 72, 0.1);
    position: static;        /* unsticky on mobile */
    max-height: none;
  }
  .bk-modal-main {
    order: 1;
    padding: 1.25rem 1rem 1rem;
  }
  .bk-summary-hero { height: 7rem; }
  .bk-step-title { font-size: 1.35rem; }
}

.hero-quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Service segmented picker */
.hero-quote-service-pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}
/* 2-option variant (Transfer / Private Driver) — bigger cards, more breathing room */
.hero-quote-service-pick-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
.hero-quote-service-pick-2 .hero-quote-service-card {
  padding: 0.95rem 0.5rem 0.85rem;
  gap: 0.35rem;
}
.hero-quote-service-pick-2 .hero-quote-service-icon {
  width: 1.4rem;
  height: 1.4rem;
}
.hero-quote-service-pick-2 .hero-quote-service-label {
  font-size: 0.92rem;
}
.hero-quote-service-pick-2 .hero-quote-service-meta {
  font-size: 0.7rem;
  margin-top: 0.05rem;
}
.hero-quote-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.7rem 0.3rem 0.65rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.85rem;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}
.hero-quote-service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.hero-quote-service-card:hover {
  background: #ece6ce;
}
.hero-quote-service-card:has(input:checked) {
  background: rgba(191, 104, 38, 0.08);
  border-color: #bf6826;
}
.hero-quote-service-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #1b3d48;
}
.hero-quote-service-card:has(input:checked) .hero-quote-service-icon {
  color: #bf6826;
}
.hero-quote-service-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hero-quote-service-meta {
  font-size: 0.65rem;
  color: rgba(27, 61, 72, 0.6);
  font-weight: 500;
}

/* Quote form fields */
.hero-quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-quote-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(27, 61, 72, 0.6);
}
.hero-quote-input-wrap {
  position: relative;
}
.hero-quote-input-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: rgba(27, 61, 72, 0.45);
  pointer-events: none;
}
.hero-quote-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.7rem;
  font-size: 0.92rem;
  color: #1b3d48;
  font-family: inherit;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.hero-quote-input-wrap .hero-quote-input {
  padding-left: 2.3rem;
}
.hero-quote-input::placeholder {
  color: rgba(27, 61, 72, 0.4);
}
.hero-quote-input:focus {
  outline: none;
  border-color: #bf6826;
  background: #fff;
}

.hero-quote-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

/* Duration chip selector (Private Driver: 2h / 4h / 6h / 8h) */
.hero-quote-duration-pick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.hero-quote-duration-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.25rem;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.65rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1b3d48;
  transition: all 0.18s ease;
}
.hero-quote-duration-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.hero-quote-duration-chip:hover { background: #ece6ce; }
.hero-quote-duration-chip:has(input:checked) {
  background: rgba(191, 104, 38, 0.08);
  border-color: #bf6826;
  color: #bf6826;
}

/* Label hint (e.g. "1-4 pax · standard vehicle") */
.hero-quote-label-hint {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
  color: rgba(27, 61, 72, 0.55);
  margin-left: 0.45rem;
}

/* Quote steppers */
.hero-quote-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--swingo-egg-light, #f5f2e9);
  border: 1.5px solid transparent;
  border-radius: 0.7rem;
  padding: 0.3rem;
}
.hero-quote-stepper-btn {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1.5px solid #bf6826;
  color: #bf6826;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.hero-quote-stepper-btn:hover:not(:disabled) {
  background: #bf6826;
  color: #fff;
}
.hero-quote-stepper-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(27, 61, 72, 0.2);
  color: rgba(27, 61, 72, 0.3);
}
.hero-quote-stepper-count {
  font-size: 1rem;
  font-weight: 800;
  color: #1b3d48;
}

/* Quote trust strip (bottom of card) */
.hero-quote-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.85rem;
  margin-top: 0.6rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
  list-style: none;
  padding-left: 0;
}
.hero-quote-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.65);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   Mobile tweaks for cinematic hero
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-title { font-size: 2.5rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-proof-grid li { font-size: 0.88rem; }
  .hero-avatars img,
  .hero-avatars-more {
    width: 2rem;
    height: 2rem;
    border-width: 2px;
  }
  .hero-avatars img { margin-right: -0.55rem; }
  .hero-avatars-text { font-size: 0.78rem; }
  .hero-quote-card {
    padding: 1.3rem 1.1rem;
    border-radius: 1.15rem;
    margin-top: 0.5rem;
  }
  .hero-quote-title { font-size: 1.25rem; }
  .hero-quote-service-label { font-size: 0.72rem; }
  .hero-quote-service-meta { font-size: 0.6rem; }
}

/* Hide all old hero-light artifacts since we use cinematic now */
.hero-light,
.hero-blob,
.hero-social-proof,
.hero-headline,
.hero-subhead,
.hero-cta-row,
.hero-service-chips,
.hero-image-card,
.hero-trust-strip {
  /* These selectors are intentionally left alone — old classes that no longer
     appear in markup. Kept for backward compatibility if any are restored. */
}

/* ═══════════════════════════════════════════════════════════
   .hq-card field spacing — applies on ALL viewports
   (desktop, tablet, mobile). Tight but breathable: ~16px
   between each field block.
   ═══════════════════════════════════════════════════════════ */
.hq-card #hero-quote-form.quote-form {
  gap: 1rem !important;                /* 16px between form-level children */
}
.hq-card #hero-quote-form > * + *,
.hq-card [data-hq-fields] > * + *,
.hq-card [data-hq-fields] > .quote-field + .quote-field-row-2,
.hq-card [data-hq-fields] > .quote-field-row-2 + .quote-field {
  margin-top: 1rem !important;         /* 16px between fields inside wrapper */
}
.hq-card .quote-field {
  gap: 0.5rem !important;              /* tighter label ↔ input gap */
}
.hq-card .quote-cta {
  margin-top: 1.4rem !important;       /* small lift before CTA */
}
.hq-card .quote-trust {
  margin-top: 0.85rem !important;      /* small lift before trust strip */
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-FIRST OVERHAUL — applies on top of everything above.
   Goal: bulletproof mobile UX (touch targets ≥40px, 16px inputs
   to prevent iOS zoom, modal full-screen, sticky CTA footer).
   ═══════════════════════════════════════════════════════════ */

/* ── iOS zoom prevention — every text input ≥16px on mobile ── */
@media (max-width: 768px) {
  .quote-input,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
  /* Smaller inputs (counters etc.) can stay tiny */
  .hq-counter-meta strong,
  .hq-counter-meta span,
  .quote-pax-title,
  .quote-pax-meta {
    font-size: inherit !important;
  }
}

/* ── Bigger touch targets for steppers ── */
@media (max-width: 768px) {
  .quote-pax-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.05rem;
  }
  .quote-pax {
    padding: 0.5rem 1rem;
  }
  .quote-pax-row {
    padding: 0.75rem 0;
  }
  .hq-counter-btn,
  .hero-quote-pax-btn,
  .hero-quote-stepper-btn {
    width: 36px;
    height: 36px;
  }
}

/* ── Hero card mobile — more breathing room inside the card ── */
@media (max-width: 640px) {
  .hq-card {
    padding: 1.5rem 1.4rem 1.4rem !important;
    border-radius: 1.15rem;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .quote-title { font-size: 1.05rem; }
  .quote-price-value { font-size: 1.5rem; }
  .quote-header {
    margin-bottom: 1.2rem;
    padding-bottom: 1.1rem;
  }
  /* (Mobile-specific tweaks moved OUTSIDE this media query so they apply
     on every viewport — see ".hq-card field spacing" block above.) */
  /* Service tabs (Transfer / Private Driver) — extra space below */
  .hq-card .quote-tour-pick { margin-bottom: 0.5rem; }
  /* Labels: a bit larger and a bit lower so the visual hierarchy reads clearly */
  .hq-card .quote-label {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
  }
}

/* ── Service tabs (Transfer / Private Driver) bigger on mobile ── */
@media (max-width: 640px) {
  .quote-tour-card {
    padding: 0.85rem 0.5rem;
    min-height: 56px;        /* Apple HIG touch target */
  }
  .quote-tour-title { font-size: 0.92rem; }
  .quote-tour-meta { font-size: 0.7rem; }
}

/* ── Direction picker (3 cards) compact mobile ── */
@media (max-width: 480px) {
  .quote-tour-pick-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
  }
  .quote-tour-pick-3 .quote-tour-card {
    padding: 0.65rem 0.35rem;
    min-height: 56px;
    justify-content: center;
  }
  .quote-tour-pick-3 .quote-tour-title { font-size: 0.82rem; }
  .quote-tour-pick-3 .quote-tour-meta { font-size: 0.62rem; line-height: 1.25; }
}

/* ── Date+Time row-2 on small mobile — keep side-by-side with breathing room ── */
@media (max-width: 380px) {
  .quote-field-row-2 {
    gap: 0.7rem;
  }
  .quote-time-pick {
    gap: 0.3rem;
  }
  .quote-time-pick .quote-input {
    padding: 0.85rem 0.35rem !important;
    padding-right: 1.4rem !important;
    background-position: right 0.25rem center;
    background-size: 0.85rem;
    font-size: 0.95rem;
  }
}

/* ── Modal full-screen on mobile + sticky footer ── */
@media (max-width: 900px) {
  .bk-modal {
    padding: 0;
    align-items: stretch;
  }
  .bk-modal-panel {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    width: 100%;
  }
  .bk-modal-topbar {
    padding: 0.75rem 1rem;
  }
  .bk-modal-main {
    padding: 1.25rem 1rem 1rem;
    flex: 1;
  }
  .bk-step-title { font-size: 1.3rem; }
  .bk-step-sub  { font-size: 0.88rem; margin-bottom: 1.25rem; }

  /* Sticky footer with Continue / Back buttons on mobile */
  .bk-modal-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 -1rem;
    padding: 0.85rem 1rem;
    background: #ffffff;
    border-top: 1px solid rgba(27, 61, 72, 0.1);
    box-shadow: 0 -4px 16px -6px rgba(0, 0, 0, 0.08);
    z-index: 5;
  }
  .bk-btn-next {
    padding: 1rem 1.5rem;
    flex: 1;
    justify-content: center;
  }
  .bk-btn-back {
    padding: 1rem 1.15rem;
  }
}

/* ── Modal trust strip + step progress smaller on mobile ── */
@media (max-width: 640px) {
  .bk-step-num {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.7rem;
  }
  .bk-step { font-size: 0.7rem; }
  .bk-step-sep { width: 0.85rem; }
}

/* ── Order summary chips/route on mobile ── */
@media (max-width: 900px) {
  .bk-summary-hero { height: 6.5rem; }
  .bk-summary-heading { font-size: 1rem; }
  .bk-summary-body { padding: 1.1rem 1rem 1.25rem; }
  .bk-summary-amount { font-size: 1.5rem; }
}

/* ── Hero badges wrap better on mobile ── */
@media (max-width: 480px) {
  .hero-badges { gap: 0.4rem; }
  .hero-badge {
    padding: 0.35rem 0.7rem;
    font-size: 0.74rem;
  }
  .hero-badge svg { width: 0.85rem; height: 0.85rem; }
}

/* ── Hero pill (TripAdvisor) wraps on small mobile ── */
@media (max-width: 380px) {
  .hero-pill {
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── Hero CTAs full-width on small mobile ── */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }
  .hero-ctas .cta-primary,
  .hero-ctas .hero-cta-wa-dark {
    width: 100%;
    justify-content: center;
  }
}

/* ── Avatar stack + text wraps cleanly ── */
@media (max-width: 480px) {
  .hero-avatars-row { gap: 0.85rem; }
  .hero-avatars img,
  .hero-avatars-more {
    width: 2rem; height: 2rem;
    border-width: 2px;
  }
  .hero-avatars img { margin-right: -0.55rem; }
}

/* ── Top bar (rating + phone + whatsapp) on mobile ── */
@media (max-width: 640px) {
  .top-bar {
    font-size: 0.72rem;
    padding: 0.5rem 0.85rem;
  }
}

/* ── Nav CTA button — keep visible on mobile but compact ── */
@media (max-width: 640px) {
  .hero-nav-cta {
    padding: 0.55rem 1rem !important;
    font-size: 0.82rem !important;
  }
}

/* ── Modal trust strip (top, dark) hidden on tablet+ mobile ── */
@media (max-width: 768px) {
  .bk-modal-trust { display: none !important; }
}

/* ── Flight info row-3 — stack on mobile (already done, reinforced) ── */
@media (max-width: 600px) {
  .quote-field-row-3 {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

/* ── Time picker (HH/MM) — ensure 2-col fits on tightest screens ── */
@media (max-width: 360px) {
  .quote-time-pick {
    grid-template-columns: 1fr 0.6rem 1fr;
    gap: 0.25rem;
  }
  .quote-time-sep { font-size: 1rem; }
  .quote-time-pick .quote-input {
    padding: 0.8rem 0.3rem !important;
    padding-right: 1.25rem !important;
    background-position: right 0.2rem center;
    background-size: 0.75rem;
  }
}

/* ── Inputs / selects — disable native iOS appearance ── */
input[type="date"],
input[type="time"],
select {
  -webkit-appearance: none;
  appearance: none;
}

/* ── Confirm/Continue button — better mobile tap area ── */
@media (max-width: 640px) {
  .hq-cta,
  .quote-cta,
  .bk-btn-next {
    padding: 1rem 1.4rem !important;
    font-size: 0.95rem !important;
    min-height: 48px;
  }
}

/* ── Smartsupp chat widget — ensure not overlapping sticky CTA on mobile ── */
@media (max-width: 900px) {
  #smartsupp-widget-container,
  div[id*="smartsupp"][class*="widget"] {
    z-index: 30 !important;  /* below modal (z=60) and sticky CTA (z=40) */
  }
}

