/* ═══════════════════════════════════════════════════════════
   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 .25s ease;
  box-shadow: 0 10px 28px -10px rgba(191, 104, 38, 0.55),
              0 2px 4px rgba(191, 104, 38, 0.18);
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.cta-primary:hover {
  background: var(--brick-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(191, 104, 38, 0.6),
              0 4px 8px rgba(191, 104, 38, 0.2);
}
.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;
}

/* ────── Tour card meta (shared by home best-sellers + tours listing) */
.tour-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(27, 61, 72, 0.55);
  margin-bottom: 0.85rem;
}
.tour-meta .dot {
  width: 3px; height: 3px;
  border-radius: 9999px;
  background: rgba(27, 61, 72, 0.25);
}

/* ────── 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;
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  padding: 0.5rem 0 1.75rem;
}
.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;
}
.timeline .t-time {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brick);
  padding-top: 0.5rem;
}

/* ─── Mobile: stack time above content; line + small dot on far left ─── */
@media (max-width: 640px) {
  .timeline {
    padding-left: 1.75rem;     /* room for the vertical line + dots */
  }
  .timeline::before {
    left: 0.5rem;              /* line near the far left edge */
    top: 0.5rem;
    bottom: 0.5rem;
  }
  .timeline li {
    grid-template-columns: 1fr;   /* single column — time stacked above content */
    gap: 0.125rem;
    padding: 0 0 1.5rem 0;
  }
  .timeline li::before {
    /* small dot anchored on the line, sticking out LEFT of the LI's text */
    left: -1.5rem;
    top: 0.45rem;
    width: 0.875rem;
    height: 0.875rem;
    border-width: 2.5px;
  }
  .timeline .t-time {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--brick);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-top: 0;
    margin-bottom: 0.1rem;
  }
}
.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;
}

/* Date chip — gives the grid a social-feed feel */
.photo-chip {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.28rem 0.6rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

/* Featured latest review (top of the feed) */
.feed-featured {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--egg-light);
  border-radius: 1.75rem;
  overflow: hidden;
  margin-bottom: 1.75rem;
  box-shadow: 0 18px 50px -28px rgba(27, 61, 72, 0.45);
}
@media (min-width: 768px) { .feed-featured { grid-template-columns: 1.05fr 1fr; } }
.feed-featured .feed-featured-img {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 260px;
  cursor: zoom-in;
}
.feed-featured .feed-featured-img img { height: 100%; object-fit: cover; }
.photo-card--plain figcaption { display: none; }
.feed-featured-body {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}
@media (min-width: 768px) { .feed-featured-body { padding: 2.75rem; } }
.feed-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brick);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  border-radius: 9999px;
}
.feed-featured-body .stars { color: var(--mustard); font-size: 1.1rem; letter-spacing: 0.14em; line-height: 1; }
.feed-featured-body blockquote {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--dark);
  font-weight: 500;
}
@media (min-width: 768px) { .feed-featured-body blockquote { font-size: 1.3rem; } }
.feed-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.3rem; }
.feed-author-avatar { width: 44px; height: 44px; border-radius: 9999px; object-fit: cover; flex-shrink: 0; }
.feed-author strong { display: block; font-size: 0.95rem; color: var(--dark); }
.feed-author span { font-size: 0.8rem; color: rgba(27, 61, 72, 0.6);
}

