/* =========================================================================
   Yatayat / OneSided Cabs — public website stylesheet (new design, 2026)
   All brand colours / fonts / radius come from the admin theme module via
   CSS custom properties (--site-*). Never hard-code brand colours here.
   ========================================================================= */

:root {
  /* safety fallbacks — overridden by theme()->cssVars() */
  --site-primary: #1d4ed8;
  --site-primary-dark: #1e40af;
  --site-secondary: #f97316;
  --site-accent: #facc15;
  --site-body-bg: #ffffff;
  --site-body-text: #1f2937;
  --site-heading: #0f172a;
  --site-link: #1d4ed8;
  --site-link-hover: #f97316;
  --site-header-bg: #ffffff;
  --site-header-text: #0f172a;
  --site-topbar-bg: #0a2e6e;
  --site-topbar-text: #ffffff;
  --site-menu: #0f172a;
  --site-menu-hover: #1d4ed8;
  --site-btn-bg: #f97316;
  --site-btn-text: #ffffff;
  --site-btn-hover: #ea580c;
  --site-footer-bg: #0f172a;
  --site-footer-text: #cbd5e1;
  --site-footer-heading: #ffffff;
  --site-footer-link-hover: #facc15;
  --site-card-bg: #ffffff;
  --site-border: #e5e7eb;
  --site-font-heading: 'Poppins', system-ui, sans-serif;
  --site-font-body: 'Inter', system-ui, sans-serif;
  --site-font-size: 16px;
  --site-radius: 12px;
  --site-container: 1280px;

  /* derived tokens */
  --site-radius-sm: calc(var(--site-radius) * 0.5);
  --site-radius-lg: calc(var(--site-radius) * 1.5);
  --site-radius-pill: 999px;
  --site-shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --site-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  --site-shadow-lg: 0 18px 48px rgba(15, 23, 42, .14);
  --site-muted: color-mix(in srgb, var(--site-body-text) 62%, transparent);
  --site-soft: color-mix(in srgb, var(--site-primary) 7%, var(--site-body-bg));
  --site-soft-2: color-mix(in srgb, var(--site-secondary) 9%, var(--site-body-bg));
  --site-ease: cubic-bezier(.2, .7, .2, 1);

  /* map bootstrap tokens */
  --bs-primary: var(--site-primary);
  --bs-primary-rgb: 29, 78, 216;
  --bs-secondary: var(--site-secondary);
  --bs-link-color: var(--site-link);
  --bs-link-hover-color: var(--site-link-hover);
  --bs-body-bg: var(--site-body-bg);
  --bs-body-color: var(--site-body-text);
  --bs-body-font-family: var(--site-font-body);
  --bs-body-font-size: var(--site-font-size);
  --bs-heading-color: var(--site-heading);
  --bs-border-color: var(--site-border);
  --bs-border-radius: var(--site-radius-sm);
  --bs-border-radius-lg: var(--site-radius);
}

/* ------------------------------------------------------------------ base */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--site-font-body);
  font-size: var(--site-font-size);
  color: var(--site-body-text);
  background: var(--site-body-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--site-font-heading);
  color: var(--site-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
}
a { color: var(--site-link); text-decoration: none; transition: color .2s var(--site-ease); }
a:hover { color: var(--site-link-hover); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--site-container); }
::selection { background: var(--site-primary); color: #fff; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--site-primary) 45%, transparent); outline-offset: 2px; }
.text-muted-2 { color: var(--site-muted) !important; }
.text-primary-site { color: var(--site-primary) !important; }
.text-secondary-site { color: var(--site-secondary) !important; }
.bg-soft { background: var(--site-soft) !important; }
.bg-soft-2 { background: var(--site-soft-2) !important; }
.fw-semibold { font-weight: 600; }
.small-caps { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 700; }
.lh-sm { line-height: 1.3; }
.ratio-cover img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------- buttons */
.btn { border-radius: var(--site-radius-sm); font-weight: 600; padding: .65rem 1.25rem; transition: all .22s var(--site-ease); }
.btn-site {
  background: var(--site-btn-bg);
  color: var(--site-btn-text);
  border: 1px solid var(--site-btn-bg);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--site-btn-bg) 30%, transparent);
}
.btn-site:hover, .btn-site:focus { background: var(--site-btn-hover); border-color: var(--site-btn-hover); color: var(--site-btn-text); transform: translateY(-1px); box-shadow: 0 10px 22px color-mix(in srgb, var(--site-btn-hover) 35%, transparent); }
.btn-site:disabled { opacity: .7; transform: none; }
.btn-site-primary { background: var(--site-primary); color: #fff; border: 1px solid var(--site-primary); }
.btn-site-primary:hover { background: var(--site-primary-dark); border-color: var(--site-primary-dark); color: #fff; }
.btn-site-outline { background: transparent; color: var(--site-primary); border: 1.5px solid var(--site-primary); }
.btn-site-outline:hover { background: var(--site-primary); color: #fff; }
.btn-site-light { background: #fff; color: var(--site-primary); border: 1px solid #fff; }
.btn-site-light:hover { background: var(--site-accent); border-color: var(--site-accent); color: var(--site-heading); }
.btn-site-ghost { background: rgba(255, 255, 255, .14); color: #fff; border: 1px solid rgba(255, 255, 255, .35); backdrop-filter: blur(6px); }
.btn-site-ghost:hover { background: rgba(255, 255, 255, .25); color: #fff; }
.btn-lg { padding: .9rem 1.7rem; font-size: 1.05rem; }
.btn-sm { padding: .4rem .85rem; font-size: .85rem; }
.btn-pill { border-radius: var(--site-radius-pill); }
.btn-icon { display: inline-flex; align-items: center; gap: .5rem; }
.btn .spinner-border { width: 1rem; height: 1rem; border-width: .15em; }

/* ---------------------------------------------------------------- topbar */
.site-topbar { background: var(--site-topbar-bg); color: var(--site-topbar-text); font-size: .85rem; }
.site-topbar a { color: var(--site-topbar-text); opacity: .92; }
.site-topbar a:hover { opacity: 1; color: var(--site-accent); }
.site-topbar .topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.site-topbar .topbar-list { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; margin: 0; padding: 0; list-style: none; }
.site-topbar .topbar-list li { display: inline-flex; align-items: center; gap: .4rem; }
.site-topbar .topbar-social { display: flex; gap: .25rem; }
.site-topbar .topbar-social a { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, .1); font-size: .9rem; }
.site-topbar .topbar-social a:hover { background: var(--site-accent); color: var(--site-heading); opacity: 1; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: var(--site-header-bg);
  color: var(--site-header-text);
  border-bottom: 1px solid var(--site-border);
  transition: box-shadow .25s var(--site-ease), background .25s;
}
.site-header.is-scrolled { box-shadow: var(--site-shadow); }
.site-header .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.site-header .brand img { height: 46px; width: auto; max-width: 190px; object-fit: contain; }
.site-nav { display: none; align-items: center; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.site-nav > li { position: relative; }
.site-nav > li > a {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .8rem; border-radius: var(--site-radius-sm);
  color: var(--site-menu); font-weight: 600; font-size: .93rem; white-space: nowrap;
}
.site-nav > li > a:hover, .site-nav > li.active > a { color: var(--site-menu-hover); background: var(--site-soft); }
.site-nav .dropdown-menu { border: 1px solid var(--site-border); border-radius: var(--site-radius); box-shadow: var(--site-shadow-lg); padding: .5rem; margin-top: 0; min-width: 220px; }
.site-nav .dropdown-item { border-radius: var(--site-radius-sm); padding: .55rem .8rem; font-weight: 500; }
.site-nav .dropdown-item:hover { background: var(--site-soft); color: var(--site-menu-hover); }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-actions .call-pill { display: none; align-items: center; gap: .5rem; padding: .45rem .85rem; border-radius: var(--site-radius-pill); border: 1px solid var(--site-border); color: var(--site-header-text); font-weight: 600; font-size: .9rem; }
.header-actions .call-pill i { color: var(--site-primary); }
.header-actions .call-pill:hover { border-color: var(--site-primary); color: var(--site-primary); }
.header-actions .account-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .85rem; border-radius: var(--site-radius-pill); color: var(--site-header-text); font-weight: 600; font-size: .9rem; border: 1px solid transparent; }
.header-actions .account-btn:hover { background: var(--site-soft); color: var(--site-primary); }
.header-actions .dropdown-menu { border: 1px solid var(--site-border); border-radius: var(--site-radius); box-shadow: var(--site-shadow-lg); padding: .5rem; min-width: 210px; }
.header-actions .dropdown-item { border-radius: var(--site-radius-sm); padding: .5rem .8rem; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--site-radius-sm); border: 1px solid var(--site-border); background: transparent; color: var(--site-header-text); font-size: 1.35rem; }
/* Header row must never push the page wider than the viewport. */
.site-header { overflow-x: clip; }
.site-header .header-inner > * { min-width: 0; }
.site-header .brand { flex: 0 0 auto; }
.site-nav { flex: 1 1 auto; justify-content: flex-end; }
.header-actions { flex: 0 0 auto; }
@media (min-width: 992px) {
  /* 992–1199: keep the hamburger — the full menu with submenus needs more room */
  .header-actions .call-pill { display: inline-flex; }
}
@media (min-width: 1200px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
  .site-nav > li > a { padding: .5rem .6rem; font-size: .88rem; }
  .site-nav { gap: .1rem; }
  /* icon-only call button so the menu keeps its space */
  .header-actions .call-pill span { display: none; }
  .header-actions .call-pill { padding: .45rem .6rem; }
}
@media (min-width: 1400px) {
  .site-nav > li > a { padding: .55rem .85rem; font-size: .93rem; }
  .site-nav { gap: .25rem; }
  .header-actions .call-pill span { display: inline; }
  .header-actions .call-pill { padding: .45rem .85rem; }
}

/* offcanvas (mobile menu) */
.site-offcanvas { --bs-offcanvas-width: min(86vw, 360px); }
.site-offcanvas .offcanvas-header { border-bottom: 1px solid var(--site-border); }
.site-offcanvas .offcanvas-header img { height: 40px; width: auto; }
.mobile-nav { list-style: none; margin: 0; padding: 0; }
.mobile-nav > li > a { display: flex; align-items: center; justify-content: space-between; padding: .85rem .5rem; border-bottom: 1px solid var(--site-border); color: var(--site-menu); font-weight: 600; }
.mobile-nav > li > a i { color: var(--site-muted); }
.mobile-nav > li.active > a { color: var(--site-menu-hover); }
.mobile-nav .sub { list-style: none; margin: 0; padding: 0 0 0 .75rem; }
.mobile-nav .sub a { display: block; padding: .6rem .5rem; color: var(--site-body-text); border-bottom: 1px dashed var(--site-border); }
.mobile-contact { background: var(--site-soft); border-radius: var(--site-radius); padding: 1rem; }
.mobile-contact a { display: flex; align-items: center; gap: .6rem; color: var(--site-body-text); font-weight: 600; padding: .35rem 0; }
.mobile-contact a i { color: var(--site-primary); }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--site-primary-dark) 0%, var(--site-primary) 55%, color-mix(in srgb, var(--site-primary) 55%, var(--site-secondary)) 100%);
  padding: 3.5rem 0 4.5rem;
}
.hero.has-image::before { content: ""; position: absolute; inset: 0; background: var(--hero-image) center/cover no-repeat; opacity: .22; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 300px at 85% -10%, rgba(255, 255, 255, .18), transparent 60%),
    radial-gradient(500px 260px at 0% 100%, rgba(255, 255, 255, .10), transparent 60%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .85rem; border-radius: var(--site-radius-pill); background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3); font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-weight: 800; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--site-accent); }
