@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --navy: #0f2747;
  --navy-deep: #0a1b33;
  --gold: #e8b53e;
  --gold-deep: #b98a1f; /* AA-safe gold text on white */
  --teal: #2ba39a;
  --teal-deep: #16726b; /* AA-safe teal text on white */
  --ink: #0f2747;
  --slate: #48586f; /* >=4.5:1 body text on white */
  --mist: #f4f7fb;
  --line: #e1e8f1;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px -22px rgba(15, 39, 71, 0.45);
  --shadow-sm: 0 6px 20px -10px rgba(15, 39, 71, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
img,
svg {
  display: block;
}

/* visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
}
.logo-mark {
  width: 34px;
  height: auto;
  flex: none;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 8px;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--slate);
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-spacer {
  flex: 1;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn {
  font-family: "Inter";
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 22px;
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
}
.btn-ghost:hover {
  background: var(--mist);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: #f0c456;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-deep);
}
.nav-toggle {
  display: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: radial-gradient(
    120% 90% at 85% -10%,
    #14365f 0%,
    var(--navy) 45%,
    var(--navy-deep) 100%
  );
  color: var(--white);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 74px 24px 92px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232, 181, 62, 0.12);
  border: 1px solid rgba(232, 181, 62, 0.35);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 .hl {
  color: var(--gold);
}
.hero p.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: #cdd8e8;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-proof {
  display: flex;
  gap: 26px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-proof div {
  display: flex;
  flex-direction: column;
}
.hero-proof b {
  font-family: "Space Grotesk";
  font-size: 26px;
  color: var(--white);
}
.hero-proof span {
  font-size: 13px;
  color: #9fb0c8;
}

/* booking widget */
.booker {
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 10px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.tabs {
  display: flex;
  gap: 4px;
  background: var(--mist);
  border-radius: 16px;
  padding: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tab {
  flex: 1;
  min-width: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 11px 8px;
  border-radius: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Inter";
  font-weight: 600;
  font-size: 12.5px;
  color: var(--slate);
  transition:
    background 0.15s,
    color 0.15s;
}
.tab svg {
  width: 22px;
  height: 22px;
}
.tab:hover {
  color: var(--navy);
}
.tab[aria-selected="true"] {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.tab[aria-selected="true"] .ic {
  stroke: var(--gold);
}
.booker-body {
  padding: 20px 14px 4px;
}
.booker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.booker-head h3 {
  font-size: 19px;
  color: var(--navy);
}
.booker-head .badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
  background: rgba(43, 163, 154, 0.12);
  border: 1px solid rgba(43, 163, 154, 0.3);
  padding: 5px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.field {
  position: relative;
  margin-bottom: 11px;
}
.field .pin {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.field input {
  width: 100%;
  font-family: "Inter";
  font-size: 15px;
  color: var(--ink);
  background: var(--mist);
  border: 1.5px solid transparent;
  border-radius: 13px;
  padding: 15px 15px 15px 44px;
  transition:
    border 0.15s,
    background 0.15s;
}
.field input::placeholder {
  color: #7f8da0;
}
.field input:hover {
  background: #eef2f8;
}
.field input:focus {
  background: var(--white);
  border-color: var(--teal);
  outline: none;
}
.booker .btn-gold {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px;
  font-size: 16px;
  margin-top: 7px;
}
.booker-foot {
  text-align: center;
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 13px;
}
.booker-foot b {
  color: var(--navy);
}

/* ---------- SERVICES ---------- */
section.block {
  padding: 90px 0;
}
.sec-head {
  max-width: 640px;
  margin-bottom: 46px;
}
.sec-head .kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.sec-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.sec-head p {
  font-size: 17px;
  color: var(--slate);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(43, 163, 154, 0.5);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  margin-bottom: 18px;
}
.card .icon svg {
  width: 27px;
  height: 27px;
  stroke: var(--gold);
}
.card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.card p {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 18px;
}
.card .go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--teal-deep);
}
.card .go svg {
  width: 16px;
  height: 16px;
  transition: transform 0.15s;
}
.card:hover .go svg {
  transform: translateX(4px);
}
.card .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 9px;
  border-radius: 7px;
}

/* ---------- TRUST STRIP ---------- */
.trust {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 48px 24px;
}
.trust .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust .item .ti {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.trust .item .ti svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-deep);
}
.trust .item b {
  display: block;
  font-family: "Space Grotesk";
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 3px;
}
.trust .item span {
  font-size: 13.5px;
  color: var(--slate);
}

/* ---------- APP CTA ---------- */
.appcta {
  background: radial-gradient(
    120% 120% at 0% 100%,
    #14365f 0%,
    var(--navy) 55%,
    var(--navy-deep) 100%
  );
  color: var(--white);
}
.appcta .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 40px;
  align-items: center;
  padding: 72px 24px;
}
.appcta-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.appcta h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}
.appcta h2 .hl {
  color: var(--gold);
}
.appcta p {
  color: #cdd8e8;
  font-size: 17px;
  max-width: 440px;
}
.stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.store {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--white);
  color: var(--navy);
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.store svg {
  width: 24px;
  height: 24px;
}
.store small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
  line-height: 1;
}
.store b {
  font-size: 16px;
  font-family: "Space Grotesk";
}
.phone-img {
  justify-self: right;
  height: auto;
  width: 600px;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(6, 15, 31, 0.55));
}
.phone .notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #060f1f;
  border-radius: 0 0 14px 14px;
}
.phone .pscreen {
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
}
.phone .pshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.phone .pbar {
  height: 46px;
  border-radius: 12px;
  background: var(--mist);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}