/* ────── Photo arc (testimonials collage, fanned above the heading) */
.photo-arc {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.6rem;
  padding-top: 0.5rem;
}
.photo-arc .arc-tile {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  height: 150px;
  border-radius: 1rem;
  cursor: zoom-in;
}
.photo-arc .arc-tile img { width: 100%; height: 100%; object-fit: cover; }
.photo-arc .arc-tile figcaption { display: none; }
.photo-arc .arc-tile:nth-child(1)  { height: 120px; transform: translateY(64px); }
.photo-arc .arc-tile:nth-child(2)  { height: 142px; transform: translateY(40px); }
.photo-arc .arc-tile:nth-child(3)  { height: 162px; transform: translateY(22px); }
.photo-arc .arc-tile:nth-child(4)  { height: 182px; transform: translateY(9px); }
.photo-arc .arc-tile:nth-child(5)  { height: 198px; transform: translateY(2px); }
.photo-arc .arc-tile:nth-child(6)  { height: 208px; transform: translateY(0); }
.photo-arc .arc-tile:nth-child(7)  { height: 198px; transform: translateY(2px); }
.photo-arc .arc-tile:nth-child(8)  { height: 182px; transform: translateY(9px); }
.photo-arc .arc-tile:nth-child(9)  { height: 162px; transform: translateY(22px); }
.photo-arc .arc-tile:nth-child(10) { height: 142px; transform: translateY(40px); }
.photo-arc .arc-tile:nth-child(11) { height: 120px; transform: translateY(64px); }
@media (max-width: 1023px) {
  .photo-arc { gap: 0.45rem; }
  .photo-arc .arc-tile:nth-child(1),
  .photo-arc .arc-tile:nth-child(11) { display: none; }
}
@media (max-width: 767px) {
  .photo-arc { gap: 0.35rem; }
  .photo-arc .arc-tile { border-radius: 0.7rem; }
  .photo-arc .arc-tile:nth-child(2),
  .photo-arc .arc-tile:nth-child(10) { display: none; }
  .photo-arc .arc-tile:nth-child(3)  { height: 92px;  transform: translateY(30px); }
  .photo-arc .arc-tile:nth-child(4)  { height: 108px; transform: translateY(16px); }
  .photo-arc .arc-tile:nth-child(5)  { height: 122px; transform: translateY(5px); }
  .photo-arc .arc-tile:nth-child(6)  { height: 130px; transform: translateY(0); }
  .photo-arc .arc-tile:nth-child(7)  { height: 122px; transform: translateY(5px); }
  .photo-arc .arc-tile:nth-child(8)  { height: 108px; transform: translateY(16px); }
  .photo-arc .arc-tile:nth-child(9)  { height: 92px;  transform: translateY(30px); }
}

/* Testimonials pill */
.testimonial-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(27, 61, 72, 0.18);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--dark);
}

/* ────── 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;
  /* !important to defeat @tailwindcss/forms base styles which are injected
     after styles.css and target [type='date'], [type='email'], etc. */
  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: var(--dark);
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
  font-family: inherit;
}
.form-input:focus {
  border-color: var(--brick) !important;
  box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15) !important;
}
.form-input::placeholder { color: rgba(27, 61, 72, 0.4); }

/* ─────────────────────────────────────────  CUSTOM SELECT
   Progressive enhancement of <select class="form-input|quote-input"> (enhancer
   in script.js). The native <select> stays in the DOM (synced, submits, validates,
   focusable) under a branded button + listbox. */
