/* =============================================
   HAKAAR — SPOT-ON STYLE (editorial / flat)
   Reference inspiration: premium mobile detailing
   ============================================= */

/* DM Sans is loaded via <link> in layouts (avoids @import + CSP quirks). */

:root {
  --gx-bg:           #ffffff;
  --gx-surface:      #f4f4f5;
  --gx-surface-2:    #e4e4e7;
  --gx-card:         #ffffff;
  --gx-border:       #e4e4e7;
  --gx-border-strong:#d4d4d8;

  --gx-ink:          #0a0a0a;
  --gx-ink-soft:     #27272a;
  --gx-text-muted:   #71717a;

  /* Brand blue — Hakaar */
  --gx-accent:         #014fab;
  --gx-accent-hover:   #013d8f;
  --gx-accent-soft:    rgba(1, 79, 171, 0.18);
  --gx-accent-border:  rgba(1, 79, 171, 0.28);
  /* Text on primary buttons */
  --gx-on-accent:      #ffffff;
  /* Accent as small text / links on white (readable) */
  --gx-accent-readable:#0a2f66;

  /* Secondary (links, chips) — cool neutral */
  --gx-link:         #2563eb;
  --gx-link-soft:    rgba(37, 99, 235, 0.08);

  --gx-inverse:      #0a0a0a;
  --gx-inverse-muted: rgba(255, 255, 255, 0.62);

  /* Legacy token names → map to new system (views still reference some) */
  --gx-navy:         var(--gx-ink);
  --gx-text:         var(--gx-ink);
  --gx-text-soft:    var(--gx-ink-soft);
  --gx-gold:         var(--gx-accent);
  --gx-gold-deep:    var(--gx-accent-hover);
  --gx-gold-light:   #e8f1fc;
  --gx-gold-dim:     var(--gx-accent-soft);
  --gx-teal:         var(--gx-link);
  --gx-teal-dark:    #1d4ed8;
  --gx-teal-dim:     var(--gx-link-soft);

  --shadow-sm:       0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-card:     0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover:    0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-accent:   0 8px 28px rgba(1, 79, 171, 0.35);

  --font-display:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body:       'DM Sans', system-ui, -apple-system, sans-serif;

  --section-py:      88px;
  --section-py-sm:   56px;

  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       14px;
  --radius-xl:       18px;

  --ease-smooth:     cubic-bezier(0.4, 0, 0.2, 1);

  /* Fixed header stack: ticker + main nav bar (logo row + vertical padding) */
  --gx-top-ticker-h:      40px;
  --gx-nav-bar-padding-y: 14px;
  --gx-sticky-header-inner-h: calc(var(--gx-top-ticker-h) + 70px);
  /* Horizontal breathing room (aligns with hero; safe-area on notched phones) */
  --gx-header-inline:     clamp(0.875rem, 4vw, 1.25rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--gx-bg);
  color: var(--gx-ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gx-surface); }
::-webkit-scrollbar-thumb { background: var(--gx-accent); border-radius: 4px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gx-ink);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 { font-weight: 800; }
h2 { font-weight: 800; }

/* Solid accent text (replaces gradient text everywhere) */
.text-accent {
  color: var(--gx-accent) !important;
  font-style: normal;
}
.text-gradient-gold,
.text-gradient-teal {
  color: var(--gx-accent) !important;
  background: none !important;
  -webkit-text-fill-color: var(--gx-accent) !important;
  background-clip: unset !important;
}

.text-gold    { color: var(--gx-accent) !important; }
.text-teal    { color: var(--gx-link) !important; }
.text-navy    { color: var(--gx-ink) !important; }
.text-soft    { color: var(--gx-ink-soft) !important; }
.text-muted-gx{ color: var(--gx-text-muted) !important; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gx-text-muted);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gx-accent);
  border-radius: 1px;
}