.phone .pbar .pdot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
}
.phone .pbar .pline {
  flex: 1;
  height: 9px;
  border-radius: 5px;
  background: #d7e0ec;
}
.phone .pmap {
  height: 150px;
  border-radius: 14px;
  background: linear-gradient(120deg, #dcebe9 0%, #e7eef6 100%);
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
}
.phone .pmap .route {
  position: absolute;
  left: 24px;
  top: 30px;
  width: 130px;
  height: 80px;
  border: 3px dashed var(--teal);
  border-radius: 40% 60% 50% 40%;
  border-right: none;
  border-bottom: none;
}
.phone .pmap .ppin {
  position: absolute;
  right: 34px;
  bottom: 28px;
}
.phone .pgo {
  height: 44px;
  border-radius: 12px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk";
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-deep);
  color: #aebdd2;
  padding: 64px 0 30px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fbrand .logo {
  color: var(--white);
  margin-bottom: 14px;
}
.fbrand p {
  font-size: 14px;
  max-width: 280px;
  color: #8fa1bb;
}
.fcol h4 {
  font-family: "Space Grotesk";
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.fcol a {
  display: block;
  font-size: 14.5px;
  color: #aebdd2;
  margin-bottom: 11px;
}
.fcol a:hover {
  color: var(--gold);
}
.fbottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: #7e90ac;
  flex-wrap: wrap;
  gap: 12px;
}
.fbottom .socials {
  display: flex;
  gap: 14px;
}
.fbottom .socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fbottom .socials a:hover {
  border-color: var(--gold);
}
.fbottom .socials svg {
  width: 17px;
  height: 17px;
  stroke: #aebdd2;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}
.hero-wm {
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  max-width: 55%;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 920px) {
  .hero-wm {
    display: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .appcta .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .appcta-left { display: contents; }
  .appcta-copy {
    order: 1;
    text-align: center;
    width: 100%;
  }
  .appcta p { max-width: 100%; }
  .appcta .phone-img {
    order: 2;
    width: min(320px, 80vw);
    height: auto;
  }
  .appcta .stores {
    order: 3;
    justify-content: center;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .trust .wrap {
    grid-template-columns: 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .hero .wrap {
    padding: 48px 22px 64px;
  }
  section.block {
    padding: 64px 0;
  }
}

/* ---------- SIGN-IN MODAL ---------- */
.si-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 27, 51, 0.6);
  backdrop-filter: saturate(140%) blur(6px);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
.si-overlay.open {
  visibility: visible;
  opacity: 1;
}
.si-modal {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 34px 30px 26px;
  box-shadow: 0 30px 80px -20px rgba(6, 15, 31, 0.6);
  transform: translateY(10px);
  transition: transform 0.22s ease;
}
.si-overlay.open .si-modal {
  transform: translateY(0);
}
.si-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: none;
  background: var(--mist);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.si-close:hover {
  background: #e7edf5;
}
.si-close svg {
  width: 18px;
  height: 18px;
}
.si-logo {
  width: 44px;
  height: auto;
  margin: 2px auto 14px;
  display: block;
}
.si-title {
  text-align: center;
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 6px;
}
.si-sub {
  text-align: center;
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 22px;
}
.si-seg {
  display: flex;
  gap: 5px;
  background: var(--mist);
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 22px;
}
.si-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Inter";
  font-weight: 600;
  font-size: 14.5px;
  color: var(--slate);
  transition:
    background 0.15s,
    color 0.15s;
}
.si-tab svg {
  width: 18px;
  height: 18px;
}
.si-tab[aria-selected="true"] {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.si-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.si-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.si-forgot {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
}
.si-forgot:hover {
  text-decoration: underline;
}
.si-field {
  position: relative;
  margin-bottom: 2px;
}
.si-field .si-ic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}
.si-field .si-ic svg {
  width: 17px;
  height: 17px;
  stroke: var(--slate);
}
.si-field input {
  width: 100%;
  font-family: "Inter";
  font-size: 15px;
  color: var(--ink);
  background: var(--mist);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 13px 46px 13px 42px;
  transition:
    border 0.15s,
    background 0.15s;
}
.si-field input:focus {
  background: #fff;
  border-color: var(--teal);
  outline: none;
}
.si-eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  border-radius: 8px;
}
.si-eye:hover {
  background: #e7edf5;
}
.si-eye svg {
  width: 18px;
  height: 18px;
}
.si-status {
  font-size: 13px;
  color: var(--navy);
  background: rgba(43, 163, 154, 0.1);
  border: 1px solid rgba(43, 163, 154, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 14px 0 0;
  text-align: center;
}
.si-status[hidden] {
  display: none;
}
.si-submit {
  width: 100%;
  justify-content: center;
  display: flex;
  margin-top: 18px;
  padding: 14px;
  font-size: 15.5px;
}
.si-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  color: var(--slate);
  font-size: 12.5px;
}
.si-divider::before,
.si-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.si-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.si-soc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Inter";
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  transition:
    background 0.15s,
    border-color 0.15s;
}
.si-soc:hover {
  background: var(--mist);
  border-color: #cdd8e8;
}
.si-soc svg {
  width: 19px;
  height: 19px;
  flex: none;
}
.si-customer-only[hidden] {
  display: none;
}
.si-foot {
  text-align: center;
  font-size: 13.5px;
  color: var(--slate);
  margin-top: 20px;
}
.si-foot a {
  color: var(--teal-deep);
  font-weight: 600;
}
.si-foot a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .si-modal {
    padding: 30px 22px 24px;
  }
}