.cs-wrap { position: relative; }
.cs-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  text-align: left; cursor: pointer; appearance: none; -webkit-appearance: none;
  font-weight: 500;
}
.cs-trigger .cs-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-trigger.is-placeholder .cs-value { color: rgba(27, 61, 72, 0.4); font-weight: 400; }
.cs-trigger .cs-arrow { flex-shrink: 0; color: rgba(27, 61, 72, 0.55); transition: transform .18s ease; display: inline-flex; }
.cs-wrap.is-open .cs-trigger { border-color: var(--brick) !important; box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15) !important; }
.cs-wrap.is-open .cs-arrow { transform: rotate(180deg); color: var(--brick); }
.cs-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 60;
  background: #fff; border: 1.5px solid rgba(27, 61, 72, 0.12); border-radius: 1rem;
  box-shadow: 0 18px 44px -14px rgba(27, 61, 72, 0.30); padding: .375rem;
  max-height: 16rem; overflow-y: auto; opacity: 0; transform: translateY(-6px);
  pointer-events: none; transition: opacity .15s ease, transform .15s ease;
}
.cs-wrap.is-open .cs-panel { opacity: 1; transform: none; pointer-events: auto; }
.cs-opt {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .625rem .75rem; border-radius: .625rem; cursor: pointer;
  font-size: .9375rem; line-height: 1.3; color: var(--dark);
}
.cs-opt:hover, .cs-opt.is-active { background: #f5f2e9; color: var(--brick); }
.cs-opt.is-selected { font-weight: 600; }
.cs-opt.is-selected::after { content: '\2713'; color: var(--brick); font-weight: 700; }
.cs-opt[aria-disabled="true"] { color: rgba(27, 61, 72, 0.38); cursor: default; }
.cs-opt[aria-disabled="true"]:hover { background: transparent; color: rgba(27, 61, 72, 0.38); }
.cs-native {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; pointer-events: none; margin: 0;
  border: 0 !important; padding: 0 !important; box-shadow: none !important;
}
/* Branded date field (flatpickr altInput): whole field clickable, pointer cursor. */
input.cs-date { cursor: pointer; }
input.cs-date::placeholder { color: rgba(27, 61, 72, 0.4); }

/* ─────────────────────────────────────────  COOKIE CONSENT BANNER (GDPR) */
#cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 99999;
  background: var(--dark, #1b3d48); color: #fff;
  box-shadow: 0 -10px 34px -12px rgba(0, 0, 0, .45);
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  animation: cookieUp .28s ease;
}
@keyframes cookieUp { from { transform: translateY(100%); } to { transform: none; } }
.cookie-banner-inner {
  max-width: 72rem; margin: 0 auto; display: flex; align-items: center;
  gap: .85rem 1.5rem; flex-wrap: wrap; justify-content: space-between;
}
.cookie-banner-text { flex: 1 1 320px; margin: 0; font-size: .8125rem; line-height: 1.5; color: rgba(255, 255, 255, .82); }
.cookie-banner-text a { color: #fff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: .625rem; flex-shrink: 0; }
.cookie-btn {
  font: inherit; font-size: .875rem; font-weight: 600; white-space: nowrap;
  padding: .625rem 1.25rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: background .16s ease, border-color .16s ease;
}
.cookie-btn-primary { background: var(--brick, #bf6826); color: #fff; }
.cookie-btn-primary:hover { background: var(--brick-dark, #a5571f); }
.cookie-btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.cookie-btn-ghost:hover { border-color: #fff; }
@media (max-width: 640px) {
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ────── 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); }
/* When the persistent "Resume your booking" cart pill is showing, suppress the
   generic sticky "Book" bar so the two booking CTAs don't collide at the bottom. */
#sticky-cta.cart-hidden { display: none !important; }
/* Hide the Smartsupp chat widget while a booking modal is open (its huge
   z-index would otherwise float over the modal). Toggled via body.bk-modal-open. */
body.bk-modal-open #smartsupp-widget-container { display: none !important; }

/* ════════════════════════════════════════════════════════════════════
   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);
}
/* Mobile: tighter card so the CTA lands above the fold */
@media (max-width: 639px) {
  .hero-quote-card { padding: 1.125rem; border-radius: 1.25rem; }
  .hero-quote-card .quote-header { margin-bottom: 0.875rem; padding-bottom: 0.875rem; }
  .hero-quote-card .quote-form { gap: 0.625rem; }
  /* rating shows in the top bar already — drop the in-card repeat on mobile */
  .hero-quote-card .quote-rating { display: none; }
}
@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%;
  /* !important to defeat @tailwindcss/forms base styles */
  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: var(--dark);
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: #fff;
}
.quote-input:focus {
  border-color: var(--brick) !important;
  box-shadow: 0 0 0 3px rgba(191, 104, 38, 0.15) !important;
}

/* 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: 1.125rem;
  padding: 0.25rem 1rem;
}
.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 (min-width: 900px) {
  /* Wider panel on desktop to host the live cart aside */
  .booking-panel { max-width: 940px; }
}
@media (max-width: 639px) {
  .booking-panel { height: 100dvh; max-height: 100dvh; }
}

/* Two-column layout for desktop (body | cart) */
.booking-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;            /* allow children to scroll */
}
@media (min-width: 900px) {
  .booking-main { flex-direction: row; }
  .booking-main > .booking-body { flex: 1; min-width: 0; }
}

@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; } }

/* ════════════════════════════════════════════════════════════════════
   PERSISTENT CART PILL — appears when there's a saved-but-unfinished booking
   ════════════════════════════════════════════════════════════════════ */
.cart-pill {
  position: fixed;
  z-index: 50;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.625rem 0.625rem 0.875rem;
  background: #fff;
  border: 1px solid rgba(27, 61, 72, 0.1);
  border-radius: 9999px;
  box-shadow: 0 18px 50px -16px rgba(22, 21, 22, 0.32),
              0 4px 12px -4px rgba(22, 21, 22, 0.12);
  animation: pill-in .4s cubic-bezier(.16,1,.3,1);
  max-width: calc(100vw - 2rem);
}
.cart-pill.hidden {
  display: none;
}
@keyframes pill-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cart-pill-icon {
  width: 36px; height: 36px;
  background: var(--brick);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.cart-pill-icon svg { width: 18px; height: 18px; }
.cart-pill-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.cart-pill-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(27, 61, 72, 0.55);
  margin: 0;
  line-height: 1.2;
}
.cart-pill-meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.cart-pill-amount {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brick);
  letter-spacing: -0.02em;
  padding: 0 0.5rem;
  border-left: 1px solid rgba(27, 61, 72, 0.1);
}
.cart-pill-resume {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--brick);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, transform .25s ease;
}
.cart-pill-resume svg { width: 14px; height: 14px; }
.cart-pill-resume:hover { background: var(--brick-dark); transform: translateY(-1px); }
.cart-pill-close {
  width: 28px; height: 28px;
  background: rgba(27, 61, 72, 0.06);
  border: none;
  border-radius: 50%;
  color: rgba(27, 61, 72, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease, color .15s ease;
  flex-shrink: 0;
}
.cart-pill-close svg { width: 12px; height: 12px; }
.cart-pill-close:hover { background: rgba(27, 61, 72, 0.12); color: var(--dark); }

@media (max-width: 639px) {
  .cart-pill {
    right: 0.625rem;
    bottom: 0.625rem;
    padding: 0.5rem 0.5rem 0.5rem 0.625rem;
    gap: 0.5rem;
  }
  .cart-pill-icon { width: 32px; height: 32px; }
  .cart-pill-meta { max-width: 110px; font-size: 0.75rem; }
  .cart-pill-amount { font-size: 0.875rem; padding: 0 0.375rem; }
  .cart-pill-resume {
    padding: 0.45rem 0.625rem;
    font-size: 0.7rem;
  }
  .cart-pill-resume span { display: none; }
  .cart-pill-title { display: none; }
}

/* Hide pill while booking modal is open (state already visible inside) */
body.booking-open .cart-pill { display: none !important; }

/* ════════════════════════════════════════════════════════════════════
   LIVE CART (right aside on desktop, bottom drawer on mobile)
   ════════════════════════════════════════════════════════════════════ */
.booking-cart {
  background: #faf8f3;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
}
.cart-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--dark);
  text-transform: uppercase;
}
.cart-toggle {
  display: none;            /* hidden on desktop, shown on mobile via override */
  width: 32px; height: 32px;
  background: rgba(27, 61, 72, 0.06);
  border: none;
  border-radius: 50%;
  color: var(--dark);
  cursor: pointer;
  transition: transform .25s ease, background-color .15s ease;
  align-items: center;
  justify-content: center;
}
.cart-toggle svg { width: 16px; height: 16px; }
.cart-toggle:hover { background: rgba(27, 61, 72, 0.12); }
.booking-cart.expanded .cart-toggle { transform: rotate(180deg); }