/* ---- TOP ACTIVITY TICKER (yellow bar) ---- */
.gx-top-ticker {
  min-height: var(--gx-top-ticker-h);
  height: var(--gx-top-ticker-h);
  flex-shrink: 0;
  background: var(--gx-accent);
  color: var(--gx-on-accent);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: max(var(--gx-header-inline), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gx-header-inline), env(safe-area-inset-right, 0px));
}
/* Clips marquee; edge fade so copy is not harshly cut mid-glyph */
.gx-top-ticker-marquee {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 12px,
    #000 calc(100% - 12px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 12px,
    #000 calc(100% - 12px),
    transparent 100%
  );
}
.gx-top-ticker-track {
  --gx-ticker-segments: 6;
  display: inline-flex;
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
  animation: gx-ticker-marquee 55s linear infinite;
}
.gx-top-ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2.75rem;
  padding: 0 1.5rem;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  :root {
    --gx-top-ticker-h: 44px;
  }
  .gx-top-ticker-group {
    gap: 1.35rem;
    padding: 0 1rem;
    font-size: 0.7rem;
  }
  .gx-top-ticker-marquee {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 16px,
      #000 calc(100% - 16px),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 16px,
      #000 calc(100% - 16px),
      transparent 100%
    );
  }
}
.gx-top-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.gx-top-ticker-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gx-on-accent);
  opacity: 0.85;
  flex-shrink: 0;
}
@keyframes gx-ticker-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-100% / var(--gx-ticker-segments, 6)), 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gx-top-ticker-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .gx-top-ticker-track {
    animation: none;
  }
  .gx-top-ticker-group[aria-hidden="true"] {
    display: none !important;
  }
}

/* ---- NAV ---- */
.navbar-gx {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gx-border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.navbar-gx-bar {
  padding: var(--gx-nav-bar-padding-y) 0;
  transition: padding 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth);
}

/* Match hero / sections: never flush to viewport on narrow screens */
.navbar-gx-bar .container,
.nav-mobile-menu .container {
  padding-left: max(calc(var(--bs-gutter-x, 1.5rem) * 0.5), var(--gx-header-inline), env(safe-area-inset-left, 0px));
  padding-right: max(calc(var(--bs-gutter-x, 1.5rem) * 0.5), var(--gx-header-inline), env(safe-area-inset-right, 0px));
}

.navbar-gx.scrolled .navbar-gx-bar {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

/* Logo | centered links | CTAs — one row */
.gx-nav-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
}
@media (min-width: 992px) {
  .gx-nav-row {
    gap: 1rem;
  }
}
.gx-nav-row .navbar-brand {
  margin-right: 0;
  flex: 0 0 auto;
}
.gx-nav-center {
  flex: 1 1 auto;
  min-width: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
@media (min-width: 992px) {
  .gx-nav-center {
    display: flex;
  }
}
.gx-nav-end {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .gx-nav-end {
    display: flex;
  }
}
.gx-nav-toggler {
  flex: 0 0 auto;
  margin-left: auto;
  border: 1px solid var(--gx-border) !important;
  background: var(--gx-bg) !important;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-sm);
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}
@media (min-width: 992px) {
  .gx-nav-toggler {
    display: none !important;
  }
}

/* Mobile drawer: class-based (fixes conflict with Bootstrap d-* utilities) */
.nav-mobile-menu {
  display: none;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--gx-border);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
  max-height: min(72vh, 28rem);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-mobile-menu.is-open {
  display: block;
}
@media (min-width: 992px) {
  .nav-mobile-menu,
  .nav-mobile-menu.is-open {
    display: none !important;
  }
}

.brand-gx {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--gx-ink);
}
.brand-gx span.accent {
  color: var(--gx-accent);
}

.navbar-gx .navbar-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 1.5rem;
}
.navbar-gx-bar .navbar-brand {
  margin-right: 0;
}
.navbar-brand-logo .logo-nav {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
}
@media (max-width: 991px) {
  .navbar-brand-logo .logo-nav { height: 34px; }
}

.navbar-gx .nav-link {
  color: var(--gx-ink-soft) !important;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 6px 12px !important;
  transition: color 0.2s;
  position: relative;
}
.navbar-gx .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--gx-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-smooth);
}
.navbar-gx .nav-link:hover,
.navbar-gx .nav-link.active { color: var(--gx-ink) !important; }
.navbar-gx .nav-link:hover::after,
.navbar-gx .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
  border: 1px solid var(--gx-border) !important;
  background: var(--gx-bg) !important;
}