/* sign-in: method toggle + role color theming */
.si-method {
  display: flex;
  gap: 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.si-mtab {
  border: none;
  background: transparent;
  padding: 6px 2px 11px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.si-mtab[aria-selected="true"] {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.si-mode[hidden] {
  display: none;
}
.si-hint {
  font-size: 12.5px;
  color: var(--slate);
  margin: 9px 2px 0;
}
.si-submit {
  background: var(--gold);
  color: var(--navy);
}
.si-submit:hover {
  background: #f0c456;
}
.si-modal[data-role="customer"] .si-tab[aria-selected="true"] {
  background: var(--gold);
  color: var(--navy);
}
.si-modal[data-role="driver"] .si-tab[aria-selected="true"] {
  background: var(--teal);
  color: var(--navy);
}
.si-modal[data-role="driver"] .si-submit {
  background: var(--teal);
  color: var(--navy);
}
.si-modal[data-role="driver"] .si-submit:hover {
  background: #34b3a9;
}
.si-cust-only[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===== NAV DROPDOWNS ===== */
.nav-links {
  gap: 6px;
}
.hasmenu {
  position: relative;
}
.navbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter";
  font-weight: 500;
  font-size: 15px;
  color: var(--slate);
  padding: 8px 6px;
}
.navbtn:hover {
  color: var(--navy);
}
.navbtn svg {
  width: 13px;
  height: 13px;
  transition: transform 0.15s;
}
.hasmenu.open .navbtn {
  color: var(--navy);
}
.hasmenu.open .navbtn svg {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 252px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
  z-index: 60;
}
.hasmenu.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
}
.dropdown a:hover {
  background: var(--mist);
  color: var(--navy);
}
@media (hover: hover) and (min-width: 681px) {
  .hasmenu:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .hasmenu:hover .navbtn svg {
    transform: rotate(180deg);
  }
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 8px 0 22px;
}
.mobile-menu.open {
  display: block;
}
.mm-group {
  padding: 6px 24px;
}
.mm-group h4 {
  font-family: "Space Grotesk";
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 12px 0 6px;
}
.mm-group a {
  display: block;
  padding: 9px 0;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--navy);
}
.mm-cta {
  display: flex;
  gap: 12px;
  padding: 16px 24px 0;
}
.mm-cta .btn {
  flex: 1;
  justify-content: center;
  display: flex;
}
@media (min-width: 681px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== GENERIC PAGE / PROSE ===== */
.page-hero {
  background: radial-gradient(
    120% 90% at 82% -20%,
    #14365f 0%,
    var(--navy) 50%,
    var(--navy-deep) 100%
  );
  color: #fff;
  padding: 60px 0 54px;
}
.page-hero h1 {
  font-size: clamp(31px, 4.4vw, 46px);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero h1 .hl {
  color: var(--gold);
}
.page-hero p {
  font-size: clamp(16px, 1.6vw, 18px);
  color: #cdd8e8;
  max-width: 640px;
}
.section {
  padding: 60px 0;
}
.prose {
  max-width: 780px;
}
.prose h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--navy);
  margin: 34px 0 12px;
}
.prose h3 {
  font-size: 18px;
  color: var(--navy);
  margin: 22px 0 8px;
}
.prose p {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 14px;
  line-height: 1.7;
}
.prose ul {
  margin: 0 0 16px 22px;
  color: var(--slate);
}
.prose li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 820px) {
  .cards3 {
    grid-template-columns: 1fr;
  }
}
.infocard {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.infocard h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.infocard p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
}
.tagpill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 9px;
  border-radius: 7px;
  margin-bottom: 12px;
}