.cart-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.cart-empty {
  color: rgba(27, 61, 72, 0.55);
  font-style: italic;
}
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  line-height: 1.4;
}
.cart-row-label {
  color: rgba(27, 61, 72, 0.7);
  font-size: 0.8125rem;
}
.cart-row-value {
  color: var(--dark);
  font-weight: 600;
  text-align: right;
}
.cart-divider {
  height: 1px;
  background: rgba(27, 61, 72, 0.1);
  margin: 0.625rem 0;
}
.cart-subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(27, 61, 72, 0.7);
  padding: 0.1rem 0;
}
.cart-subrow strong { color: var(--dark); font-weight: 600; }
.cart-addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.cart-addon-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brick);
  border-radius: 50%;
}
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1.5px solid rgba(27, 61, 72, 0.12);
  margin-top: 0.5rem;
}
.cart-total-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
}
.cart-total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brick);
  letter-spacing: -0.02em;
}
.cart-fee-hint {
  font-size: 0.7rem;
  color: rgba(27, 61, 72, 0.55);
  margin-top: 0.25rem;
  text-align: right;
}
.cart-savings-banner {
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(161,176,129,0.18), rgba(161,176,129,0.08));
  border: 1px solid rgba(161,176,129,0.4);
  border-radius: 0.625rem;
  color: #5a6b3d;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  animation: savings-pop .4s cubic-bezier(.16,1,.3,1) both;
}
.cart-savings-banner strong { color: #3d4a26; font-weight: 800; }
@keyframes savings-pop {
  from { opacity: 0; transform: translateY(4px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Compact bottom bar — only visible on mobile when collapsed */
.cart-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  cursor: pointer;
}
.cart-bar-meta { color: rgba(27, 61, 72, 0.7); }
.cart-bar-total { font-size: 1.05rem; font-weight: 800; color: var(--brick); }

/* Desktop: cart is full right column with breakdown always visible */
@media (min-width: 900px) {
  .booking-cart {
    width: 320px;
    border-top: none;
    border-left: 1px solid rgba(27, 61, 72, 0.08);
    overflow-y: auto;
  }
  .cart-toggle { display: none !important; }
  .cart-bar { display: none !important; }
  .cart-body { display: flex !important; }
}

/* Mobile / tablet (<900px): collapsible drawer at bottom of body */
@media (max-width: 899px) {
  .booking-cart {
    border-bottom: 1px solid rgba(27, 61, 72, 0.08);
  }
  .cart-toggle { display: inline-flex; }
  .cart-body { display: none; }
  .booking-cart.expanded .cart-body { display: flex; }
  /* Show compact bar only when collapsed */
  .cart-bar { display: flex; }
  .booking-cart.expanded .cart-bar { display: none; }
  .booking-cart.expanded .cart-head { border-bottom: 1px solid rgba(27,61,72,0.08); }
  .booking-cart:not(.expanded) .cart-head { border-bottom: none; }
}

.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; }
}

/* ────── Footer certification badges */
.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding: 0 1rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity .2s ease, transform .2s ease;
  text-decoration: none;
}
.footer-badge:hover { opacity: 1; transform: translateY(-2px); }
.footer-badge img {
  height: 64px;
  width: auto;
  display: block;
}
.footer-badge-clean svg {
  height: 64px;
  width: 64px;
  display: block;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 640px) {
  .footer-badge img,
  .footer-badge-clean svg { height: 52px; }
  .footer-badge-clean svg { width: 52px; }
  .footer-badges { gap: 1rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   INSTANT QUOTE WIDGET  (ported from the LovelyStay LP — hq-card)
   Additive: pairs with the existing .quote-header/.quote-price/.quote-field/
   .quote-tour-pick/.quote-pax rules above. Only the classes the existing
   stylesheet was MISSING are declared here.
   ═══════════════════════════════════════════════════════════════════ */
.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; }
}