.hero .lead { color: rgba(255, 255, 255, .88); font-size: 1.05rem; max-width: 640px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: 1.25rem; }
.hero-badges span { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; color: rgba(255, 255, 255, .92); }
.hero-badges i { color: var(--site-accent); }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 0; }
.hero-wave svg { width: 100%; height: 48px; display: block; }
.hero-wave path { fill: var(--site-body-bg); }
@media (min-width: 992px) { .hero { padding: 4.5rem 0 5.5rem; } }

/* inner page hero (breadcrumb bar) */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(120deg, var(--site-primary-dark), var(--site-primary));
  padding: 2.75rem 0 2.75rem;
}
.page-hero.has-image::before { content: ""; position: absolute; inset: 0; background: var(--hero-image) center/cover no-repeat; opacity: .18; }
.page-hero > .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 0 .35rem; font-weight: 800; }
.page-hero p { color: rgba(255, 255, 255, .85); margin: 0; max-width: 720px; }
.page-hero .breadcrumb { margin: 0 0 .75rem; font-size: .85rem; --bs-breadcrumb-divider-color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a { color: rgba(255, 255, 255, .85); }
.page-hero .breadcrumb a:hover { color: var(--site-accent); }
.page-hero .breadcrumb .active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .6); }

/* --------------------------------------------------------- search widget */
.sw {
  background: var(--site-card-bg);
  color: var(--site-body-text);
  border-radius: var(--site-radius-lg);
  box-shadow: var(--site-shadow-lg);
  padding: .85rem;
  position: relative;
}
.sw-tabs { display: flex; gap: .35rem; overflow-x: auto; scrollbar-width: none; padding: .2rem; background: var(--site-soft); border-radius: var(--site-radius); }
.sw-tabs::-webkit-scrollbar { display: none; }
.sw-tab {
  flex: 1 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border: 0; background: transparent; color: var(--site-body-text);
  padding: .65rem .9rem; font-weight: 600; font-size: .88rem; white-space: nowrap;
  border-radius: calc(var(--site-radius) - 4px); transition: all .2s var(--site-ease);
}
.sw-tab i { font-size: 1.05rem; color: var(--site-primary); }
.sw-tab.active { background: var(--site-card-bg); color: var(--site-primary); box-shadow: var(--site-shadow-sm); }
.sw-tab:hover:not(.active) { color: var(--site-primary); }
.sw-panel { display: none; padding: 1rem .25rem .25rem; }
.sw-panel.active { display: block; }
.sw-subtabs { display: inline-flex; gap: .25rem; padding: .2rem; background: var(--site-soft); border-radius: var(--site-radius-pill); margin-bottom: .9rem; }
.sw-subtabs label { margin: 0; }
.sw-subtabs input { position: absolute; opacity: 0; pointer-events: none; }
.sw-subtabs span { display: inline-block; padding: .4rem .95rem; border-radius: var(--site-radius-pill); font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--site-body-text); transition: all .2s; }
.sw-subtabs input:checked + span { background: var(--site-primary); color: #fff; box-shadow: var(--site-shadow-sm); }
.sw-grid { display: grid; grid-template-columns: 1fr; gap: .65rem; }
.sw-field { position: relative; }
.sw-field .sw-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--site-muted); margin-bottom: .3rem; }
.sw-control {
  position: relative; display: flex; align-items: center; gap: .55rem;
  background: var(--site-body-bg); border: 1.5px solid var(--site-border); border-radius: var(--site-radius);
  padding: 0 .8rem; min-height: 52px; transition: border-color .2s, box-shadow .2s;
}
.sw-control:focus-within { border-color: var(--site-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--site-primary) 14%, transparent); }
.sw-control > i { color: var(--site-primary); font-size: 1.1rem; flex: 0 0 auto; }
.sw-control input, .sw-control select {
  flex: 1 1 auto; min-width: 0; width: 100%; border: 0; outline: 0; background: transparent;
  font-size: .98rem; font-weight: 600; color: var(--site-heading); padding: .6rem 0; appearance: none; -webkit-appearance: none;
}
.sw-control input::placeholder { color: var(--site-muted); font-weight: 500; }
.sw-control select { cursor: pointer; background-image: none; }
.sw-control select:invalid, .sw-control select option[value=""] { color: var(--site-muted); }
.sw-control .sw-caret { color: var(--site-muted); pointer-events: none; }
.sw-control input[type="date"], .sw-control input[type="time"] { cursor: pointer; }
.sw-control input[type="date"]::-webkit-calendar-picker-indicator, .sw-control input[type="time"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }
.sw-field.is-invalid .sw-control { border-color: #dc3545; box-shadow: 0 0 0 4px rgba(220, 53, 69, .12); }
.sw-error { display: none; color: #dc3545; font-size: .78rem; margin-top: .3rem; font-weight: 500; }
.sw-field.is-invalid .sw-error { display: block; }
.sw-swap {
  position: absolute; right: .75rem; top: 50%; transform: translateY(-50%) rotate(90deg); z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--site-border); background: var(--site-card-bg);
  color: var(--site-primary); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; box-shadow: var(--site-shadow-sm);
}
.sw-swap:hover { background: var(--site-primary); color: #fff; transform: translateY(-50%) rotate(270deg); }
.sw-prefix { font-weight: 700; color: var(--site-muted); font-size: .92rem; border-right: 1px solid var(--site-border); padding-right: .5rem; }
.sw-actions { display: flex; flex-direction: column; gap: .6rem; margin-top: .85rem; }
.sw-actions .btn { min-height: 52px; }
.sw-note { font-size: .8rem; color: var(--site-muted); display: flex; align-items: center; gap: .4rem; }
.sw-stops { display: grid; gap: .6rem; }
.sw-stop-row { display: flex; align-items: flex-end; gap: .5rem; }
.sw-stop-row .sw-field { flex: 1; }
.sw-stop-remove { width: 44px; height: 52px; flex: 0 0 44px; border-radius: var(--site-radius); border: 1.5px solid var(--site-border); background: transparent; color: #dc3545; }
.sw-stop-remove:hover { background: #dc3545; color: #fff; border-color: #dc3545; }
.sw-add-stop { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 700; color: var(--site-primary); background: none; border: 0; padding: .2rem 0; }
.sw-add-stop:hover { color: var(--site-link-hover); }
.sw-add-stop:disabled { opacity: .5; }
/* autocomplete dropdown */
.sw-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 1060;
  background: var(--site-card-bg); border: 1px solid var(--site-border); border-radius: var(--site-radius);
  box-shadow: var(--site-shadow-lg); max-height: 260px; overflow-y: auto; display: none; padding: .35rem;
}
.sw-suggest.show { display: block; }
.sw-suggest .item { display: flex; align-items: center; gap: .6rem; padding: .55rem .7rem; border-radius: var(--site-radius-sm); cursor: pointer; font-weight: 500; color: var(--site-body-text); }
.sw-suggest .item i { color: var(--site-primary); }
.sw-suggest .item:hover, .sw-suggest .item.is-active { background: var(--site-soft); color: var(--site-primary); }
.sw-suggest .empty { padding: .6rem .7rem; color: var(--site-muted); font-size: .88rem; }
.sw.is-compact { padding: .65rem; }
@media (min-width: 576px) {
  .sw { padding: 1rem; }
  .sw-grid { grid-template-columns: 1fr 1fr; }
  .sw-grid .span-2 { grid-column: span 2; }
}
@media (min-width: 992px) {
  .sw { padding: 1.25rem; }
  .sw-panel { padding: 1.15rem .25rem .25rem; }
  .sw-grid { grid-template-columns: repeat(12, 1fr); }
  .sw-grid > .sw-field, .sw-grid > .sw-stops { grid-column: span 3; }
  .sw-grid .span-2 { grid-column: span 6; }
  .sw-grid .sw-col-4 { grid-column: span 4; }
  .sw-grid .sw-col-6 { grid-column: span 6; }
  .sw-grid .sw-col-12 { grid-column: span 12; }
  .sw-actions { flex-direction: row; align-items: center; justify-content: space-between; }
  .sw-actions .btn { min-width: 220px; }
  .sw-swap { right: -18px; transform: translateY(-50%); }
  .sw-swap:hover { transform: translateY(-50%) rotate(180deg); }
  .sw-tab { font-size: .95rem; padding: .75rem 1.1rem; }
}
/* widget sitting over hero bottom */
.hero-widget-wrap { margin-top: 2rem; }
@media (min-width: 992px) { .hero-widget-wrap { margin-top: 2.5rem; } }
.pac-container { z-index: 2000 !important; border-radius: var(--site-radius); box-shadow: var(--site-shadow-lg); border: 1px solid var(--site-border); font-family: var(--site-font-body); }

/* -------------------------------------------------------------- sections */
.section { padding: 3.5rem 0; }
.section-sm { padding: 2.25rem 0; }
@media (min-width: 992px) { .section { padding: 5rem 0; } .section-sm { padding: 3rem 0; } }
.section-heading { margin-bottom: 2rem; }
.section-heading .eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--site-secondary); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .5rem; }
.section-heading .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--site-secondary); border-radius: 2px; }
.section-heading.text-center .eyebrow::after { content: ""; width: 22px; height: 2px; background: var(--site-secondary); border-radius: 2px; }
.section-heading h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.section-heading p { color: var(--site-muted); max-width: 640px; margin-bottom: 0; }
.section-heading.text-center p { margin-left: auto; margin-right: auto; }
.section-heading .heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ----------------------------------------------------------------- cards */
.card-site { background: var(--site-card-bg); border: 1px solid var(--site-border); border-radius: var(--site-radius); box-shadow: var(--site-shadow-sm); transition: transform .25s var(--site-ease), box-shadow .25s var(--site-ease); height: 100%; }
.card-site:hover { transform: translateY(-4px); box-shadow: var(--site-shadow); }
/* features */
.feature-card { padding: 1.5rem; text-align: left; }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--site-soft); color: var(--site-primary); margin-bottom: 1rem; }
.feature-icon img { width: 32px; height: 32px; object-fit: contain; }
.feature-card h5 { font-size: 1.05rem; margin-bottom: .4rem; }
.feature-card p { color: var(--site-muted); font-size: .92rem; margin: 0; }
/* route cards */
.route-card { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; color: inherit; }
.route-card .route-icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 12px; background: var(--site-soft); color: var(--site-primary); display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.route-card .route-body { flex: 1; min-width: 0; }
.route-card .route-title { font-weight: 700; color: var(--site-heading); font-size: .98rem; display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.route-card .route-title i { color: var(--site-secondary); font-size: .85rem; }
.route-card .route-meta { font-size: .82rem; color: var(--site-muted); display: flex; gap: .75rem; flex-wrap: wrap; }
.route-card .route-price { text-align: right; flex: 0 0 auto; }
.route-card .route-price small { display: block; font-size: .72rem; color: var(--site-muted); }
.route-card .route-price strong { color: var(--site-primary); font-size: 1.05rem; }
.route-card .route-arrow { color: var(--site-muted); transition: transform .2s; }
.route-card:hover .route-arrow { transform: translateX(4px); color: var(--site-primary); }
/* city cards */
.city-card { position: relative; display: block; border-radius: var(--site-radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--site-soft); box-shadow: var(--site-shadow-sm); }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--site-ease); }
.city-card:hover img { transform: scale(1.06); }
.city-card .city-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, .85)); }
.city-card .city-name { position: absolute; left: 1rem; right: 1rem; bottom: .9rem; color: #fff; font-weight: 700; font-family: var(--site-font-heading); display: flex; align-items: center; justify-content: space-between; }
.city-card .city-name i { opacity: .8; transition: transform .2s; }
.city-card:hover .city-name i { transform: translateX(4px); opacity: 1; }
.city-card.no-image { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--site-primary), var(--site-primary-dark)); }
.city-card.no-image .city-placeholder { font-size: 2.6rem; color: rgba(255, 255, 255, .35); }
/* package cards */
.pkg-card { overflow: hidden; display: flex; flex-direction: column; }
.pkg-card .pkg-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--site-soft); }
.pkg-card .pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--site-ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.05); }
.pkg-card .pkg-badge { position: absolute; top: .75rem; left: .75rem; background: var(--site-secondary); color: #fff; font-size: .72rem; font-weight: 700; padding: .3rem .6rem; border-radius: var(--site-radius-pill); letter-spacing: .03em; }
.pkg-card .pkg-body { padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.pkg-card h5 { font-size: 1rem; margin-bottom: .35rem; text-transform: capitalize; }
.pkg-card h5 a { color: var(--site-heading); }
.pkg-card h5 a:hover { color: var(--site-primary); }
.pkg-card .pkg-meta { display: flex; flex-wrap: wrap; gap: .35rem .9rem; font-size: .82rem; color: var(--site-muted); margin-bottom: .75rem; }
.pkg-card .pkg-meta i { color: var(--site-primary); margin-right: .25rem; }
.pkg-card .pkg-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.pkg-card .pkg-price small { display: block; font-size: .72rem; color: var(--site-muted); }
.pkg-card .pkg-price strong { font-size: 1.15rem; color: var(--site-primary); }
/* fleet */
.fleet-card { padding: 1.1rem; text-align: center; }
.fleet-card .fleet-media { aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; }
.fleet-card .fleet-media img { max-height: 100%; object-fit: contain; transition: transform .35s var(--site-ease); }
.fleet-card:hover .fleet-media img { transform: scale(1.04); }
.fleet-card h5 { font-size: 1rem; text-transform: capitalize; margin-bottom: .25rem; }
.fleet-card .fleet-desc { font-size: .82rem; color: var(--site-muted); min-height: 2.4em; }
.fleet-card .fleet-specs { display: flex; justify-content: center; gap: 1rem; font-size: .82rem; color: var(--site-muted); margin: .5rem 0 .75rem; }
.fleet-card .fleet-specs i { color: var(--site-primary); margin-right: .25rem; }
.fleet-card .fleet-rate { font-weight: 700; color: var(--site-primary); }
.fleet-card .fleet-rate small { font-weight: 500; color: var(--site-muted); }
/* how it works */
.how-step { position: relative; padding: 1.5rem; text-align: center; }
.how-step .step-num { position: absolute; top: 1rem; right: 1rem; font-family: var(--site-font-heading); font-weight: 800; font-size: 2rem; color: color-mix(in srgb, var(--site-primary) 12%, transparent); line-height: 1; }
.how-step .step-icon { width: 68px; height: 68px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem; color: #fff; background: linear-gradient(135deg, var(--site-primary), var(--site-primary-dark)); margin-bottom: 1rem; box-shadow: 0 10px 24px color-mix(in srgb, var(--site-primary) 35%, transparent); }
.how-step h5 { font-size: 1.05rem; }
.how-step p { color: var(--site-muted); font-size: .92rem; margin: 0; }
/* testimonials */
.testimonial-card { padding: 1.5rem; display: flex; flex-direction: column; }
.testimonial-card .quote { font-size: 2rem; color: var(--site-secondary); line-height: 1; margin-bottom: .5rem; }
.testimonial-card p { flex: 1; color: var(--site-body-text); font-size: .95rem; }
.testimonial-card .author { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; }
.testimonial-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--site-soft); color: var(--site-primary); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; overflow: hidden; }
.testimonial-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card .author strong { display: block; font-size: .95rem; color: var(--site-heading); }
.testimonial-card .author small { color: var(--site-muted); }
.stars { color: var(--site-accent); font-size: .9rem; letter-spacing: .05em; }
.stars .bi-star { color: var(--site-border); }
/* logo strip */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2rem; }
.logo-strip .logo-item { background: var(--site-card-bg); border: 1px solid var(--site-border); border-radius: var(--site-radius); padding: .75rem 1.25rem; height: 76px; display: flex; align-items: center; justify-content: center; filter: grayscale(1); opacity: .75; transition: all .25s; }
.logo-strip .logo-item:hover { filter: none; opacity: 1; box-shadow: var(--site-shadow); }
.logo-strip img { max-height: 44px; max-width: 140px; object-fit: contain; }
/* FAQ */
.faq-accordion .accordion-item { border: 1px solid var(--site-border); border-radius: var(--site-radius) !important; margin-bottom: .75rem; overflow: hidden; background: var(--site-card-bg); }
.faq-accordion .accordion-button { font-weight: 600; color: var(--site-heading); background: var(--site-card-bg); padding: 1rem 1.2rem; box-shadow: none; font-family: var(--site-font-heading); }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--site-primary); background: var(--site-soft); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { filter: grayscale(1); }
.faq-accordion .accordion-body { color: var(--site-body-text); font-size: .95rem; }
/* blog */
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-card .blog-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--site-soft); }
.blog-card .blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-card .blog-body { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; }
.blog-card .blog-date { font-size: .78rem; color: var(--site-muted); display: flex; align-items: center; gap: .4rem; margin-bottom: .5rem; }
.blog-card h5 { font-size: 1rem; line-height: 1.4; }
.blog-card h5 a { color: var(--site-heading); }
.blog-card h5 a:hover { color: var(--site-primary); }
.blog-card p { font-size: .9rem; color: var(--site-muted); flex: 1; }
.blog-card .read-more { font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: .35rem; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
/* stats */
.stats-band { background: var(--site-soft); border-top: 1px solid var(--site-border); border-bottom: 1px solid var(--site-border); }
.stat { text-align: center; padding: 1rem .5rem; }
.stat strong { display: block; font-family: var(--site-font-heading); font-size: 1.9rem; color: var(--site-primary); line-height: 1.1; }
/* Direct child only — a counter <span> inside <strong> must keep the big style. */
.stat > span { font-size: .85rem; color: var(--site-muted); font-weight: 600; }
.stat strong .js-counter { font: inherit; color: inherit; }

/* ---------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, var(--site-primary-dark), var(--site-primary) 60%, color-mix(in srgb, var(--site-primary) 50%, var(--site-secondary))); border-radius: var(--site-radius-lg); padding: 2.25rem 1.5rem; }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255, 255, 255, .1); }
.cta-band h3 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.9rem); margin-bottom: .35rem; }
.cta-band p { color: rgba(255, 255, 255, .85); margin: 0; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cta-band .cta-phone { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--site-font-heading); font-weight: 800; font-size: 1.25rem; color: #fff; }
.cta-band .cta-phone i { width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .16); display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; }
@media (min-width: 992px) { .cta-band { padding: 3rem 3rem; } }

/* ---------------------------------------------------------------- footer */

/* ------------------------------------------------------ floating buttons */
.float-actions { position: fixed; right: 1rem; bottom: 1.1rem; z-index: 1040; display: flex; flex-direction: column; gap: .6rem; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: 0 10px 24px rgba(15, 23, 42, .25); transition: transform .2s; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); color: #fff; }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--site-primary); }
.float-btn.top { background: var(--site-heading); width: 42px; height: 42px; font-size: 1.1rem; opacity: 0; pointer-events: none; transform: translateY(10px); }
.float-btn.top.show { opacity: 1; pointer-events: auto; transform: none; }
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1035; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--site-card-bg); border-top: 1px solid var(--site-border); box-shadow: 0 -6px 20px rgba(15, 23, 42, .08); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: .15rem; padding: .55rem 0 .45rem; font-size: .72rem; font-weight: 600; color: var(--site-body-text); }
.mobile-bar a i { font-size: 1.25rem; color: var(--site-primary); }
.mobile-bar a.primary { background: var(--site-btn-bg); color: var(--site-btn-text); }
.mobile-bar a.primary i { color: var(--site-btn-text); }
@media (max-width: 767.98px) { body.has-mobile-bar { padding-bottom: 62px; } .float-actions { bottom: 74px; } }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* ------------------------------------------------------------- content */
.prose { font-size: 1rem; line-height: 1.75; }
.prose h1, .prose h2, .prose h3, .prose h4 { margin-top: 1.6em; margin-bottom: .6em; }
.prose h1 { font-size: 1.8rem; } .prose h2 { font-size: 1.5rem; } .prose h3 { font-size: 1.25rem; } .prose h4 { font-size: 1.1rem; }
.prose p { margin-bottom: 1em; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1em; }
.prose li { margin-bottom: .35em; }
.prose img { border-radius: var(--site-radius); }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; }
.prose th, .prose td { border: 1px solid var(--site-border); padding: .6rem .8rem; }
.prose th { background: var(--site-soft); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose *:first-child { margin-top: 0; }
.prose span, .prose strong, .prose p, .prose li, .prose h1, .prose h2, .prose h3 { color: inherit !important; background-color: transparent !important; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: .65rem; margin-bottom: .6rem; align-items: flex-start; }
.check-list li i { color: var(--site-secondary); flex: 0 0 auto; margin-top: .2rem; }
.info-card { background: var(--site-card-bg); border: 1px solid var(--site-border); border-radius: var(--site-radius); padding: 1.5rem; }
.contact-tile { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem; border-radius: var(--site-radius); background: var(--site-soft); }
.contact-tile i { width: 42px; height: 42px; border-radius: 12px; background: var(--site-card-bg); color: var(--site-primary); display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; flex: 0 0 auto; }
.contact-tile strong { display: block; color: var(--site-heading); font-size: .9rem; }
.contact-tile a, .contact-tile span { color: var(--site-body-text); font-size: .92rem; }
.img-card { border-radius: var(--site-radius-lg); overflow: hidden; box-shadow: var(--site-shadow); }
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.about-visual { position: relative; }
.about-visual .badge-float { position: absolute; left: 1rem; bottom: 1rem; background: var(--site-card-bg); border-radius: var(--site-radius); padding: .8rem 1rem; box-shadow: var(--site-shadow); display: flex; align-items: center; gap: .75rem; }
.about-visual .badge-float strong { display: block; font-family: var(--site-font-heading); font-size: 1.3rem; color: var(--site-primary); line-height: 1; }
.about-visual .badge-float small { color: var(--site-muted); font-weight: 600; }

/* forms (generic) */
.form-site .form-label { font-weight: 600; font-size: .88rem; color: var(--site-heading); }
.form-site .form-control, .form-site .form-select { border-radius: var(--site-radius-sm); border: 1.5px solid var(--site-border); padding: .7rem .9rem; font-size: .95rem; background: var(--site-body-bg); color: var(--site-body-text); }
.form-site .form-control:focus, .form-site .form-select:focus { border-color: var(--site-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--site-primary) 14%, transparent); }
.form-site .invalid-feedback { font-size: .8rem; }
.form-site textarea.form-control { min-height: 120px; }