/* ---- BUTTONS (flat) ---- */
.btn-gx-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gx-accent);
  color: var(--gx-on-accent);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border: none;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s var(--ease-smooth), box-shadow 0.2s, color 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.btn-gx-gold:hover {
  background: var(--gx-accent-hover);
  color: var(--gx-on-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-gx-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gx-ink);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid var(--gx-border-strong);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.btn-gx-outline:hover {
  background: var(--gx-surface);
  border-color: var(--gx-ink);
  color: var(--gx-ink);
}

.btn-gx-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gx-ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.btn-gx-teal:hover {
  background: #18181b;
  color: #fff;
  transform: translateY(-1px);
}

.btn-nav-login {
  border: 1px solid var(--gx-border-strong);
  color: var(--gx-ink-soft);
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-nav-login:hover {
  background: var(--gx-surface);
  border-color: var(--gx-ink);
  color: var(--gx-ink);
}

.btn-nav-book {
  background: var(--gx-accent);
  color: var(--gx-on-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-nav-book:hover {
  background: var(--gx-accent-hover);
  color: var(--gx-on-accent);
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero-gx {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gx-bg);
  padding: calc(var(--gx-sticky-header-inner-h) + 2.5rem) 0 72px;
}

/* Subtle structure — single flat panel, no gradient wash */
.hero-gx::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: min(52%, 640px);
  height: 100%;
  background: var(--gx-surface);
  border-left: 1px solid var(--gx-border);
  pointer-events: none;
}

@media (max-width: 991px) {
  .hero-gx::before { display: none; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gx-surface);
  border: 1px solid var(--gx-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gx-ink-soft);
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gx-accent);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--gx-ink);
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--gx-text-muted);
  margin-bottom: 28px;
  max-width: 34rem;
  line-height: 1.7;
}

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap::before {
  display: none;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
  display: block;
  border: 1px solid var(--gx-border);
  box-shadow: var(--shadow-card);
}

/* Cart / checkout — same split-panel hero as home, shorter */
.hero-gx.hero-gx--flow {
  min-height: 0;
  align-items: flex-start;
  padding: calc(var(--gx-sticky-header-inner-h) + 1.35rem) 0 2.5rem;
}
.hero-gx.hero-gx--flow .hero-flow-inner {
  width: 100%;
}
.hero-gx.hero-gx--flow .gx-checkout-breadcrumb {
  margin-bottom: 0.35rem;
}
.hero-gx.hero-gx--flow .hero-eyebrow {
  margin-top: 1rem;
  margin-bottom: 0;
}
.hero-gx.hero-gx--flow .hero-title {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  margin-top: 1.15rem;
  margin-bottom: 0.65rem;
  line-height: 1.08;
}
.hero-gx.hero-gx--flow .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 40rem;
}
.hero-gx.hero-gx--flow .gx-checkout-hero-chip {
  margin-top: 1.35rem;
}
.hero-gx.hero-gx--flow.hero-gx--flow-center .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .hero-gx.hero-gx--flow::before {
    display: none;
  }
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--gx-ink);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid #27272a;
  border-bottom: 1px solid #27272a;
}
.trust-marquee { display: flex; gap: 48px; animation: marquee 32s linear infinite; width: max-content; }
.trust-marquee-inner { display: flex; gap: 48px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em;
}
.trust-item .dot {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
.trust-item-icon {
  font-size: 1rem;
  color: #fff;
  opacity: 0.95;
  flex-shrink: 0;
}

/* ---- INNER PAGE HERO ---- */
.page-hero {
  padding: calc(var(--gx-sticky-header-inner-h) + 2.75rem) 0 48px;
  background: var(--gx-surface);
  border-bottom: 1px solid var(--gx-border);
}
.page-hero .page-hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--gx-ink);
  margin-bottom: 14px;
  line-height: 1.08;
}
.page-hero.text-center .section-label {
  justify-content: center;
}
.page-hero.text-center .section-label::before {
  display: none;
}

/* ---- SECTIONS ---- */
.section-gx     { padding: var(--section-py) 0; }
.section-gx-sm  { padding: var(--section-py-sm) 0; }
.section-light   { background: var(--gx-bg); }
.section-surface { background: var(--gx-surface); }

.card-gx {
  background: var(--gx-card);
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease-smooth), border-color 0.25s;
}
.card-gx:hover {
  box-shadow: var(--shadow-hover);
  border-color: #d4d4d8;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--gx-card);
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease-smooth), border-color 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gx-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-smooth);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: #d4d4d8;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gx-surface);
  border: 1px solid var(--gx-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.service-card:hover .service-card-icon {
  border-color: #d4d4d8;
}

.service-card-type {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gx-link);
  margin-bottom: 4px;
}
.service-card-name { font-weight: 700; font-size: 0.9375rem; color: var(--gx-ink); margin-bottom: 8px; }
.service-card-desc { font-size: 0.8125rem; color: var(--gx-text-muted); line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
.service-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gx-ink);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card-price small { font-size: 0.6875rem; font-weight: 500; color: var(--gx-text-muted); }