/* Price-meta inside the hq-card carries an inline vehicle icon */
.hq-card .quote-price-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: flex-end;
}
.quote-price-icon {
  width: 0.85rem;
  height: 0.85rem;
  color: #bf6826;
  flex-shrink: 0;
}

/* Form layout helpers */
.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 x 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 x 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 - marks the selected row inside each column. */
.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; }

/* ─── 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;
}

/* 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; }


/* ═══════════════════════════════════════════════════════════════════
   TRANSFER / PRIVATE-DRIVER BOOKING MODAL (#booking-modal)
   Ported VERBATIM from the LovelyStay LP styles.css (all .bk-* rules).
   Additive — Swingo had no .bk-* classes. The .quote-*, .route-picker-*
   and .time-wheel-* the modal reuses are already defined above (quote widget).
   ═══════════════════════════════════════════════════════════════════ */

.bk-upgrade-note {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  background: #fbf4e4;
  border: 1px solid #ecdab0;
  border-left: 3px solid var(--mustard);
  border-radius: 12px;
  padding: 0.75rem 0.875rem;
  margin-top: 0.75rem;
}

.bk-upgrade-note[hidden] { display: none; }

.bk-upgrade-note > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  color: var(--brick);
}

.bk-upgrade-note-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--dark);
}

.bk-upgrade-note-text strong { font-weight: 700; font-size: 0.84rem; }