/* ===== PARTNER PAGES ===== */
.partner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding: 60px 0;
}
@media (max-width: 880px) {
  .partner-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
.promo .kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.promo h2 {
  font-size: clamp(25px, 3.1vw, 34px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.promo p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 15px;
}
.promo .plist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.promo .plist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--navy);
}
.promo .plist svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 1px;
}

/* ===== FORMS ===== */
.form-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 30px 28px;
  position: sticky;
  top: 92px;
}
@media (max-width: 880px) {
  .form-card {
    position: static;
  }
}
.form-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .fc-sub {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 22px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 420px) {
  .frow {
    grid-template-columns: 1fr;
  }
}
.fgroup {
  margin-bottom: 16px;
}
.fgroup label.flab {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.req {
  color: #c0392b;
  font-weight: 700;
}
.finput,
.fselect {
  width: 100%;
  font-family: "Inter";
  font-size: 15px;
  color: var(--ink);
  background: var(--mist);
  border: 1.5px solid transparent;
  border-radius: 11px;
  padding: 13px 14px;
  transition:
    border 0.15s,
    background 0.15s;
}
.fselect {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2348586F' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.finput:focus,
.fselect:focus {
  background: #fff;
  border-color: var(--teal);
  outline: none;
}
.finput.err,
.fselect.err {
  border-color: #c0392b;
  background: #fdf3f2;
}
.ferr {
  display: none;
  color: #c0392b;
  font-size: 12.5px;
  margin-top: 6px;
}
.ferr.show {
  display: block;
}
.choice {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}
.choice label {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}
.choice label:hover {
  background: var(--mist);
}
.choice input {
  accent-color: var(--teal);
  width: 17px;
  height: 17px;
  flex: none;
  margin: 0;
}
.form-submit {
  width: 100%;
  justify-content: center;
  display: flex;
  margin-top: 10px;
  padding: 14px;
  font-size: 15.5px;
  background: var(--gold);
  color: var(--navy);
}
.form-submit:hover {
  background: #f0c456;
}
.form-note {
  font-size: 12px;
  color: var(--slate);
  text-align: center;
  margin-top: 14px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 26px 10px;
}
.form-success.show {
  display: block;
}
.form-success .ck {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(43, 163, 154, 0.12);
  border: 1px solid rgba(43, 163, 154, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success .ck svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal-deep);
}
.form-success h3 {
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14.5px;
  color: var(--slate);
  max-width: 340px;
  margin: 0 auto;
}

/* ===== LEGAL ===== */
.legal {
  max-width: 860px;
}
.legal h1 {
  font-size: 21px;
  color: var(--navy);
  margin: 30px 0 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: "Space Grotesk";
}
.legal > h1:first-child {
  border-top: none;
  padding-top: 0;
  font-size: 28px;
  margin-top: 0;
}
.legal h2 {
  font-size: 17.5px;
  color: var(--navy);
  margin: 20px 0 8px;
  font-family: "Space Grotesk";
}
.legal h3 {
  font-size: 15.5px;
  color: var(--navy);
  margin: 16px 0 6px;
}
.legal p,
.legal li {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
}
.legal p {
  margin-bottom: 12px;
}
.legal ul {
  margin: 0 0 14px 22px;
}
.legal li {
  margin-bottom: 6px;
}
.legal strong {
  color: var(--navy);
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 13.5px;
  display: block;
  overflow-x: auto;
}
.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 9px 12px;
  text-align: left;
  color: var(--slate);
  vertical-align: top;
}
.legal th {
  background: var(--mist);
  color: var(--navy);
  font-weight: 600;
}
.legal a {
  color: var(--teal-deep);
  text-decoration: underline;
}

/* ===== 10K REGISTRATION ===== */
.evmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.evchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.evchip svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}
.reg-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  padding: 50px 0;
}
@media (max-width: 960px) {
  .reg-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.reg-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
}
@media (min-width: 560px) {
  .reg-social {
    flex-direction: row;
  }
  .reg-social .si-soc {
    flex: 1;
  }
}
.reg-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--slate);
  font-size: 12.5px;
}
.reg-or::before,
.reg-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.reg-banner {
  display: none;
  align-items: flex-start;
  gap: 11px;
  background: rgba(43, 163, 154, 0.1);
  border: 1px solid rgba(43, 163, 154, 0.32);
  border-radius: 12px;
  padding: 13px 15px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--navy);
}
.reg-banner.show {
  display: flex;
}
.reg-banner svg {
  width: 19px;
  height: 19px;
  stroke: var(--teal-deep);
  flex: none;
  margin-top: 1px;
}
.rfs {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 8px;
  margin-bottom: 20px;
}
.rlegend {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  padding: 0 4px;
  margin-bottom: 14px;
  width: 100%;
}
.rlegend .num {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex: none;
}
.rlegend .opt {
  margin-left: auto;
  font-family: "Inter";
  font-weight: 500;
  font-size: 11.5px;
  color: var(--slate);
  background: var(--mist);
  padding: 3px 10px;
  border-radius: 999px;
}
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.consent:last-of-type {
  border-bottom: none;
}
.consent input {
  accent-color: var(--teal);
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
}
.consent .ctxt {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}
.consent .ferr {
  margin-top: 4px;
}
.consent a {
  color: var(--teal-deep);
  text-decoration: underline;
}
details.waiver {
  margin: 2px 0 6px;
}
details.waiver > summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
}
.waiver-box {
  font-size: 12.5px;
  color: var(--slate);
  background: var(--mist);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 8px;
  line-height: 1.6;
}
#guardianFs {
  display: none;
}
#guardianFs.show {
  display: block;
}
.textarea {
  width: 100%;
  font-family: "Inter";
  font-size: 15px;
  color: var(--ink);
  background: var(--mist);
  border: 1.5px solid transparent;
  border-radius: 11px;
  padding: 12px 14px;
  min-height: 78px;
  resize: vertical;
}
.textarea:focus {
  background: #fff;
  border-color: var(--teal);
  outline: none;
}
.fee-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  position: sticky;
  top: 92px;
}
@media (max-width: 960px) {
  .fee-card {
    position: static;
  }
}
.fee-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 3px;
}
.fee-card .fee-ev {
  font-size: 12.5px;
  color: var(--slate);
  margin-bottom: 16px;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  color: var(--slate);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.fee-row b {
  color: var(--navy);
}
.fee-addon {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--navy);
}
.fee-addon input {
  accent-color: var(--teal);
  width: 17px;
  height: 17px;
  flex: none;
}
.fee-addon .px {
  margin-left: auto;
  font-weight: 600;
  color: var(--navy);
}
.donation-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.donation-row .cur {
  margin-left: auto;
  color: var(--slate);
}
.donation-row input {
  width: 84px;
  font-family: "Inter";
  font-size: 14px;
  background: var(--mist);
  border: 1.5px solid transparent;
  border-radius: 9px;
  padding: 8px 10px;
}
.donation-row input:focus {
  background: #fff;
  border-color: var(--teal);
  outline: none;
}
.fee-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
}
.fee-total span:last-child {
  color: var(--teal-deep);
}
.fee-note {
  font-size: 11.5px;
  color: var(--slate);
  margin-top: 12px;
  text-align: center;
}
.reg-success {
  display: none;
  text-align: center;
  max-width: 580px;
  margin: 40px auto;
  padding: 38px 26px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.reg-success.show {
  display: block;
}
.reg-success .ck {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(43, 163, 154, 0.12);
  border: 1px solid rgba(43, 163, 154, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.reg-success .ck svg {
  width: 30px;
  height: 30px;
  stroke: var(--teal-deep);
}
.reg-success h2 {
  font-size: 25px;
  color: var(--navy);
  margin-bottom: 6px;
}
.reg-success .conf {
  display: inline-block;
  font-family: "Space Grotesk";
  font-weight: 700;
  color: var(--navy);
  background: var(--mist);
  border-radius: 10px;
  padding: 9px 17px;
  margin: 10px 0 14px;
  letter-spacing: 0.06em;
}
.reg-success p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 8px;
}
.reg-success .nexts {
  text-align: left;
  max-width: 400px;
  margin: 20px auto 0;
  padding-left: 20px;
  font-size: 14px;
  color: var(--slate);
}
.reg-success .nexts li {
  margin-bottom: 8px;
}


/* ── Booking popup backdrop ────────────────────────────── */
.backdrop{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.4);display:flex;justify-content:center;align-items:center;z-index:1000;}
.popup-card{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);aspect-ratio:9/4.5;border-radius:10px;padding:10px;background-color:#fff;box-shadow:0 3px 10px rgb(0 0 0/.1);text-align:center;display:flex;flex-direction:row;align-items:center;}
.container-popup-message{flex-basis:62%;}
.container-popup-images{text-align:center;margin:20px auto;width:50%;height:100%;flex-basis:60%;}
.container-popup-images img[alt=close]{float:right;}
.cls-img-coder{display:block;max-width:100%;}
.coming-soon-frame-left{letter-spacing:0%;text-align:center;font-family:"Open Sans",sans-serif;font-weight:700;}
.coming-soon-thank-you{font-size:calc(20px + 0.6vw);line-height:normal;}
.coming-soon-working-message{font-family:"Open Sans",sans-serif;font-weight:400;font-size:calc(10px + 0.6vw);line-height:126%;letter-spacing:0%;text-align:center;padding:8%;}
.coming-soon-stay-tuned{font-family:"Open Sans",sans-serif;font-weight:700;font-size:calc(12px + 0.6vw);line-height:100%;letter-spacing:0%;text-align:center;}
.popup-card-app{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:60%;height:70%;border-radius:10px;padding:20px;background-color:#fff;box-shadow:0 3px 10px rgb(0 0 0/.1);text-align:center;display:flex;flex-direction:column;align-items:center;}
.app-container-popup-message{margin:0;padding:0;height:60%;width:100%;}
.app-container-popup-images{margin:0;padding:0;height:51%;width:100%;}
.app-container-popup-images img[alt=logo]{width:90%;height:90%;}
.app-container-popup-images img[alt=close]{float:right;}