.service-card-media {
  padding: 0;
  overflow: hidden;
}
.service-card-media .service-card-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gx-surface);
  border-bottom: 1px solid var(--gx-border);
}
.service-card-media .service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card-media .service-card-body {
  padding: 1.2rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-media h3.service-card-name {
  font-size: 0.9375rem;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.25;
  color: var(--gx-ink);
}
.service-card-highlights {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  flex-grow: 1;
}
.service-card-highlights li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--gx-text-muted);
  padding: 4px 0;
  line-height: 1.45;
}
.service-card-highlights li i {
  color: var(--gx-link);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.service-card-meta {
  font-size: 0.72rem;
  color: var(--gx-text-muted);
  margin-bottom: 0.65rem;
}
.service-card--bike::after {
  background: var(--gx-link);
}
.service-card--bike .service-card-type {
  color: var(--gx-link);
}
.service-card--bike .service-card-highlights li i {
  color: var(--gx-link);
}
.service-card--bike .service-card-price {
  color: var(--gx-link);
}

.services-pkg-heading-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.services-pkg-heading-icon--car {
  background: var(--gx-accent-soft);
  border: 1px solid var(--gx-accent-border);
  color: var(--gx-accent-readable);
}
.services-pkg-heading-icon--bike {
  background: var(--gx-teal-dim);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--gx-link);
}
.services-pkg-heading-title {
  font-size: 1.65rem;
  margin: 0;
  font-family: var(--font-display);
  color: var(--gx-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.services-pkg-heading-sub {
  color: var(--gx-text-muted);
  font-size: 0.875rem;
  max-width: 36rem;
}

.booking-pkg-card {
  display: block;
  cursor: pointer;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gx-border);
  background: var(--gx-card);
  overflow: hidden;
  transition: border-color 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
}
.booking-pkg-card:hover {
  border-color: #d4d4d8;
  box-shadow: var(--shadow-sm);
}
.booking-pkg-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.booking-pkg-radio:checked + .booking-pkg-card-inner {
  outline: 2px solid var(--gx-accent);
  outline-offset: -2px;
}
.booking-pkg-card:has(.booking-pkg-radio:checked) {
  border-color: var(--gx-accent);
  box-shadow: var(--shadow-card);
}
.booking-pkg-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.booking-pkg-visual {
  aspect-ratio: 16 / 10;
  background: var(--gx-surface);
  overflow: hidden;
}
.booking-pkg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.booking-pkg-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.booking-pkg-type {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gx-link);
}
.booking-pkg-wrap[data-pkg-vt="car"] .booking-pkg-type {
  color: var(--gx-accent-readable);
}
.booking-pkg-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gx-ink);
}
.booking-pkg-short {
  font-size: 0.78rem;
  color: var(--gx-text-muted);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}
.booking-pkg-hl {
  font-size: 0.72rem;
  color: var(--gx-text-muted);
  margin-bottom: 0.35rem !important;
}
.booking-pkg-hl li {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
  padding: 2px 0;
}
.booking-pkg-hl i {
  color: var(--gx-link);
  flex-shrink: 0;
  margin-top: 2px;
}
.booking-pkg-wrap[data-pkg-vt="car"] .booking-pkg-hl i {
  color: var(--gx-accent-readable);
}
.booking-pkg-price {
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: auto;
}
.booking-pkg-meta {
  font-size: 0.7rem;
  color: var(--gx-text-muted);
}

/* ---- STEPS ---- */
.step-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gx-bg);
  border: 2px solid var(--gx-border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gx-ink);
  margin-bottom: 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.step-wrap:hover .step-num {
  border-color: var(--gx-accent);
  color: var(--gx-accent);
  background: var(--gx-accent-soft);
}
.step-title { font-weight: 700; font-size: 0.9375rem; color: var(--gx-ink); margin-bottom: 6px; }
.step-desc  { font-size: 0.8125rem; color: var(--gx-text-muted); line-height: 1.6; }

/* ---- STATS ---- */
.stats-section {
  background: var(--gx-ink);
  padding: 64px 0;
  position: relative;
}
.stats-section::before { display: none; }

.stat-block { text-align: center; padding: 14px 16px; position: relative; }
.stat-block + .stat-block::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: rgba(255, 255, 255, 0.12);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gx-accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gx-inverse-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- FEATURES ---- */
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--gx-card);
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-item:hover {
  border-color: #d4d4d8;
  box-shadow: var(--shadow-card);
}
.feature-icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: var(--gx-surface);
  border: 1px solid var(--gx-border);
}
.feature-icon-wrap.gold { }
.feature-icon-wrap.teal { }
.feature-content h5 { font-size: 0.875rem; font-weight: 700; color: var(--gx-ink); margin-bottom: 4px; }
.feature-content p  { font-size: 0.8125rem; color: var(--gx-text-muted); margin: 0; line-height: 1.55; }