.bk-upgrade-note-text span { color: #51626a; }

.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;
}

.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;
}

[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;
}

.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;
}

.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); }

.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;
}

.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%;
}

.bk-modal-summary { display: none !important; }

.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 {
  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;
}

.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; }
}

.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;
}

.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;
}

.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;
}

.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;
}

.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);
}

.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;
}

.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;
}

.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; }

.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;
}

.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;
}

.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);
}

.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;
}

.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;
}

.bk-step-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bk-step-panel.is-active [data-bk-fields]:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bk-step-panel.is-active [data-bk-fields][hidden] {
  display: none !important;
}

.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;
}

.bk-step-panel.is-active input.quote-input,
.bk-step-panel.is-active select.quote-input,
.bk-step-panel.is-active textarea.quote-input,
.bk-step-panel.is-active .quote-time-trigger,
.bk-step-panel.is-active .route-picker-trigger {
  min-height: 3rem;            /* 48px — touch-friendly + matches Sintra */
  font-size: 0.95rem;
  border-radius: 1.125rem;
}

.bk-step-panel.is-active textarea.quote-input {
  min-height: 5.5rem;
}

.bk-step-panel.is-active .quote-label {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #1b3d48;
}

.bk-step-panel.is-active .quote-field:not([hidden]) {
  display: flex;
  flex-direction: column;
}

.bk-step-panel [hidden] { display: none !important; }

.bk-step-panel.is-active .quote-route-pair {
  gap: 0.6rem;
}

.bk-step-panel.is-active .quote-route-field .quote-label {
  margin-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .bk-modal-main { padding: 1.4rem 1.15rem 1.25rem; }
  .bk-section { margin-bottom: 1.65rem; padding-bottom: 1.65rem; }
}

.bk-section .quote-field-row-2 {
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.bk-section .quote-field-row-2:last-child {
  margin-bottom: 0;
}

.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;
}

.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;
}

.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);
}

.bk-pay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
}

.bk-step-section-title--inline {
  margin: 0;
  padding: 0;
  border-top: none;
}

