:root {
  --blue: #2E3192;
  --blue-deep: #141852;
  --purple: #662D91;
  --purple-glow: #9d4edd;
  --grad: linear-gradient(135deg, #2E3192 0%, #662D91 55%, #7b3fa8 100%);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(12, 14, 42, 0.55);
  --text: #f4f6ff;
  --text-muted: rgba(244, 246, 255, 0.68);
  --ink: #0e1030;
  --radius: 20px;
  --radius-sm: 12px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Instrument Sans", "DM Sans", system-ui, sans-serif;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Instrument Sans', sans-serif;
}


body {
  font-family: var(--font);
  color: var(--text);
  background: var(--blue-deep);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Ambient background ── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(46, 49, 146, 0.5), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(102, 45, 145, 0.45), transparent 50%),
    linear-gradient(165deg, #0a0c28 0%, #12164a 40%, #1a1040 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite alternate;
}

.orb-a { width: 420px; height: 420px; background: #2E3192; top: -8%; left: -5%; }
.orb-b { width: 360px; height: 360px; background: #662D91; bottom: -10%; right: -5%; animation-delay: -6s; }
.orb-c { width: 200px; height: 200px; background: #4cc9f0; top: 40%; left: 45%; opacity: 0.15; animation-delay: -12s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, -18px) scale(1.06); }
}

/* ── App shell — one screen ── */
.app {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 18px 12px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-inset {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

/* ── Topbar ── */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
}


.brand {
  min-width: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  flex-shrink: 0;
  width: 34px;
  height: 40px;
  display: flex;
  align-items: center;
}

.brand-icon svg {
    width: 48px;
    height: auto;
}


.brand-name {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.brand-dot {
  color: #e9d5ff;
  font-weight: 600;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-photo {
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 5;
  margin: 0 auto;
  display: block;
}

.hero-photo.is-ready {
  opacity: 1;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-img-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}


.nav-tabs {
  display: flex;
  gap: 2px;
  justify-content: center;
  padding: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-tabs::-webkit-scrollbar { display: none; }

.nav-tab {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-tab:hover { color: var(--text); }

.nav-tab.active {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 4px 16px rgba(102, 45, 145, 0.45);
}

.top-phone {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
}

.top-phone:hover { color: #c4b5fd; }

.top-phone-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.top-phone-num { font-weight: 700; font-size: 0.95rem; }

/* ── Stage / panels ── */
.stage {
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  height: 100%;
}

/* ── Book split layout ── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 14px;
  height: 100%;
}

.pitch, .book {
  border-radius: var(--radius);
  padding: 28px 30px;
  min-height: 0;
}

.pitch {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.9);
  margin-bottom: 14px;
}

.pitch h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 12px;
}

.pitch h1 .grad {
  background: linear-gradient(90deg, #a5b4fc, #e879f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 34ch;
  margin-bottom: 18px;
  line-height: 1.55;
}

.trust-row {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.trust-row li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.motto {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  border-left: 2px solid var(--purple-glow);
  padding-left: 14px;
  margin-bottom: 20px;
}

.mini-cards {
  display: flex;
  gap: 10px;
}

.mini-card {
  padding: 12px 16px;
  flex: 1;
}

.mini-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.mini-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Booking form ── */
.book {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
}

.book-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.book-head h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.book-head p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.step-dots {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.dot.active {
  background: #e879f9;
  box-shadow: 0 0 12px rgba(232, 121, 249, 0.6);
  transform: scale(1.15);
}

.dot.done { background: #6ee7b7; }

#ride-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.form-step {
  display: none;
  flex: 1;
  flex-direction: column;
}

.form-step.active { display: flex; }

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.85);
  margin-bottom: 14px;
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full { grid-column: 1 / -1; }

.field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.field span em { font-weight: 400; color: var(--text-muted); font-style: normal; }

.field input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 32, 0.45);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder { color: rgba(255, 255, 255, 0.28); }

.field input:focus {
  outline: none;
  border-color: rgba(232, 121, 249, 0.55);
  box-shadow: 0 0 0 3px rgba(102, 45, 145, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 28px rgba(102, 45, 145, 0.5);
  margin-top: auto;
}

.btn-primary:hover { box-shadow: 0 12px 36px rgba(102, 45, 145, 0.6); }

.btn-ghost {
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }

.step-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.step-actions .btn-primary { flex: 1; margin-top: 0; }
.step-actions .btn-ghost { padding: 12px 18px; }

.fine {
  margin-top: 10px;
  font-size: 0.68rem;
  text-align: center;
  color: var(--text-muted);
}

.hp { position: absolute; left: -9999px; opacity: 0; }

.form-status {
  display: none;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(110, 231, 183, 0.35);
  color: #a7f3d0;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(252, 165, 165, 0.3);
  color: #fecaca;
}

/* ── Info panels (About / Services / Contact) ── */
.info-panel {
  height: 100%;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

#panel-services .info-panel {
  justify-content: space-between;
}

#panel-services .service-tiles {
  flex: 0 0 auto;
}

#panel-services .panel-cta {
  margin-top: auto;
  padding-top: 12px;
}

.info-panel h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  flex: 1;
}

.info-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.info-aside {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.info-aside h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(196, 181, 253, 0.9);
  margin-bottom: 10px;
}

.info-aside .quote {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  flex: 1;
  margin-bottom: 16px;
}

.check-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0 6px 22px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6ee7b7;
  font-weight: 700;
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
  align-content: start;
}

.tile {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-self: start;
  height: auto;
}

.tile-icon {
  font-size: 0.65rem;
  color: #e879f9;
  margin-bottom: 10px;
}

.tile h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.tile p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex: 1;
  margin-bottom: 20px;
}

.contact-card {
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

a.contact-card:hover {
  border-color: rgba(232, 121, 249, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.c-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.c-value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ── Footer ── */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.foot-muted { opacity: 0.7; }

/* ── Mobile: allow minimal scroll only if needed ── */
@media (max-width: 960px) {
  html, body { overflow: auto; height: auto; min-height: 100%; }

  .app {
    min-height: 100dvh;
    height: auto;
    padding: 10px;
  }

  .topbar { flex-wrap: wrap; padding: 12px; }
  .nav-tabs { order: 3; width: 100%; max-width: none; margin-top: 4px; }
  .brand-name { font-size: 1rem; }
  .brand-icon { width: 30px; height: 36px; }

  .panel.active { position: relative; height: auto; min-height: 60vh; }

  .split {
    grid-template-columns: 1fr;
    height: auto;
  }

  .pitch { padding: 20px; order: 2; }
  .book { padding: 20px; order: 1; }

  .info-grid, .service-tiles, .contact-grid {
    grid-template-columns: 1fr;
  }

  .fields { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .top-phone-label { display: none; }
  .mini-cards { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════
   FIRE VERSION — Home, trust, contact map, animations
   ═══════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes kenBurns {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.animate-in {
  animation: fadeUp 0.55s ease forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }

.panel.active .animate-in { opacity: 1; }

.hover-lift {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 121, 249, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Home grid */
.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 14px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.hero-visual {
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

/* hero-img-wrap / hero-photo / hero-fallback — defined above with .brand */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat {
  padding: 10px 12px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 0.95rem;
  color: #e879f9;
}

.stat span {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-copy-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 2px;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.hero-copy-block h1 {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.65vw, 1.5rem);
  line-height: 1.18;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 0.88rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 4px;
  line-height: 1.35;
}

.hero-tags {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.btn-lg {
  padding: 12px 20px;
  font-size: 0.88rem;
}

.testimonial-strip {
  padding: 10px 12px;
  margin-top: auto;
  flex-shrink: 0;
}

.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.t-dots { display: flex; gap: 6px; }

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.t-dot.active {
  background: #e879f9;
  transform: scale(1.2);
}

.testimonial p {
  font-size: 0.88rem;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial footer {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: normal;
}

/* Panel heads */
.panel-head { margin-bottom: 18px; }

.panel-head h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.panel-head p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.panel-cta { margin-top: 16px; align-self: flex-start; }

.check-list.compact { margin: 14px 0; }

.check-list.compact li { padding: 4px 0 4px 22px; font-size: 0.85rem; }

/* Services icons */
.svg-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(102, 45, 145, 0.25);
  color: #e879f9;
  margin-bottom: 10px;
}

.svg-icon svg { width: 100%; height: 100%; }

.link-more {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c4b5fd;
  text-align: left;
  padding: 0;
}

.link-more:hover { color: #e879f9; text-decoration: underline; }

.expand-body {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.expand-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.expand-body:not([hidden]) {
  animation: fadeUp 0.3s ease;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  flex: 1;
  min-height: 0;
}

.quote-block {
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  border-left: 2px solid #e879f9;
  padding-left: 14px;
  margin: 14px 0;
  font-size: 0.92rem;
}

.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.trust-badges li {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  color: #a7f3d0;
}

.team-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.team-cards { display: flex; flex-direction: column; gap: 8px; }

.team-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.team-card strong {
  display: block;
  font-size: 0.85rem;
}

.team-card span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Contact split + map */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 100%;
}

.contact-info { padding: 24px 28px; }

.contact-grid.compact {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 12px;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  height: 120px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.map-caption {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.social-row {
  display: flex;
  gap: 8px;
}

.social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}

.social:hover {
  color: #e879f9;
  text-decoration: none;
}

.quick-contact {
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}

.quick-contact h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.quick-contact > p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Footer upgrade */
.foot {
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 12px 18px;
}

.foot-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.foot-link {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0;
  transition: color 0.15s;
}

.foot-link:hover { color: #e879f9; }

.foot-disclaimer {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 420px;
  text-align: right;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .about-grid,
  .contact-split {
    grid-template-columns: 1fr;
    height: auto;
  }

  .foot-disclaimer { text-align: left; max-width: none; }

  .nav-tab { font-size: 0.72rem; padding: 8px 6px; }
}

@media (max-width: 960px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ═══ Grok polish pass — glow, progress, a11y ═══ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  background: #fff;
  color: var(--blue-deep);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid #c084fc;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.btn-glow {
  font-size: 1.02rem;
  padding: 16px 28px;
  animation: pulseGlow 2.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(192, 132, 252, 0.45), 0 0 0 0 rgba(192, 132, 252, 0.35);
  }
  50% {
    box-shadow: 0 14px 44px rgba(192, 132, 252, 0.65), 0 0 24px 6px rgba(192, 132, 252, 0.22);
  }
}

.btn-continue {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  min-height: 48px;
}

.btn-continue:hover {
  box-shadow: 0 12px 36px rgba(102, 45, 145, 0.65);
}

.progress-wrap {
  margin-bottom: 16px;
}

.progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--grad);
  border-radius: 999px;
  transition: width 0.4s ease;
  box-shadow: 0 0 12px rgba(232, 121, 249, 0.5);
}

.progress-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.icon-medical { color: #f472b6; background: rgba(244, 114, 182, 0.15); }
.icon-errands { color: #60a5fa; background: rgba(96, 165, 250, 0.15); }
.icon-wheelchair { color: #a78bfa; background: rgba(167, 139, 250, 0.15); }

.btn-learn {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e9d5ff;
  background: rgba(102, 45, 145, 0.35);
  border: 1px solid rgba(232, 121, 249, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-learn:hover {
  background: rgba(102, 45, 145, 0.55);
  box-shadow: 0 4px 16px rgba(102, 45, 145, 0.4);
  transform: translateY(-1px);
}

.hero-img-shade {
  display: none;
}


.map-link {
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.map-link:hover .map-caption {
  color: #e879f9;
}

.map-wrap { cursor: pointer; }

.foot {
  align-items: flex-start;
}

.foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.foot-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.foot-trust span {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.12);
  color: #a7f3d0;
  border: 1px solid rgba(110, 231, 183, 0.25);
}

.foot-social {
  display: flex;
  gap: 8px;
}

.foot-social-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.foot-social-btn:hover {
  color: #e879f9;
  border-color: rgba(232, 121, 249, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.form-step.is-loading .btn-send span::after {
  content: " …";
}

@media (max-width: 960px) {
  .foot-right { align-items: flex-start; }
  .foot { flex-direction: column; }
}
.hero {
    padding-top: 6rem; /* pushes hero below header */
    text-align: center;
}
/* Mobile layout fixes */
@media (max-width: 600px) {
    .topbar {
        padding: 0.75rem 1rem;
    }

    .brand-icon svg {
        width: 36px;
    }

    .hero {
        padding-top: 4rem;
    }
}
/* Header layout fix */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
}

/* Logo container */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Logo icon size */
.brand-icon svg {
    width: 48px;
    height: auto;
}

/* Brand text */
.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}
/* Fix hero spacing so it doesn't overlap header */
.hero {
    padding-top: 6rem;
    text-align: center;
}
/* ============================
   GoKNB Header + Logo Fix
   ============================ */

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
}

/* Logo + Name container */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Logo size control */
.brand-icon svg {
    width: 48px;
    height: auto;
}

/* GoKNB text next to logo */
.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

/* ============================
   Hero Section Fix
   ============================ */

.hero {
    padding-top: 6rem;
    text-align: center;
}

/* ============================
   Mobile Fixes
   ============================ */

@media (max-width: 600px) {
   /* Fix logo overlap and header stacking */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
    background: transparent;
}

/* Logo container */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative; /* prevents floating */
}

/* Logo image or SVG */
.brand-icon img,
.brand-icon svg {
    width: 48px;
    height: auto;
    max-width: 100%;
}
/* ============================
   GoKNB — Header + Logo + Hero
   ============================ */

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon svg {
    width: 48px;
    height: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.hero {
    padding-top: 6rem;   /* pushes hero below header */
    text-align: center;
}

/* ============================
   Mobile Fixes
   ============================ */

@media (max-width: 600px) {
    .topbar {
        padding: 0.75rem 1rem;
    }

    .brand-icon svg {
        width: 36px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .hero {
        padding-top: 4rem;
    }
}