/* thank-you / status pages */
.status-hero { text-align: center; padding: 3rem 0 1.5rem; }
.status-icon { width: 92px; height: 92px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 2.6rem; margin-bottom: 1.2rem; }
.status-icon.success { background: color-mix(in srgb, #16a34a 12%, transparent); color: #16a34a; }
.status-icon.warning { background: color-mix(in srgb, var(--site-secondary) 14%, transparent); color: var(--site-secondary); }
.status-icon.danger { background: color-mix(in srgb, #dc3545 12%, transparent); color: #dc3545; }
.error-code { font-family: var(--site-font-heading); font-size: clamp(4.5rem, 14vw, 8rem); font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--site-primary), var(--site-secondary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.summary-table th { font-weight: 600; color: var(--site-muted); font-size: .85rem; white-space: nowrap; width: 38%; }
.summary-table td { font-weight: 600; color: var(--site-heading); }
.summary-table tr:last-child th, .summary-table tr:last-child td { border-bottom: 0; }

/* utilities */
.shadow-soft { box-shadow: var(--site-shadow) !important; }
.rounded-site { border-radius: var(--site-radius) !important; }
.rounded-site-lg { border-radius: var(--site-radius-lg) !important; }
.divider-gradient { height: 4px; width: 64px; border-radius: 4px; background: linear-gradient(90deg, var(--site-primary), var(--site-secondary)); }
.badge-site { background: var(--site-soft); color: var(--site-primary); font-weight: 600; border-radius: var(--site-radius-pill); padding: .35rem .7rem; font-size: .78rem; }
.toast-site { position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%) translateY(20px); z-index: 2000; background: var(--site-heading); color: #fff; padding: .7rem 1.1rem; border-radius: var(--site-radius-pill); box-shadow: var(--site-shadow-lg); opacity: 0; transition: all .25s var(--site-ease); font-size: .9rem; max-width: 92vw; }
.toast-site.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-site.error { background: #dc3545; }
.toast-site.success { background: #16a34a; }
.swal2-popup { font-family: var(--site-font-body) !important; border-radius: var(--site-radius-lg) !important; }
.swal2-confirm { background: var(--site-btn-bg) !important; border-radius: var(--site-radius-sm) !important; }
.swal2-title { font-family: var(--site-font-heading) !important; }
[data-aos] { will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }

/* ── Header submenus (menu → sub menu) ─────────────────────────────── */
.site-nav .nav-submenu { min-width: 268px; padding: .4rem; }
.site-nav .nav-submenu .dropdown-item { display: flex; align-items: flex-start; gap: .6rem; white-space: normal; }
.site-nav .nav-submenu .dropdown-item > i { color: var(--site-primary); font-size: .95rem; margin-top: .15rem; flex: 0 0 18px; }
.site-nav .nav-submenu .dropdown-item .t { display: flex; flex-direction: column; line-height: 1.25; }
.site-nav .nav-submenu .dropdown-item .t small { color: var(--site-muted); font-size: .74rem; font-weight: 500; margin-top: .1rem; }
.site-nav .nav-submenu .dropdown-item:hover > i { color: var(--site-menu-hover); }
@media (min-width: 992px) {
  /* Open submenus on hover for pointer devices, keep click for touch.
     The panel must touch the trigger or the pointer leaves the <li> while
     crossing the gap and the menu closes before it can be clicked. The visual
     gap is drawn with a transparent top border instead of a margin. */
  .site-nav > li.has-sub:hover > .dropdown-menu,
  .site-nav > li.has-sub:focus-within > .dropdown-menu { display: block; }
  .site-nav > li.has-sub > .dropdown-menu {
    margin-top: 0;
    border-top: .55rem solid transparent;
    background-clip: padding-box;
  }
  /* Widen the hover bridge slightly so a diagonal mouse path still lands. */
  .site-nav > li.has-sub > .dropdown-menu::before {
    content: ""; position: absolute; left: 0; right: 0; top: -.55rem; height: .6rem;
  }
  .site-nav > li.has-sub > .dropdown-toggle::after { margin-left: .35rem; vertical-align: .15em; }
}
@media (hover: none) {
  /* Touch devices: never open on hover, Bootstrap's click toggle handles it. */
  .site-nav > li.has-sub:hover > .dropdown-menu { display: none; }
  .site-nav > li.has-sub > .dropdown-menu.show { display: block; }
}
.mobile-nav > li > a[data-bs-toggle="collapse"] i.bi-chevron-down { transition: transform .2s; }
.mobile-nav > li > a[aria-expanded="true"] i.bi-chevron-down { transform: rotate(180deg); }
@media (min-width: 768px) { .footer-bottom .credit::before { content: "·"; margin: 0 .5rem; opacity: .5; } }

/* ── Horizontal scroll rails (testimonials, fleet, any card row) ────── */
.scroll-rail-wrap { position: relative; }
.scroll-rail {
  display: grid; grid-auto-flow: column; gap: 1rem;
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: .25rem .25rem .5rem; margin: 0 -.25rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.scroll-rail > * { scroll-snap-align: start; }
.scroll-rail::-webkit-scrollbar { display: none; width: 0; height: 0; }
.scroll-rail--cards > * { width: 300px; }
@media (min-width: 576px) { .scroll-rail--cards > * { width: 330px; } }
.rail-nav { display: none; }
@media (min-width: 992px) {
  .rail-nav { display: inline-flex; gap: .4rem; }
  .rail-nav button {
    width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--site-border);
    background: var(--site-card-bg); color: var(--site-primary); display: inline-flex;
    align-items: center; justify-content: center; transition: all .18s;
  }
  .rail-nav button:hover:not(:disabled) { background: var(--site-primary); color: #fff; border-color: var(--site-primary); }
  .rail-nav button:disabled { opacity: .35; cursor: default; }
}
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.rail-head .section-heading, .rail-head .sh { margin-bottom: 0; }


/* ── Carousel dots for auto-advancing rails ─────────────────────────── */
.rail-dots { display: flex; justify-content: center; gap: .4rem; margin-top: .35rem; }
.rail-dots button {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px;
  background: var(--site-border); transition: all .25s var(--site-ease); cursor: pointer;
}
.rail-dots button.is-active { width: 26px; background: var(--site-primary); }
.rail-dots button:hover { background: var(--site-primary); }
.scroll-rail:focus-visible { outline: 2px solid var(--site-primary); outline-offset: 3px; border-radius: var(--site-radius); }


/* =========================================================================
   MOBILE APP LAYER  —  makes the public site feel like a native app on
   phones (target 360–430px) and behave on tablets (768px).
   Page-specific phone rules live in css/pages/*.css because those files are
   loaded after this one; only site-wide rules belong here.
   Everything uses the --site-* theme tokens — no hard-coded brand colours.
   ========================================================================= */

:root {
  /* height of the fixed bottom tab bar; 0 above the phone breakpoint */
  --site-bottombar: 0px;
  --site-safe-b: env(safe-area-inset-bottom, 0px);
  --site-safe-l: env(safe-area-inset-left, 0px);
  --site-safe-r: env(safe-area-inset-right, 0px);
  --site-header-h: 72px;   /* kept in sync with the real header by site.js */
}

/* --- never let anything scroll the page sideways -------------------------
   `clip` (not `hidden`) so the sticky header keeps working. The earlier
   `body { overflow-x: hidden }` stays as the fallback for old engines.      */
html, body { overflow-x: clip; }

/* anchor links must clear the sticky header */
html { scroll-padding-top: calc(var(--site-header-h) + 12px); }
[id] { scroll-margin-top: calc(var(--site-header-h) + 12px); }

/* --- app-like touch behaviour ------------------------------------------- */
a, button, input, select, textarea, label, summary,
[role="button"], [role="tab"], .btn, .sw-tab, .cl-chip {
  -webkit-tap-highlight-color: color-mix(in srgb, var(--site-primary) 16%, transparent);
}
a, button, label, summary, [role="button"], [role="tab"],
.btn, .sw-tab, .cl-chip, .nav-link, .accordion-button {
  touch-action: manipulation;   /* removes the 300ms double-tap delay */
}
/* momentum scrolling + no scroll chaining for every horizontal rail */
.scroll-rail, .sw-tabs, .acct-nav, .table-responsive, .dir-jump, .blog-tabs,
.sp-gallery .sp-thumbs, .co-tabs .nav-tabs, .sp-tabs .nav-tabs, .testi-track {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
/* a stronger, always-visible focus ring for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--site-primary) 55%, transparent);
  outline-offset: 2px;
  border-radius: var(--site-radius-sm);
}

/* --- AOS: kill the horizontal slide on small screens ---------------------
   fade-left / fade-right park elements 100px off-axis before they animate,
   which is the biggest single source of sideways overflow on phones.        */
@media (max-width: 991.98px) {
  [data-aos^="fade-left"]:not(.aos-animate),
  [data-aos^="fade-right"]:not(.aos-animate),
  [data-aos^="zoom-in-left"]:not(.aos-animate),
  [data-aos^="zoom-in-right"]:not(.aos-animate),
  [data-aos^="zoom-out-left"]:not(.aos-animate),
  [data-aos^="zoom-out-right"]:not(.aos-animate),
  [data-aos^="slide-left"]:not(.aos-animate),
  [data-aos^="slide-right"]:not(.aos-animate) {
    transform: translate3d(0, 14px, 0);
  }
}

/* =============================== bottom tab bar ========================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1035;
  display: none; grid-auto-flow: column; grid-auto-columns: 1fr;
  background: color-mix(in srgb, var(--site-card-bg) 88%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--site-border);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, .10);
  padding: 0 var(--site-safe-r) var(--site-safe-b) var(--site-safe-l);
}
.mobile-bar .mobile-bar-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .15rem; min-height: 56px; padding: .45rem .15rem .5rem;
  font-size: .7rem; font-weight: 600; line-height: 1.1;
  color: var(--site-muted); background: transparent; border: 0;
  text-align: center; position: relative; overflow: hidden;
  transition: color .18s var(--site-ease);
}
.mobile-bar .mobile-bar-item i { font-size: 1.3rem; line-height: 1; color: inherit; }
.mobile-bar .mobile-bar-item span {
  display: block; max-width: 100%; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.mobile-bar .mobile-bar-item:active { background: var(--site-soft); }
.mobile-bar .mobile-bar-item.is-active { color: var(--site-primary); }
.mobile-bar .mobile-bar-item.is-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 3px; border-radius: 0 0 3px 3px; background: var(--site-primary);
}
@media (max-width: 767.98px) {
  :root { --site-bottombar: 56px; }
  .mobile-bar { display: grid; }
  body.has-mobile-bar { padding-bottom: calc(var(--site-bottombar) + var(--site-safe-b)); }
  .float-actions { bottom: calc(var(--site-bottombar) + var(--site-safe-b) + .75rem); right: calc(1rem + var(--site-safe-r)); }
}
@media print {
  .mobile-bar, .float-actions, .site-topbar, .site-offcanvas { display: none !important; }
  body.has-mobile-bar { padding-bottom: 0 !important; }
  .site-header { position: static !important; box-shadow: none !important; }
}

/* ============================ app chrome / header ======================== */
@media (max-width: 1199.98px) {
  .site-header { padding-left: var(--site-safe-l); padding-right: var(--site-safe-r); }
  .site-header .header-inner { min-height: 62px; transition: min-height .2s var(--site-ease); }
  .site-header .brand img { height: 40px; transition: height .2s var(--site-ease); }
  /* compact header once the page is scrolled — more content, still reachable */
  .site-header.is-compact .header-inner { min-height: 52px; }
  .site-header.is-compact .brand img { height: 32px; }
  .site-header.is-compact { box-shadow: var(--site-shadow); }
  .nav-toggle { width: 44px; height: 44px; }
  .header-actions .account-btn, .header-actions .call-pill { min-height: 44px; }
  .header-actions { gap: .35rem; }
}
/* offcanvas: full-height app drawer with safe areas + big rows */
/* Bootstrap's own `.offcanvas.offcanvas-end` rule outranks a single class, so
   the drawer width has to be set through its custom property. */
.site-offcanvas { --bs-offcanvas-width: min(88vw, 380px); max-width: 88vw; }
.site-offcanvas .offcanvas-body { padding-bottom: calc(1rem + var(--site-safe-b)); }
.site-offcanvas .btn-close { width: 44px; height: 44px; padding: .75rem; }
@media (max-width: 767.98px) {
  .mobile-nav > li > a { min-height: 52px; padding: .9rem .5rem; font-size: 1rem; }
  .mobile-nav .sub a { min-height: 44px; display: flex; align-items: center; font-size: .95rem; }
  .mobile-contact a { min-height: 44px; }
}

/* ======================= search widget = mobile sheet ==================== */
/* All four trip types must be reachable. On phones the strip becomes a 2×2
   grid so nothing is cut off; wider screens keep a snapping scroll strip.   */
.sw-tabs-wrap { position: relative; }
.sw-tabs-wrap.has-overflow::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 36px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--site-soft));
  border-radius: 0 var(--site-radius) var(--site-radius) 0;
  transition: opacity .2s var(--site-ease);
}
.sw-tabs-wrap.at-end::after { opacity: 0; }
@media (min-width: 768px) {
  .sw-tabs { scroll-snap-type: x proximity; }
  .sw-tab { scroll-snap-align: center; }
}
@media (max-width: 767.98px) {
  .sw-tabs {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .3rem; overflow: visible;
  }
  .sw-tab {
    flex: none; min-height: 48px; padding: .6rem .45rem; font-size: .84rem;
    justify-content: center; white-space: normal; text-align: center; line-height: 1.15;
  }
  .sw-tab i { font-size: 1rem; }
  /* the compact variant keeps the same padding on phones so the sticky
     action bar's negative margins line up with the card edges */
  .sw, .sw.is-compact { padding: .75rem; border-radius: var(--site-radius-lg); }
  .sw-panel { padding: .9rem 0 0; }
  .sw-grid { gap: .55rem; }
  .sw-control { min-height: 52px; padding: 0 .75rem; }
  /* 1rem keeps iOS from zooming the page when a field is focused */
  .sw-control input, .sw-control select { font-size: 1rem; padding: .75rem 0; }
  .sw-field .sw-label { font-size: .74rem; }
  .sw-swap { width: 44px; height: 44px; right: .5rem; }
  .sw-stop-remove { width: 48px; height: 52px; flex: 0 0 48px; }
  .sw-add-stop { min-height: 44px; }
  .sw-subtabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; border-radius: var(--site-radius); }
  .sw-subtabs span { display: block; text-align: center; min-height: 44px; line-height: 1.9; padding: .3rem .4rem; font-size: .82rem; }
  /* the submit button is pinned as an action bar inside the widget */
  .sw-actions {
    position: sticky; bottom: calc(var(--site-bottombar) + var(--site-safe-b));
    z-index: 3; flex-direction: column-reverse; align-items: stretch; gap: .5rem;
    margin: .85rem -.75rem -.75rem; padding: .65rem .75rem .75rem;
    background: color-mix(in srgb, var(--site-card-bg) 92%, transparent);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: 1px solid var(--site-border);
    border-radius: 0 0 var(--site-radius-lg) var(--site-radius-lg);
  }
  .sw-actions .btn { width: 100%; min-height: 52px; font-size: 1.02rem; }
  .sw-note { justify-content: center; text-align: center; font-size: .76rem; }
  /* city autocomplete opens as a full-width sheet under the field */
  .sw-suggest {
    left: -.75rem; right: -.75rem; top: calc(100% + 8px);
    max-height: 46vh; padding: .25rem; border-radius: var(--site-radius-lg);
    box-shadow: 0 -2px 12px rgba(15, 23, 42, .06), var(--site-shadow-lg);
  }
  .sw-suggest .item { min-height: 48px; padding: .7rem .9rem; font-size: .98rem; }
  .sw-suggest .empty { min-height: 48px; display: flex; align-items: center; }
  .pac-container { max-width: 100vw; }
}

/* ========================= cards & lists on phones ======================= */
@media (max-width: 575.98px) {
  .route-grid, .pkg-row, .rt-notes, .ty-info, .contact-info-grid { grid-template-columns: 1fr; }
  .dir-list { grid-template-columns: 1fr; }
  .city-card { aspect-ratio: 3 / 2; }
  /* truncate rather than overflow */
  .route-card .route-body, .local-card .lc-body, .type-card > div,
  .side-list a, .side-card li a, .cl-side li a { min-width: 0; }
  .local-card .lc-title, .type-card strong {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .pkg-card h5, .blog-card h5, .blog-card h3, .cl-card .cl-name,
  .co-route, .rt-hero .rt-route, .info-list .val { overflow-wrap: anywhere; }
}
/* Bootstrap's 3rem gutter pulls rows 24px outside a 12px container padding,
   which is exactly the sideways overflow seen on /about-us and /services
   whenever the container is as wide as the viewport. */
@media (max-width: 991.98px) {
  .row.g-5, .row.gx-5 { --bs-gutter-x: 1.5rem; }
}
@media (max-width: 767.98px) {
  .section { padding: 2.5rem 0; }
  .section-sm { padding: 1.75rem 0; }
  .section-heading { margin-bottom: 1.5rem; }
  .page-hero { padding: 1.75rem 0; }
  .page-hero .breadcrumb { font-size: .8rem; }
  .cta-band { padding: 1.75rem 1.25rem; border-radius: var(--site-radius); }
  .cta-band .cta-actions { width: 100%; }
  .cta-band .cta-actions .btn { flex: 1 1 auto; min-height: 46px; }
  .card-site:hover { transform: none; }           /* no hover lift on touch */
  .scroll-rail--cards > * { width: min(84vw, 320px); }
  .logo-strip .logo-item { height: 64px; padding: .5rem .9rem; }
  .stat strong { font-size: 1.5rem; }
  .feature-card, .how-step, .value-card, .benefit-card { padding: 1.15rem; }
  .info-card, .policy-card, .request-card { padding: 1.15rem; }
  .prose table, .summary-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .error-code { font-size: clamp(3.5rem, 22vw, 6rem); }
  .toast-site { bottom: calc(var(--site-bottombar) + var(--site-safe-b) + 1rem); }
  .status-icon { width: 72px; height: 72px; font-size: 2rem; }
}

/* ============================ tap targets ≥ 40px =======================
   Applied to every touch-sized viewport (phones and tablets). Prefixed with
   `body` so these accessibility minimums also win against the per-page
   stylesheets, which are loaded after this file.                            */
@media (max-width: 991.98px) {
  body .btn { min-height: 44px; }
  body .btn-sm { min-height: 40px; padding: .5rem .95rem; font-size: .86rem; }
  body .btn-lg { min-height: 52px; }
  body .form-control, body .form-select { min-height: 48px; font-size: 1rem; }
  body textarea.form-control { min-height: 96px; }
  body .site-footer .footer-links a,
  body .footer-bottom .links a,
  body .side-list a, body .side-card li a, body .cl-side li a,
  body .dir-list li a, body .links-grid a, body .cl-links-grid a,
  body .mobile-nav > li > a, body .contact-side li a {
    min-height: 44px; display: flex; align-items: center;
  }
  body .link-chips a, body .cat-chips a, body .dir-jump a, body .city-chip,
  body .blog-tabs a, body .cl-chip, body .route-links a, body .err-links a,
  body .perk-pill, body .acct-nav a {
    min-height: 40px; display: inline-flex; align-items: center;
  }
  body .footer-social a, body .topbar-social a, body .social-row a,
  body .post-share a, body .post-share button, body .ty-share a,
  body .rail-nav button { width: 44px; height: 44px; }
  body .co-tabs .nav-link, body .sp-tabs .nav-link, body .nav-tabs .nav-link { min-height: 44px; }
  body .page-link { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  body .breadcrumb-item a { display: inline-flex; align-items: center; min-height: 40px; }
  body .btn-details, body .read-more-btn, body .btn-link-site, body .read-more,
  body .co-change, body .accordion-button, body .dir-group-head, body .js-bk-toggle { min-height: 44px; }
  body .form-check-input { width: 1.5em; height: 1.5em; margin-top: 0; }
  body .site-footer .footer-social a { width: 44px; height: 44px; }
  body .site-footer .footer-contact a,
  body .footer-bottom .credit a,
  body .link-cloud-items a,
  body .mobile-contact a,
  body a.badge-site,
  body .sm-links a,
  body .contact-tile a,
  body .site-topbar .topbar-list a,
  body .dir-city-link { min-height: 40px; display: inline-flex; align-items: center; }
  body .site-topbar .topbar-social a { width: 40px; height: 40px; }
  body .sw-swap { width: 44px; height: 44px; }
  /* checkboxes: 24px box inside a 40px row (the label extends the target) */
  body .form-check { min-height: 40px; display: flex; align-items: center; flex-wrap: wrap; }
  body .form-check .form-check-label { min-height: 40px; display: inline-flex; align-items: center; }
  /* the carousel dots stay 8px wide but get a 40px hit area */
  /* the dots keep their 8px look but become real 40px targets */
  body .rail-dots { gap: 0; min-height: 44px; align-items: center; }
  body .rail-dots button {
    width: 40px; height: 40px; background: transparent; position: relative;
  }
  body .rail-dots button.is-active { background: transparent; }
  body .rail-dots button::before {
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 8px; height: 8px; border-radius: 99px;
    background: var(--site-border); transition: all .25s var(--site-ease);
  }
  body .rail-dots button.is-active::before { width: 26px; background: var(--site-primary); }
  body .rail-dots button:hover::before { background: var(--site-primary); }
}
/* nothing on a touch screen should render below 12px */
@media (max-width: 991.98px) {
  /* general floor: <small> and .badge shrink relative to their parent, which
     is what pushes them under 12px inside already-small blocks */
  body small, body .small, body .badge { font-size: max(.75rem, .875em); }
  body .home-stats .stat .stat-sub { font-size: .75rem; }
  body .small-caps, body .sw-field .sw-label, body .pkg-card .pkg-badge,
  body .pkg-card .pkg-price small, body .route-card .route-price small,
  body .blog-card .blog-date, body .cl-card .cl-feats span, body .cl-ribbon,
  body .sp-fact small, body .rt-table .rt-row .price small, body .stat-card .stat-lbl,
  body .cat-chips a .cnt, body .footer-bottom, body .site-topbar,
  body .blog-card .blog-meta, body .recent-post small, body .post-meta,
  body .acct-table td::before, body .mobile-bar .mobile-bar-item { font-size: .75rem; }
  body .cl-card .cl-incl, body .co-trust, body .co-fare tr.muted th, body .co-fare tr.muted td,
  body .co-summary .co-reward, body .side-card li a .price, body .sw-note,
  body .cl-card .cl-breakdown table, body .fleet-card .fleet-desc,
  body .fleet-card .fleet-specs, body .otp-timer { font-size: .78rem; }
}

  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  width: 100%; background: none; border: 0; padding: 0; text-align: left;
  color: inherit; font: inherit;
}
@media (min-width: 768px) {
  /* the accordion is a phone affordance only — always show the groups here */
}
@media (max-width: 767.98px) {
  .footer-col { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: .25rem; }
  .footer-col h5 { margin-bottom: 0; padding-bottom: 0; }
  .footer-col h5::after { display: none; }
}

/* ================================ tablet ================================= */
@media (min-width: 768px) and (max-width: 991.98px) {
  .site-header .header-inner { min-height: 66px; }
  .sw-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sw-grid .sw-col-4, .sw-grid .sw-col-6, .sw-grid .sw-col-12, .sw-grid .span-2 { grid-column: span 2; }
  .sw-actions .btn { min-width: 200px; }
}


/* ============================== FOOTER ==================================== */
.site-footer {
  background: var(--site-footer-bg);
  color: var(--site-footer-text);
  font-size: .92rem;
  position: relative;
}
.site-footer a { color: var(--site-footer-text); text-decoration: none; transition: color .18s var(--site-ease); }
.site-footer a:hover { color: var(--site-footer-link-hover); }

/* ---- CTA strip ---- */
.footer-cta {
  background: linear-gradient(120deg, var(--site-primary-dark), var(--site-primary) 60%,
              color-mix(in srgb, var(--site-primary) 55%, var(--site-secondary)));
  color: #fff;
}
.footer-cta-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 2rem; padding: 1.6rem 0;
}
.footer-cta-copy h2 { color: #fff; font-size: clamp(1.15rem, 2.4vw, 1.5rem); margin: 0 0 .2rem; }
.footer-cta-copy p { color: rgba(255,255,255,.88); margin: 0; font-size: .9rem; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.footer-cta .btn-site { background: #fff; color: var(--site-primary-dark); border-color: #fff; }
.footer-cta .btn-site:hover { background: rgba(255,255,255,.9); color: var(--site-primary-dark); }
.btn-ghost-light {
  border: 1.5px solid rgba(255,255,255,.55); color: #fff; background: transparent;
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

/* ---- main ---- */
.site-footer .footer-top { padding: 3rem 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 2rem; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px)  { .footer-grid { grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1200px) { .footer-grid { grid-template-columns: 1.8fr repeat(4, minmax(0, 1fr)); } }

.footer-brand { display: inline-block; margin-bottom: 1rem; }
.footer-brand img {
  height: 46px; width: auto; max-width: 190px; object-fit: contain;
  background: #fff; border-radius: var(--site-radius-sm); padding: .4rem .65rem;
}
.footer-about { color: color-mix(in srgb, var(--site-footer-text) 88%, transparent); line-height: 1.65; margin-bottom: 1.1rem; font-size: .88rem; }

.site-footer .footer-contact { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.site-footer .footer-contact li { display: flex; gap: .6rem; margin-bottom: .6rem; align-items: flex-start; font-size: .88rem; line-height: 1.5; }
.site-footer .footer-contact i { color: var(--site-secondary); margin-top: .18rem; font-size: .92rem; flex: 0 0 auto; }

.site-footer .footer-social { display: flex; flex-wrap: wrap; gap: .5rem; }
.site-footer .footer-social a {
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: var(--site-footer-heading); font-size: 1rem;
  transition: background .18s var(--site-ease), transform .18s var(--site-ease), border-color .18s;
}
.site-footer .footer-social a:hover { background: var(--site-secondary); border-color: var(--site-secondary); color: #fff; transform: translateY(-2px); }

.site-footer .footer-col h5 { color: var(--site-footer-heading); font-size: .95rem; font-weight: 700; margin: 0 0 .9rem; letter-spacing: .01em; }
.site-footer .footer-links { list-style: none; margin: 0; padding: 0; }
.site-footer .footer-links li { margin-bottom: .48rem; }
.site-footer .footer-links a { display: inline-flex; align-items: baseline; gap: .4rem; font-size: .875rem; line-height: 1.45; }
.site-footer .footer-links a::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; flex: 0 0 5px;
  background: var(--site-secondary); opacity: .55; transform: translateY(-2px); transition: opacity .18s, transform .18s;
}
.site-footer .footer-links a:hover::before { opacity: 1; transform: translateY(-2px) scale(1.35); }
.site-footer .footer-links li.more a { font-weight: 600; color: var(--site-footer-heading); }
.site-footer .footer-links li.more a::before { display: none; }
.site-footer .footer-links li.more a:hover { color: var(--site-footer-link-hover); }

/* ---- trust strip ---- */
.footer-trust {
  display: flex; flex-wrap: wrap; gap: .6rem 1.75rem;
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-trust span { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; color: color-mix(in srgb, var(--site-footer-text) 85%, transparent); }
.footer-trust i { color: var(--site-secondary); font-size: .95rem; }

/* ---- bottom bar ---- */
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0; font-size: .82rem; background: rgba(0,0,0,.15); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem 1.5rem; }
.footer-bottom-inner p { margin: 0; }
.site-footer .footer-bottom .links { display: flex; flex-wrap: wrap; gap: .3rem 1.1rem; }
.site-footer .footer-bottom .links a { position: relative; }
.site-footer .footer-bottom .links a + a::before { content: "·"; position: absolute; left: -.62rem; opacity: .4; }
.site-footer .footer-bottom .credit { color: color-mix(in srgb, var(--site-footer-text) 80%, transparent); }
.site-footer .footer-bottom .credit a { color: var(--site-footer-heading); font-weight: 600; }
.site-footer .footer-bottom .credit a:hover { color: var(--site-footer-link-hover); text-decoration: underline; }

@media print { .footer-cta { display: none; } }

/* ---- accordion: phones only ---- */
.footer-acc-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  width: 100%; background: none; border: 0; padding: 0; text-align: left;
  color: inherit; font: inherit; min-height: 44px;
}
.footer-acc-toggle i { transition: transform .2s var(--site-ease); font-size: .85rem; opacity: .75; }
.footer-acc-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

@media (max-width: 767.98px) {
  .site-footer .footer-top { padding: 2rem 0 1.25rem; }
  .footer-cta-inner { padding: 1.25rem 0; flex-direction: column; align-items: flex-start; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn { flex: 1 1 auto; justify-content: center; }
  .footer-grid { gap: 0; }
  .site-footer .footer-col { border-top: 1px solid rgba(255,255,255,.1); padding: .35rem 0; }
  .site-footer .footer-col h5 { margin: 0; }
  .site-footer .footer-links { padding: .35rem 0 .85rem; }
  .footer-trust { margin-top: 1.25rem; gap: .5rem 1rem; }
  .footer-trust span { font-size: .78rem; flex: 1 1 44%; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: .55rem; }
  .site-footer .footer-bottom .links { justify-content: center; }
}
@media (min-width: 768px) {
  /* the accordion is a phone affordance only — groups are always open here */
  .footer-acc-body { display: block !important; height: auto !important; visibility: visible !important; }
  .footer-acc-toggle { pointer-events: none; cursor: default; min-height: 0; }
  .footer-acc-toggle i { display: none; }
}