.bk-card-brands {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.bk-card-brand {
  width: 2rem;
  height: auto;
  display: block;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

input.bk-input.bk-input--card,
.bk-step-panel input.bk-input--card {
  box-sizing: border-box !important;
  width: 100% !important;
  padding: 1rem 1.1rem !important;
  background: #fff !important;
  border: 1.5px solid rgba(27, 61, 72, 0.18) !important;
  border-radius: 0.85rem !important;
  min-height: 3.25rem !important;
  height: auto !important;
  font-size: 15px !important;
  line-height: 1.25rem !important;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif !important;
  color: #1b3d48 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

input.bk-input--card:focus,
.bk-step-panel input.bk-input--card:focus {
  border-color: #635BFF !important;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12) !important;
  outline: none !important;
}

input.bk-input--card::placeholder {
  color: rgba(27, 61, 72, 0.4) !important;
}

.bk-stripe-mount {
  position: relative;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1.5px solid rgba(27, 61, 72, 0.18);
  border-radius: 0.85rem;
  min-height: 3.25rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bk-stripe-mount.is-focus {
  border-color: #635BFF;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12);
}

.bk-stripe-mount.is-invalid {
  border-color: #dc2626;
}

.bk-stripe-skeleton {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 1.5rem;
}

.bk-stripe-skeleton-line {
  display: block;
  width: 60%;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(27, 61, 72, 0.06),
    rgba(27, 61, 72, 0.14),
    rgba(27, 61, 72, 0.06)
  );
  background-size: 200% 100%;
  animation: bkStripeShimmer 1.4s ease-in-out infinite;
}

.bk-card-errors {
  color: #dc2626 !important;
  margin-top: 0.4rem;
}

.bk-promo-details {
  margin-top: 0.5rem;
  border: 1px dashed rgba(27, 61, 72, 0.18);
  border-radius: 0.85rem;
  padding: 0;
  background: rgba(27, 61, 72, 0.02);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.bk-promo-details[open] {
  border-color: rgba(27, 61, 72, 0.3);
  background: #fff;
}

.bk-promo-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(27, 61, 72, 0.85);
  list-style: none;
  user-select: none;
}

.bk-promo-summary::-webkit-details-marker { display: none; }

.bk-promo-summary svg {
  width: 1rem;
  height: 1rem;
  color: var(--swingo-sage, #a1b081);
}

.bk-promo-details[open] .bk-promo-summary {
  border-bottom: 1px solid rgba(27, 61, 72, 0.08);
  width: 100%;
  justify-content: flex-start;
}

.bk-promo-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.bk-promo-row .bk-input,
.bk-promo-row .bk-input--promo {
  flex: 1;
  min-height: 2.75rem;
  border-radius: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bk-promo-apply {
  padding: 0 1.25rem;
  background: #1b3d48;
  color: #fff;
  border: none;
  border-radius: 0.65rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
}

.bk-promo-apply:hover { background: #0f2a32; }

.bk-promo-apply:active { transform: translateY(1px); }

.bk-promo-apply:disabled {
  background: rgba(27, 61, 72, 0.35);
  cursor: not-allowed;
}

.bk-promo-feedback {
  margin: 0 1rem 0.75rem;
  font-size: 0.78rem;
  color: rgba(27, 61, 72, 0.7);
}

.bk-promo-feedback.is-success {
  color: #16a34a;
  font-weight: 600;
}

.bk-promo-feedback.is-error {
  color: #dc2626;
  font-weight: 600;
}

.bk-pay-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(27, 61, 72, 0.08);
}

.bk-pay-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(27, 61, 72, 0.7);
  font-weight: 500;
}

.bk-pay-trust-item svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--swingo-sage, #a1b081);
  flex-shrink: 0;
}

.bk-pay-trust-stripe {
  color: rgba(27, 61, 72, 0.6);
  font-weight: 500;
}

.bk-stripe-logo {
  width: 2.6rem;
  height: auto;
  display: inline-block;
  margin-left: 0.1rem;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .bk-pay-head {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .bk-card-brand { width: 1.75rem; }
  .bk-pay-trust {
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }
}

.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; }

.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;
}

.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;
}

@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; }

.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; }

.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; }

@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; }
}

@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; }
}

@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; }
}

/* ── Transfer/Driver quote card: match the LovelyStay widget's roomier rhythm,
   scoped to .hq-card so the home/tour hero quote forms keep their own spacing ── */
.hq-card .quote-form   { gap: 1.65rem; }
.hq-card .quote-field  { gap: 0.45rem; }
.hq-card .quote-header { margin-bottom: 1.5rem; padding-bottom: 1.4rem; }

/* Quote card trust strip — compact, small sage checks, centered (match LovelyStay).
   Scoped to .hq-card so other .quote-trust usages keep their own look. */
.hq-card .quote-trust {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  margin-top: 0.85rem;
}
.hq-card .quote-trust svg { width: 0.85rem; height: 0.85rem; color: #a1b081; flex: 0 0 auto; }


/* ===== Ported verbatim from LovelyStay LP: flatpickr theme + mobile-first overhaul ===== */
/* ═══════════════════════════════════════════════════════════
   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; }


/* ═══════════════════════════════════════════════════════════
   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.1rem 1.3rem !important;
    border-radius: 1.15rem;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box;
    overflow: hidden;          /* anything inside overflowing is clipped, not pushed off-screen */
    min-width: 0;
  }
  /* Allow flex children to shrink below their intrinsic min-width so long
     content doesn't overflow the card horizontally. */
  .hq-card * { min-width: 0; }
  .hq-card .quote-header > * { min-width: 0; }
  .quote-title {
    font-size: 1.05rem;
    overflow-wrap: anywhere;   /* never pushes the card width */
  }
  .quote-price-value { font-size: 1.5rem; }
  .quote-price-meta {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.65rem;
  }
  .quote-header {
    margin-bottom: 1.2rem;
    padding-bottom: 1.1rem;
    gap: 0.6rem;
  }
  /* (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;
  }
}

/* Belt-and-braces: ensure the page never scrolls horizontally on mobile
   even if some Tailwind utility or 3rd-party widget injects a wide element. */