/* ---- AREAS ---- */
.area-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gx-bg);
  border: 1px solid var(--gx-border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gx-ink-soft);
  transition: border-color 0.2s;
}
.area-tag:hover {
  border-color: var(--gx-ink);
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--gx-card);
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 8px; right: 16px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gx-surface-2);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); border-color: #d4d4d8; }
.testimonial-stars { color: var(--gx-accent); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text { font-size: 0.875rem; color: var(--gx-ink-soft); line-height: 1.7; margin-bottom: 18px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gx-ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8125rem; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.8125rem; color: var(--gx-ink); }
.testimonial-loc  { font-size: 0.6875rem; color: var(--gx-text-muted); }

.home-testimonials .testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home-testimonials .testimonial-text {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.65;
  min-height: 6.75rem;
  margin-bottom: 1.25rem;
}
.home-testimonials .testimonial-name {
  font-size: 0.8125rem;
}
.home-testimonials .testimonial-loc {
  font-size: 0.75rem;
  line-height: 1.45;
}
.testimonial-avatar--photo {
  padding: 0;
  overflow: hidden;
  background: var(--gx-border);
}
.testimonial-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-map-card--full .coverage-map {
  min-height: 400px;
  height: min(52vh, 520px);
}

/* ---- PARTNER CTA ---- */
.partner-cta-section {
  background: var(--gx-ink);
  padding: 72px 0;
  position: relative;
  border-top: 1px solid #27272a;
}
.partner-cta-section::before { display: none; }

/* ---- CTA STRIP ---- */
.cta-section {
  background: var(--gx-surface);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--gx-border);
  border-bottom: 1px solid var(--gx-border);
}
.cta-section::before { display: none; }

/* ---- FOOTER ---- */
.footer-gx {
  background: var(--gx-ink);
  padding: 56px 0 24px;
}
.footer-brand {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}
.footer-brand .accent { color: var(--gx-accent); }

.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
  line-height: 0;
}
.footer-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.footer-tagline { font-size: 0.8125rem; color: var(--gx-inverse-muted); line-height: 1.65; max-width: 320px; margin-bottom: 10px; }
.footer-blurb {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 20px;
}
.footer-legal-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.footer-legal-link:hover {
  color: var(--gx-accent);
}
.footer-heading {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--gx-inverse-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; color: var(--gx-inverse-muted); font-size: 0.8125rem; }
.footer-contact-item .icon { flex-shrink: 0; color: var(--gx-accent); margin-top: 2px; }

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gx-text-muted);
  font-size: 0.8125rem;
  line-height: 1.55;
}
.contact-info-row .icon { flex-shrink: 0; color: var(--gx-accent); margin-top: 2px; font-size: 0.875rem; }
.footer-divider { border-color: rgba(255, 255, 255, 0.1); margin: 32px 0 20px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.75rem; color: rgba(255, 255, 255, 0.38); }
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a { font-size: 0.75rem; color: rgba(255, 255, 255, 0.38); text-decoration: none; }
.footer-legal-links a:hover { color: #fff; }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-size: 0.8125rem;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ---- ALERTS / FORMS ---- */
.alert-gx-success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.875rem; }
.alert-gx-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.875rem; }

.form-gx {
  background: var(--gx-card);
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-control-gx {
  background: var(--gx-bg);
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-sm);
  color: var(--gx-ink);
  padding: 12px 14px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-control-gx:focus {
  outline: none;
  border-color: #d4a017;
  box-shadow: 0 0 0 3px var(--gx-accent-soft);
}
.form-control-gx::placeholder { color: var(--gx-text-muted); }
.form-label-gx { font-size: 0.75rem; font-weight: 700; color: var(--gx-ink-soft); margin-bottom: 6px; display: block; }

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gx-surface);
  padding: calc(var(--gx-sticky-header-inner-h) + 3rem) 0 48px;
}
.auth-card {
  background: var(--gx-card);
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

/* Login: customer / partner (serviceman) / admin portals */
.auth-login-portals {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: stretch;
}
.auth-login-portal-item {
  flex: 1;
  min-width: 100px;
  margin: 0;
  cursor: pointer;
}
.auth-login-portal-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.auth-login-portal-face {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-lg);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gx-ink-soft);
  background: var(--gx-surface);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.auth-login-portal-input:checked + .auth-login-portal-face {
  border-color: var(--gx-accent-border);
  background: var(--gx-accent-soft);
  color: #78350f;
}
.auth-login-portal-input:focus-visible + .auth-login-portal-face {
  outline: 2px solid var(--gx-accent);
  outline-offset: 2px;
}

.panel-body { background: var(--gx-surface); min-height: 100vh; }

.badge-gx-gold {
  background: var(--gx-accent-soft);
  border: 1px solid var(--gx-accent-border);
  color: #78350f;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
}
.badge-gx-teal {
  background: var(--gx-link-soft);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--gx-link);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
}

.divider-gold {
  height: 1px;
  background: var(--gx-border);
  border: none;
  margin: 0;
}

/* ---- MOTION ---- */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight{ from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pageIn     { to { opacity: 1; } }

.hero-anim   { animation: fadeInUp    0.6s var(--ease-smooth) both; }
.hero-anim-l { animation: fadeInLeft  0.6s var(--ease-smooth) both; }
.hero-anim-r { animation: fadeInRight 0.6s var(--ease-smooth) both; }
.page-transition { opacity: 0; animation: pageIn 0.35s ease forwards; }

/* Scroll sections: always visible (no opacity trap) */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }
.delay-5 { animation-delay: 0.4s; }
.delay-6 { animation-delay: 0.48s; }

/* ---- HOME PREMIUM POLISH ---- */
.home-bento-band {
  background: linear-gradient(180deg, var(--gx-surface) 0%, var(--gx-bg) 55%, var(--gx-bg) 100%);
}
.home-bento-band-label {
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}
.home-bento-cell {
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.15rem;
  background: var(--gx-card);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: border-color 0.22s var(--ease-smooth), box-shadow 0.22s var(--ease-smooth), transform 0.22s var(--ease-smooth);
}
.home-bento-cell:hover {
  border-color: var(--gx-accent-border);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.home-bento-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gx-accent-soft);
  border: 1px solid var(--gx-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.home-bento-icon {
  font-size: 1.22rem;
  color: var(--gx-accent-readable);
  margin-bottom: 0;
  line-height: 1;
}
.home-bento-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: 0.45rem;
  color: var(--gx-ink);
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.home-bento-desc {
  font-size: 0.8125rem;
  color: var(--gx-text-muted);
  line-height: 1.65;
}
@media (min-width: 992px) {
  .home-bento-cell {
    padding: 1.35rem 1.25rem;
  }
  .home-bento-desc {
    font-size: 0.84rem;
  }
}

.home-hero-promise li {
  max-width: 15rem;
}

.package-popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gx-accent-soft);
  color: #78350f;
  border: 1px solid var(--gx-accent-border);
  padding: 4px 10px;
  border-radius: 999px;
}

.coverage-cloud-wrap {
  scrollbar-width: thin;
  scrollbar-color: rgba(1, 79, 171, 0.6) var(--gx-surface);
}
.coverage-cloud-wrap::-webkit-scrollbar {
  width: 8px;
}
.coverage-cloud-wrap::-webkit-scrollbar-thumb {
  background: var(--gx-accent);
  border-radius: 8px;
}