html, body { max-width: 100%; overflow-x: hidden; }

/* Very narrow (<=420px) — stack the header vertically so the long
   "Lisbon City Center Airport Transfer" title and the price chip don't
   compete for the same row and overflow the card. */
@media (max-width: 420px) {
  .hq-card .quote-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hq-card .quote-price {
    text-align: left;
    width: 100%;
  }
  .hq-card .quote-price-meta { justify-content: flex-start; }
}

/* ── 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 — centered */
  .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;
    justify-content: center;
  }
  /* Hide the spacer on mobile so buttons sit centered side-by-side */
  .bk-modal-footer-spacer { display: none; }
  .bk-btn-next {
    padding: 0.75rem 1.15rem;
    flex: 1 1 auto;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.88rem;
  }
  .bk-btn-back {
    padding: 0.75rem 0.95rem;
    font-size: 0.85rem;
  }
}

/* ── 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 {
    padding: 1rem 1.4rem !important;
    font-size: 0.95rem !important;
    min-height: 48px;
  }
  /* Modal Continue/Pay button — slimmer + nowrap so it doesn't break onto
     two lines and stays visually proportionate to the back button next to it */
  .bk-btn-next {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.88rem !important;
    min-height: 44px;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .bk-btn-next svg { width: 0.95rem; height: 0.95rem; }
  .bk-btn-back {
    padding: 0.75rem 0.95rem !important;
    font-size: 0.85rem;
    min-height: 44px;
  }
  .bk-modal-footer { gap: 0.5rem; }
}

/* ── 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) */
  }
}


/* ═══ Booking modal form — authoritative LovelyStay spacing (final word; dedupes
   the earlier conflicting .bk-modal-main copies). Matches LovelyStay exactly. ═══ */
.bk-modal-main {
  padding: 1.5rem 1.65rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.bk-step-panel.is-active,
.bk-step-panel.is-active [data-bk-fields]:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.bk-step-panel.is-active .quote-field:not([hidden]) { display: flex; flex-direction: column; }
.bk-step-panel.is-active .quote-label {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #1b3d48;
}
.bk-step-panel.is-active input.quote-input,
.bk-step-panel.is-active select.quote-input,
.bk-step-panel.is-active .quote-time-trigger,
.bk-step-panel.is-active .route-picker-trigger {
  min-height: 3rem;
  font-size: 0.95rem;
  border-radius: 1.125rem;
}
.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; }

/* Direction picker (and any 3/4-up segmented picker) — base grid that the port
   missed (Swingo only had the ≤480px override). Without this the modal's
   3-card Direction row collapsed to 2 columns on desktop. From LovelyStay. */
.quote-tour-pick-3 { grid-template-columns: repeat(3, 1fr); }
.quote-tour-pick-4 { grid-template-columns: repeat(4, 1fr); }

/* Missing modal-label helpers (port skipped these → the flight plane icon
   rendered at ~89px instead of a small inline glyph). From LovelyStay. */
.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; }
.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; }
.quote-label-hint { font-weight: 500; color: rgba(27, 61, 72, 0.55); font-size: 0.7rem; margin-left: 0.3rem; }

/* ═══ Hero quote card — EXACT LovelyStay spacing (verbatim). The earlier
   "margins" fix over-spaced it (form gap 1.65rem); LovelyStay is 1rem. Also
   tightens card padding (was 1.9/1.75 → 1.65/1.55). ═══ */
.hq-card { padding: 1.5rem 1.4rem 1.35rem; }
@media (min-width: 640px) { .hq-card { padding: 1.65rem 1.55rem 1.5rem; } }
.hq-card #hero-quote-form.quote-form { gap: 1rem !important; }
.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; }
.hq-card .quote-field { gap: 0.5rem !important; }
.hq-card .quote-cta { margin-top: 1.4rem !important; }