.coverage-map {
  min-height: 280px;
  height: 320px;
  z-index: 0;
  background: var(--gx-surface);
}
.coverage-map--failed {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage-region-block:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.home-faq-teaser .accordion-button {
  font-size: 0.9rem !important;
}

@media (max-width: 768px) {
  :root { --section-py: 56px; --section-py-sm: 40px; }
  .hero-gx { min-height: auto; padding: calc(var(--gx-sticky-header-inner-h) + 1.75rem) 0 48px; }
  .hero-title { font-size: 2rem; }
  .stat-block + .stat-block::before { display: none; }
  .form-gx { padding: 24px 18px; }
  .auth-card { padding: 28px 20px; }
}

select.form-control-gx option { background: #fff; color: var(--gx-ink); }
textarea.form-control-gx { resize: vertical; min-height: 120px; }

.accordion-button {
  background: transparent !important;
  color: var(--gx-ink) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  font-size: 0.875rem !important;
}
.accordion-button:not(.collapsed) { color: var(--gx-accent) !important; }
.accordion-item { border-color: var(--gx-border) !important; }

/* Dark partner band: labels + copy */
.partner-cta-section .section-label { color: rgba(255, 255, 255, 0.5); }
.partner-cta-section .section-label::before { background: var(--gx-accent); }
.partner-cta-section h2 { color: #fff; }

/* ---- Account menu (admin + panel shells) ---- */
.gx-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gx-accent) 0%, var(--gx-accent-hover) 100%);
  color: var(--gx-on-accent);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.gx-avatar--sm {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.72rem;
}
.gx-account-dropdown .gx-account-trigger {
  border-radius: var(--radius-md, 10px);
  padding: 0.25rem 0.5rem 0.25rem 0.35rem;
  border: 1px solid var(--gx-border, #e4e4e7);
  background: var(--gx-surface, #f4f4f5);
  color: var(--gx-ink, #0a0a0a);
  box-shadow: none;
}
.gx-account-dropdown .gx-account-trigger:hover,
.gx-account-dropdown .gx-account-trigger:focus,
.gx-account-dropdown .gx-account-trigger.show {
  background: var(--gx-card, #fff);
  border-color: var(--gx-border-strong, #d4d4d8);
  color: var(--gx-ink, #0a0a0a);
}
.gx-account-dropdown .gx-account-caret {
  font-size: 0.65rem;
  opacity: 0.75;
}
.gx-account-menu {
  min-width: 14rem;
  border-radius: var(--radius-md, 10px);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.gx-account-menu .dropdown-header {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gx-ink, #0a0a0a);
}
.gx-shell--vendor .gx-account-dropdown .gx-account-trigger {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.gx-shell--vendor .gx-account-dropdown .gx-account-trigger:hover,
.gx-shell--vendor .gx-account-dropdown .gx-account-trigger:focus,
.gx-shell--vendor .gx-account-dropdown .gx-account-trigger.show {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.gx-shell--vendor .gx-account-dropdown .gx-account-caret {
  color: rgba(255, 255, 255, 0.75) !important;
}
.gx-shell--vendor .gx-avatar {
  border-color: rgba(255, 255, 255, 0.35);
}

/* ---- Public booking checkout (full-width, hero spacing) ---- */
.gx-checkout-page {
  overflow-x: hidden;
}
.gx-checkout-hero .gx-checkout-hero-inner {
  padding-left: max(var(--gx-header-inline), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gx-header-inline), env(safe-area-inset-right, 0px));
}
.gx-checkout-breadcrumb {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gx-text-muted);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.gx-checkout-breadcrumb a {
  color: var(--gx-link);
  text-decoration: none;
}
.gx-checkout-breadcrumb a:hover {
  text-decoration: underline;
}
.gx-checkout-breadcrumb__sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}
.gx-checkout-breadcrumb__current {
  color: var(--gx-ink-soft);
}
.gx-checkout-hero-label.section-label {
  margin-bottom: 0.75rem;
}
.gx-checkout-title.page-hero-title {
  text-align: left;
  max-width: 20ch;
}
@media (min-width: 992px) {
  .gx-checkout-hero-row {
    min-height: 4rem;
  }
}
.gx-checkout-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--gx-text-muted);
  line-height: 1.65;
  max-width: 42rem;
}
.gx-checkout-hero-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--gx-card);
  border: 1px solid var(--gx-border);
  box-shadow: var(--shadow-sm);
  max-width: 36rem;
}
.gx-checkout-hero-chip-icon {
  color: var(--gx-accent);
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 2px;
}
.gx-checkout-hero-chip-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gx-text-muted);
  margin-bottom: 0.2rem;
}
.gx-checkout-hero-chip-value {
  font-weight: 700;
  color: var(--gx-ink);
  font-size: 0.95rem;
  line-height: 1.35;
}
.gx-checkout-hero-chip-price {
  font-weight: 600;
  color: var(--gx-accent-readable, var(--gx-accent));
}
.gx-checkout-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
@media (min-width: 992px) {
  .gx-checkout-hero-aside {
    align-items: flex-end;
    text-align: right;
  }
  .gx-checkout-trust-mini {
    align-items: flex-end;
  }
}
.gx-checkout-trust-mini {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gx-checkout-trust-mini__item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gx-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.gx-checkout-trust-mini__item i {
  color: var(--gx-accent);
  font-size: 1rem;
}
.gx-checkout-link-back {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gx-link);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.gx-checkout-link-back:hover {
  text-decoration: underline;
  color: var(--gx-ink);
}
.gx-checkout-flow {
  background: linear-gradient(180deg, var(--gx-bg) 0%, var(--gx-surface) 48%, var(--gx-bg) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
}
.gx-checkout-flow-inner {
  padding-left: max(var(--gx-header-inline), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gx-header-inline), env(safe-area-inset-right, 0px));
}
.gx-checkout-alert--signed {
  background: rgba(1, 79, 171, 0.12);
  color: var(--gx-ink);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(1, 79, 171, 0.35) !important;
}
.gx-checkout-alert--signed i {
  color: var(--gx-accent);
}
.gx-checkout-panel {
  background: var(--gx-card);
  border: 1px solid var(--gx-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  overflow: hidden;
}
.gx-checkout-panel--wide {
  border-radius: var(--radius-xl);
}
.gx-checkout-panel__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.15rem, 3vw, 1.75rem);
  background: linear-gradient(180deg, var(--gx-surface) 0%, var(--gx-card) 100%);
  border-bottom: 1px solid var(--gx-border);
}
.gx-checkout-panel__head--nested {
  border-bottom: 0;
  padding: 0;
  background: none;
}
.gx-checkout-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  background: var(--gx-accent);
  color: var(--gx-on-accent);
  box-shadow: 0 2px 8px rgba(1, 79, 171, 0.35);
}
.gx-checkout-panel__title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--gx-ink);
}
.gx-checkout-panel__sub {
  font-size: 0.875rem;
  color: var(--gx-text-muted);
  line-height: 1.55;
  max-width: 52rem;
}
.gx-checkout-panel__body {
  padding: clamp(1.15rem, 3vw, 1.75rem) clamp(1.15rem, 3vw, 1.75rem) clamp(1.35rem, 3vw, 2rem);
}
.gx-checkout-seg {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 14px;
  background: var(--gx-surface);
  border: 1px solid var(--gx-border);
}
.gx-checkout-seg__item {
  position: relative;
  margin: 0;
  cursor: pointer;
}
.gx-checkout-seg__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.gx-checkout-seg__face {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gx-ink-soft);
  border: 1px solid transparent;
  transition: background 0.2s var(--ease-smooth), color 0.2s var(--ease-smooth), border-color 0.2s var(--ease-smooth);
}
.gx-checkout-seg__item:hover .gx-checkout-seg__face {
  color: var(--gx-ink);
  background: rgba(255, 255, 255, 0.65);
}
.gx-checkout-seg__input:focus-visible + .gx-checkout-seg__face {
  outline: 2px solid var(--gx-accent);
  outline-offset: 2px;
}
.gx-checkout-seg__input:checked + .gx-checkout-seg__face {
  background: var(--gx-card);
  color: var(--gx-ink);
  border-color: var(--gx-border);
  box-shadow: var(--shadow-sm);
}
.gx-checkout-detail-scope {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-xl);
}
.gx-checkout-detail__inner {
  padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.15rem, 3vw, 1.75rem);
}
.gx-checkout-detail-body {
  line-height: 1.65;
}
.gx-checkout-detail-hl li {
  margin-bottom: 0.25rem;
}
.gx-checkout-detail-hl i {
  color: var(--gx-accent);
}
.gx-checkout-slot-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gx-border);
  background: var(--gx-surface);
  padding: clamp(1rem, 2.5vw, 1.35rem);
}
.gx-checkout-slot-card__title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gx-ink);
  margin-bottom: 0.35rem;
}
.gx-checkout-account-pill {
  cursor: pointer;
  margin: 0;
}
.gx-checkout-account-pill__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.gx-checkout-account-pill__face {
  display: block;
  text-align: center;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gx-ink-soft);
  border: 1px solid var(--gx-border);
  background: var(--gx-surface);
  transition: border-color 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth), color 0.2s var(--ease-smooth);
}
.gx-checkout-account-pill__input:checked + .gx-checkout-account-pill__face {
  border-color: var(--gx-accent);
  color: var(--gx-ink);
  background: var(--gx-card);
  box-shadow: 0 0 0 1px rgba(1, 79, 171, 0.25);
}
.gx-checkout-account-pill__input:focus-visible + .gx-checkout-account-pill__face {
  outline: 2px solid var(--gx-accent);
  outline-offset: 2px;
}
.gx-checkout-inline-link {
  color: var(--gx-link);
  font-weight: 600;
  text-decoration: none;
}
.gx-checkout-inline-link:hover {
  text-decoration: underline;
}
.gx-checkout-submit-bar {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  padding-top: clamp(1.25rem, 3vw, 1.5rem);
  border-top: 1px solid var(--gx-border);
}
.gx-checkout-submit-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .gx-checkout-submit-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.gx-checkout-submit-bar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gx-checkout-submit-bar__actions {
    justify-content: flex-end;
  }
}
.gx-checkout-submit-bar .btn-gx-gold {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.gx-checkout-model-picker .form-select.form-control-gx,
.gx-checkout-model-picker select.form-control-gx {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.gx-checkout-model-picker-note {
  max-width: 48rem;
}
.gx-checkout-locked-vt__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(1, 79, 171, 0.2);
  color: var(--gx-ink);
  border: 1px solid rgba(1, 79, 171, 0.45);
}
.gx-checkout-locked-vt__badge--bike {
  background: rgba(13, 148, 136, 0.12);
  border-color: rgba(13, 148, 136, 0.35);
  color: var(--gx-ink);
}
.gx-checkout-single-pkg {
  max-width: 420px;
}
.gx-checkout-single-pkg__card.booking-pkg-card {
  cursor: default;
  border-color: rgba(1, 79, 171, 0.55);
  box-shadow: 0 0 0 1px rgba(1, 79, 171, 0.2), var(--shadow-sm);
}
.gx-checkout-single-pkg__card .booking-pkg-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
