/* ============================================================
   TransiHub Web — style.css
   ============================================================ */

/* ── Reset & Variables ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #00c853;
  --green-light: #4de882;
  --green-dark:  #00a844;
  --green-bg:    #e8fff2;
  --amber:       #d97706;
  --amber-light: #f59e0b;
  --amber-bg:    #fffbeb;
  --navy:        #0f172a;
  --navy-mid:    #1e293b;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --danger:      #dc2626;
  --danger-bg:   #fef2f2;
  --r-sm:        8px;
  --r:           14px;
  --r-lg:        20px;
  --r-xl:        28px;
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 28px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.16);
  --ease:        0.22s cubic-bezier(.4,0,.2,1);
}



/* ── Autofill override — stops Chrome forcing a white background on dark inputs ── */
.lp-field input:-webkit-autofill,
.lp-field input:-webkit-autofill:hover,
.lp-field input:-webkit-autofill:focus,
.lp-field select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #091a10 inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}














html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Pages ──────────────────────────────────────────────────── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--r);
  font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap; letter-spacing: -.01em;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-primary  { background: var(--green); color: #fff; }
.btn-primary:hover:not(:disabled)  { background: var(--green-dark); transform: translateY(-1px); }
.btn-amber    { background: var(--amber); color: #fff; }
.btn-amber:hover:not(:disabled)    { background: #b45309; transform: translateY(-1px); }
.btn-outline  { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline:hover:not(:disabled)  { background: rgba(255,255,255,.12); }
.btn-ghost    { background: var(--gray-100); border-color: var(--gray-200); color: var(--gray-700); }
.btn-ghost:hover:not(:disabled)    { background: var(--gray-200); }
.btn-danger   { background: var(--danger); color: #fff; }
.btn-lg  { padding: 1rem 2rem; font-size: 1.1rem; border-radius: var(--r-lg); }
.btn-sm  { padding: .45rem .9rem; font-size: .85rem; }
.btn-full { width: 100%; }

/* ── Forms ───────────────────────────────────────────────────── */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .875rem; color: var(--gray-700); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--r);
  font-size: 1rem; color: var(--gray-900); background: #fff;
  outline: none;
  transition: border-color var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
.field-row { display: flex; gap: .75rem; }
.field-row .field { flex: 1; }
.input-with-btn { display: flex; gap: .5rem; align-items: flex-end; }
.input-with-btn .field { flex: 1; }
.input-group { display: flex; gap: .5rem; }
.input-group input { flex: 1; }

.error-box {
  background: var(--danger-bg); border: 1px solid #fecaca;
  color: var(--danger); border-radius: var(--r-sm);
  padding: .75rem 1rem; font-size: .875rem; margin-bottom: 1rem;
}
.error-box.hidden { display: none; }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem;
  transition: background var(--ease), backdrop-filter var(--ease);
}
.nav.scrolled {
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo { font-size: 1.55rem; font-weight: 900; color: #fff; letter-spacing: -.05em; }
.logo span { color: var(--green-light); }

/* ── Landing Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #0f172a 0%, #0d2a1a 45%, #0f172a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 1.5rem 5rem;
  position: relative; overflow: hidden; text-align: center;
}

/* Subtle animated grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(22,163,74,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { to { background-position: 0 60px; } }

/* Glowing orb */
.hero::after {
  content: '';
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.35);
  color: var(--green-light); padding: .4rem 1.1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700; letter-spacing: .02em;
  margin-bottom: 1.75rem;
}
.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.8); } }

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  color: #fff; letter-spacing: -.04em;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--green-light); font-style: normal; }

.hero p {
  font-size: 1.2rem; color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto;
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Stats row */
.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center;
  margin-top: 4rem; position: relative; z-index: 1;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -.05em; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 500; margin-top: .1rem; }

/* ── Features Section ────────────────────────────────────────── */
.features {
  background: #fff; padding: 6rem 1.5rem;
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: var(--green-bg);
  color: var(--green); padding: .35rem .9rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: .75rem; }
.section-sub { color: var(--gray-500); line-height: 1.7; max-width: 520px; }

.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 3.5rem;
}
.feature-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 2rem;
  transition: all var(--ease);
}
.feature-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  background: var(--green-bg);
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { color: var(--gray-500); font-size: .925rem; line-height: 1.65; }

/* ── How It Works ────────────────────────────────────────────── */
.how-it-works {
  background: var(--navy);
  padding: 6rem 1.5rem;
  color: #fff;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-it-works .section-tag { background: rgba(22,163,74,.15); }
.how-it-works .section-title { color: #fff; }
.how-it-works .section-sub { color: rgba(255,255,255,.55); }

.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.step-item { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(22,163,74,.2); border: 2px solid rgba(22,163,74,.4);
  color: var(--green-light); font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.step-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.step-item p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.6; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy-mid); color: rgba(255,255,255,.5);
  padding: 2.5rem 1.5rem; text-align: center; font-size: .875rem;
}
.footer a { color: var(--green-light); text-decoration: none; }
.footer-grid { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-grid span { display: flex; align-items: center; gap: .4rem; }

/* ── Login Modal ─────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal.hidden { display: none; }
.modal-bg {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.85); backdrop-filter: blur(6px);
}
.modal-box {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--r-xl);
  padding: 2.5rem; width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
  animation: slideUp .3s var(--ease);
  color: #0f172a; /* force dark text regardless of page theme inheritance */
}
@keyframes slideUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.modal-close-btn {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--gray-100); border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1.2rem; color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.modal-close-btn:hover { background: var(--gray-200); }
.modal-box h2 { font-size: 1.9rem; font-weight: 900; letter-spacing: -.04em; margin-bottom: .4rem; color: #0f172a; }
.modal-sub { color: #64748b; font-size: .9rem; margin-bottom: 1.75rem; }
.modal-box .field label { color: #334155; }
.modal-box .field input, .modal-box .field select {
  color: #0f172a; background: #fff;
  border-color: #e2e8f0;
}
.modal-box .field input:focus, .modal-box .field select:focus {
  color: #0f172a; background: #fff;
  border-color: var(--green);
}
.modal-box .field input::placeholder { color: #94a3b8; }

/* ── Register modal steps ────────────────────────────────────── */
.reg-step { display: none; }
.reg-step.active { display: block; }

.reg-step-badge {
  display: inline-block;
  background: var(--green-bg); color: var(--green-dark);
  padding: .28rem .8rem; border-radius: 999px;
  font-size: .75rem; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 1rem;
}

.modal-switch {
  text-align: center; margin-top: 1.25rem;
  font-size: .875rem; color: #64748b;
}
.modal-switch a { color: var(--green-dark); font-weight: 700; text-decoration: none; }
.modal-switch a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   APP SHELL — dark green, vibrant, premium
   ══════════════════════════════════════════════════════════════ */

#page-app {
  background: #0b1f14;
  min-height: 100vh;
  color: #fff;
}

/* ── App Header ──────────────────────────────────────────────── */
.app-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9,26,16,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,200,83,.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.app-logo { font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -.04em; }
.app-logo span { color: var(--green); }
.app-header-right { display: flex; align-items: center; gap: .75rem; }
.app-user-name { font-weight: 700; font-size: .95rem; color: rgba(255,255,255,.8); }
/* Override logout btn for dark bg */
#app-logout {
  background: rgba(0,200,83,.12); border: 1px solid rgba(0,200,83,.25);
  color: var(--green-light); border-radius: var(--r-sm);
}
#app-logout:hover { background: rgba(0,200,83,.22); }

/* ── Views ───────────────────────────────────────────────────── */
.view { display: none; }
.view.active { display: block; }
.view-body { max-width: 640px; margin: 0 auto; padding: 1.5rem; }

.view-top {
  display: flex; align-items: center; gap: .875rem; margin-bottom: 1.75rem;
}
.view-top h2 { font-size: 1.75rem; font-weight: 900; letter-spacing: -.04em; color: #fff; }
.back-btn {
  background: rgba(0,200,83,.1); border: 1px solid rgba(0,200,83,.2);
  color: var(--green-light); border-radius: var(--r-sm);
  padding: .55rem .875rem; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: all var(--ease); flex-shrink: 0; font-family: inherit;
}
.back-btn:hover { background: rgba(0,200,83,.2); }

/* ── Home View ───────────────────────────────────────────────── */
.welcome-card {
  background: linear-gradient(135deg, #0f2b1c 0%, #163d24 50%, #0b1f14 100%);
  border: 1px solid rgba(0,200,83,.2);
  border-radius: var(--r-xl); padding: 2.25rem 2rem;
  margin-bottom: 1.5rem; color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
/* Background grid pattern */
.welcome-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,83,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,83,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.welcome-card::after {
  content: '🚖';
  position: absolute; right: 1.5rem; bottom: .5rem;
  font-size: 7rem; opacity: .08; transform: rotate(-10deg);
  pointer-events: none;
}
.welcome-card h2 {
  font-size: 2rem; font-weight: 900; letter-spacing: -.04em;
  margin-bottom: .4rem; position: relative;
}
.welcome-card h2 span { color: var(--green-light); }
.welcome-card p { color: rgba(255,255,255,.55); font-size: 1rem; position: relative; }

/* Action grid — full-color gradient cards */
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.action-card {
  border: none; border-radius: var(--r-lg); padding: 2rem 1.5rem;
  cursor: pointer; transition: all var(--ease);
  display: flex; flex-direction: column; align-items: flex-start; gap: .5rem;
  font-family: inherit; position: relative; overflow: hidden;
  min-height: 160px;
}
.action-card::after {
  content: attr(data-icon);
  position: absolute; right: -8px; bottom: -8px;
  font-size: 5.5rem; opacity: .15; line-height: 1;
  pointer-events: none;
}
.action-card.ride {
  background: linear-gradient(145deg, #00a844 0%, #007a32 100%);
  box-shadow: 0 8px 28px rgba(0,168,68,.35);
}
.action-card.ride:hover   { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,168,68,.45); }
.action-card.parcel {
  background: linear-gradient(145deg, #d97706 0%, #92400e 100%);
  box-shadow: 0 8px 28px rgba(217,119,6,.35);
}
.action-card.parcel:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(217,119,6,.45); }

.action-icon  { font-size: 2.8rem; line-height: 1; }
.action-title { font-size: 1.2rem; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.action-desc  { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.4; }

/* Quick links row */
.quick-row { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.quick-btn {
  background: #0f2b1c; border: 1px solid rgba(0,200,83,.18);
  border-radius: var(--r); padding: 1.1rem 1.25rem;
  font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.8);
  cursor: pointer; text-align: left; transition: all var(--ease);
  font-family: inherit; letter-spacing: -.01em;
}
.quick-btn:hover { background: #163d24; border-color: rgba(0,200,83,.35); color: #fff; }

/* ── Progress Steps ──────────────────────────────────────────── */
.progress-bar {
  display: flex; align-items: center; margin-bottom: 2rem; padding: 0 .25rem;
}
.pb-step { display: flex; flex-direction: column; align-items: center; gap: .35rem; flex-shrink: 0; }
.pb-dot {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 900;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.35);
  border: 2px solid rgba(255,255,255,.1);
  transition: all var(--ease);
}
.pb-step.active .pb-dot {
  background: var(--green); color: #fff; border-color: var(--green);
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(0,200,83,.2);
}
.pb-step.done .pb-dot { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.pb-label { font-size: .68rem; font-weight: 800; color: rgba(255,255,255,.3); white-space: nowrap; letter-spacing: .04em; text-transform: uppercase; }
.pb-step.active .pb-label { color: var(--green-light); }
.pb-step.done   .pb-label { color: var(--green-dark); }
.pb-line { flex: 1; height: 2px; background: rgba(255,255,255,.1); margin: 0 .2rem; margin-bottom: 1.2rem; transition: background var(--ease); }
.pb-line.done { background: var(--green-dark); }

/* ── Wizard Steps ────────────────────────────────────────────── */
.wstep { display: none; animation: wIn .28s var(--ease); }
.wstep.active { display: block; }
@keyframes wIn { from { opacity:0; transform:translateX(18px); } to { opacity:1; transform:translateX(0); } }

.wstep-title { font-size: 1.65rem; font-weight: 900; letter-spacing: -.04em; margin-bottom: .3rem; color: #fff; }
.wstep-sub   { color: rgba(255,255,255,.5); font-size: .95rem; margin-bottom: 1.5rem; }

/* Fields inside wizard — dark surface */
.field label { color: rgba(255,255,255,.65); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.field input::placeholder { color: rgba(255,255,255,.25); }
.field input:focus, .field select:focus { border-color: var(--green); background: rgba(0,200,83,.06); }
.field select option { background: #0f2b1c; color: #fff; }

/* Location confirmed chip */
.loc-confirmed {
  display: flex; align-items: flex-start; gap: .75rem;
  background: rgba(0,200,83,.1); border: 1.5px solid rgba(0,200,83,.3);
  border-radius: var(--r); padding: .875rem 1rem;
  margin-bottom: 1.25rem; font-size: .95rem; color: var(--green-light);
  animation: wIn .25s ease;
}
.loc-confirmed.hidden { display: none; }
.loc-confirmed .loc-icon { flex-shrink: 0; font-size: 1.2rem; }

/* ── Vehicle Cards ───────────────────────────────────────────── */
.vehicle-list { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.25rem; }
.vehicle-card {
  background: #0f2b1c; border: 2px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 1.25rem 1.4rem;
  cursor: pointer; display: flex; align-items: center; gap: 1.1rem;
  transition: all var(--ease);
}
.vehicle-card:hover  { border-color: var(--green); transform: translateX(4px); background: #163d24; }
.vehicle-card.picked { border-color: var(--green); background: rgba(0,200,83,.12); box-shadow: 0 0 0 1px var(--green); }
.vc-icon { font-size: 2.5rem; flex-shrink: 0; }
.vc-info { flex: 1; }
.vc-name { font-size: 1.15rem; font-weight: 900; color: #fff; }
.vc-meta { font-size: .88rem; color: rgba(255,255,255,.5); margin-top: .2rem; }
.vc-fare { font-size: 1.8rem; font-weight: 900; color: var(--green-light); flex-shrink: 0; }

/* ── Category Cards ──────────────────────────────────────────── */
.cat-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.cat-card {
  background: #0f2b1c; border: 2px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 1.1rem 1.25rem;
  cursor: pointer; display: flex; align-items: center; gap: 1rem;
  transition: all var(--ease);
}
.cat-card:hover  { border-color: var(--amber-light); background: rgba(217,119,6,.1); }
.cat-card.picked { border-color: var(--amber-light); background: rgba(217,119,6,.15); }
.cat-icon { font-size: 2rem; flex-shrink: 0; }
.cat-name { font-size: 1.05rem; font-weight: 700; color: #fff; }

/* ── Booking Summary ─────────────────────────────────────────── */
.summary-card {
  background: #0f2b1c; border: 1px solid rgba(0,200,83,.15);
  border-radius: var(--r-lg); padding: 1.25rem; margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.summary-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem; gap: 1rem;
}
.summary-row:last-child { border-bottom: none; }
.sr-label { color: rgba(255,255,255,.45); font-weight: 600; flex-shrink: 0; }
.sr-value { color: #fff; font-weight: 700; text-align: right; }
.sr-value.big { color: var(--green-light); font-size: 1.5rem; font-weight: 900; }

/* ── History Cards ───────────────────────────────────────────── */
.history-list { display: flex; flex-direction: column; gap: .875rem; }
.hist-card {
  background: #0f2b1c; border: 1px solid rgba(0,200,83,.12);
  border-radius: var(--r-lg); padding: 1.25rem;
  transition: border-color var(--ease);
}
.hist-card:hover { border-color: rgba(0,200,83,.3); }
.hist-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.hist-type { font-size: .9rem; font-weight: 800; color: rgba(255,255,255,.6); }
.hist-badge { padding: .28rem .8rem; border-radius: 999px; font-size: .78rem; font-weight: 800; }
.hist-badge.completed { background: rgba(0,200,83,.15); color: var(--green-light); border: 1px solid rgba(0,200,83,.3); }
.hist-badge.pending   { background: rgba(245,158,11,.15); color: #fcd34d; border: 1px solid rgba(245,158,11,.3); }
.hist-badge.cancelled { background: rgba(220,38,38,.15); color: #fca5a5; border: 1px solid rgba(220,38,38,.3); }
.hist-route { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 2; }
.hist-fare  { font-size: 1.2rem; font-weight: 900; color: var(--green-light); margin-top: .5rem; }

/* ── Active Ride ─────────────────────────────────────────────── */
.active-card {
  background: linear-gradient(135deg, #0b1f14, #163d24);
  border: 1px solid rgba(0,200,83,.2);
  border-radius: var(--r-xl); padding: 2rem; color: #fff; margin-bottom: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.active-status-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(0,200,83,.15); border: 1px solid rgba(0,200,83,.4);
  color: var(--green-light); padding: .35rem .9rem; border-radius: 999px;
  font-size: .82rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.active-status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); animation: pulse 2s infinite; }
.active-route { font-size: 1rem; line-height: 2; opacity: .8; }
.otp-block {
  background: rgba(0,200,83,.1); border: 1px solid rgba(0,200,83,.3);
  border-radius: var(--r); padding: 1.25rem; margin-top: 1.25rem; text-align: center;
}
.otp-label { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .6; margin-bottom: .4rem; }
.otp-code  { font-size: 3rem; font-weight: 900; color: var(--green-light); letter-spacing: .25em; }

/* ── Empty States ────────────────────────────────────────────── */
.empty { text-align: center; padding: 3.5rem 2rem; }
.empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty h3 { font-size: 1.2rem; font-weight: 800; color: rgba(255,255,255,.8); margin-bottom: .5rem; }
.empty p  { font-size: .95rem; color: rgba(255,255,255,.4); margin-bottom: 1.75rem; }

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 400; padding: .9rem 1.5rem;
  background: var(--navy); color: #fff;
  border-radius: var(--r); font-weight: 700; font-size: .9rem;
  box-shadow: var(--shadow-lg); max-width: 90vw; text-align: center;
  animation: toastIn .3s var(--ease);
}
.toast.hidden { display: none; }
.toast.ok  { background: #065f46; }
.toast.err { background: #991b1b; }
@keyframes toastIn { from { opacity:0; transform:translateX(-50%) translateY(12px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }

/* ── Loading Overlay ─────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15,23,42,.75); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem;
}
.loader.hidden { display: none; }
.spinner {
  width: 50px; height: 50px;
  border: 4px solid rgba(255,255,255,.15);
  border-top-color: var(--green-light);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader p { color: #fff; font-weight: 700; font-size: 1rem; }

/* ── Google PlaceAutocompleteElement (new API) ───────────────── */
.gmap-ac-wrap {
  width: 100%; display: block;
}
.gmap-ac-wrap gmp-place-autocomplete {
  width: 100%;
}

/* ── Custom AutocompleteSuggestion dropdown ─────────────────────────────── */
.ac-wrap {
  position: relative;
  width: 100%;
}

.ac-input {
  width: 100%;
  padding: .85rem 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.ac-input::placeholder { color: rgba(255,255,255,0.45); }
.ac-input:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.12);
}

.ac-drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #0f2b1c;
  border: 1.5px solid var(--green);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  z-index: 9999;
  overflow: hidden;
}
.ac-drop.open { display: block; }

.ac-item {
  display: flex;
  flex-direction: column;
  padding: .75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--ease);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item:active { background: rgba(0,200,83,0.15); }

.ac-main {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-sub {
  font-size: .78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Google Places Autocomplete dropdown (legacy — kept for reference) ── */
.pac-container {
  border-radius: var(--r) !important;
  border: 2px solid var(--green) !important;
  box-shadow: var(--shadow-md) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  margin-top: 4px;
  overflow: hidden;
}
.pac-item {
  padding: .75rem 1rem !important;
  font-size: .9rem !important;
  cursor: pointer;
  border-top: 1px solid var(--gray-100) !important;
  color: var(--gray-700) !important;
}
.pac-item:hover, .pac-item-selected {
  background: var(--green-bg) !important;
}
.pac-item-query { color: var(--gray-900) !important; font-weight: 600 !important; }
.pac-icon { display: none !important; }
.pac-logo { display: none !important; }

/* ── Weight Input ────────────────────────────────────────────── */
.weight-field input { font-size: 2rem; text-align: center; font-weight: 800; letter-spacing: -.05em; padding: 1.1rem; }

/* ── Divider ─────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--gray-200); margin: 1.25rem 0; }

/* Confirm booking button — vibrant green CTA */
#ride-confirm-btn, #parcel-confirm-btn {
  background: linear-gradient(135deg, #00c853, #00a844);
  color: #fff; border: none;
  font-size: 1.1rem; font-weight: 900; letter-spacing: .06em;
  border-radius: var(--r-lg); padding: 1.1rem;
  box-shadow: 0 6px 24px rgba(0,200,83,.35);
  transition: all var(--ease);
}
#ride-confirm-btn:hover, #parcel-confirm-btn:hover {
  transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,200,83,.45);
}

/* Divider on dark bg */
.divider { height: 1px; background: rgba(255,255,255,.08); margin: 1.25rem 0; }

/* ── Responsive (app) ────────────────────────────────────────── */
@media (max-width: 500px) {
  .action-grid, .quick-row { grid-template-columns: 1fr; }
  .modal-box { padding: 2rem 1.25rem; }
  .view-body { padding: 1rem; }
  .field-row { flex-direction: column; gap: 0; }
}

/* ============================================================
   LANDING PAGE — Titan Builders style (dark + gold)
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
.page#page-landing {
  --lp-bg:      #0b1f14;   /* dark forest green — matches mobile app */
  --lp-surface: #0f2b1c;   /* slightly lighter dark green for cards */
  --lp-border:  rgba(0,200,83,0.12);
  --lp-gold:    #00c853;   /* bright green accent */
  --lp-gold-dk: #00a844;
  --lp-text:    #ffffff;
  --lp-muted:   rgba(255,255,255,0.55);
  background: var(--lp-bg);
}

.lp-gold { color: var(--lp-gold); }

/* ── Nav ─────────────────────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem 2.5rem;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.lp-nav.scrolled {
  background: rgba(9,26,16,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

/* Logo */
.lp-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
/* Square logo — contain it in a fixed-height box so it never distorts */
.lp-logo-img {
  height: 54px;
  width: 54px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;   /* softens square corners — remove if logo already has it */
}

/* Desktop menu — centred in the grid middle column */
.lp-nav-menu {
  list-style: none;
  display: flex; align-items: center; justify-content: center;
  gap: .25rem;
}
.lp-nav-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 1rem; font-weight: 600; letter-spacing: .03em;
  padding: .5rem 1rem; border-radius: 4px;
  transition: color .2s, background .2s;
}
.lp-nav-link:hover { color: #fff; background: rgba(0,200,83,.12); }
.lp-nav-link.active { color: var(--lp-gold); }

/* Right group: sign-in button + hamburger */
.lp-nav-right {
  display: flex; align-items: center; gap: 1rem; justify-content: flex-end;
}
.lp-signin-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff; padding: .7rem 1.75rem;
  border-radius: 4px; font-size: 1rem; font-weight: 700;
  cursor: pointer; letter-spacing: .05em; transition: all .2s;
  white-space: nowrap;
}
.lp-signin-btn:hover { border-color: var(--lp-gold); color: var(--lp-gold); }

/* Hamburger — hidden on desktop */
.lp-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: .4rem; flex-shrink: 0;
}
.lp-hamburger span {
  display: block; width: 26px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all .25s;
}
/* Animated X when open */
.lp-nav.menu-open .lp-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav.menu-open .lp-hamburger span:nth-child(2) { opacity: 0; }
.lp-nav.menu-open .lp-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 820px) {
  .lp-nav { grid-template-columns: auto 1fr; padding: .9rem 1.5rem; }
  .lp-hamburger { display: flex; }
  .lp-signin-btn { display: none; } /* shown inside mobile menu instead */

  .lp-nav-menu {
    display: none;
    position: fixed; inset: 0; top: 70px;
    flex-direction: column; justify-content: flex-start;
    gap: 0;
    background: rgba(9,26,16,.98);
    backdrop-filter: blur(18px);
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(0,200,83,.15);
  }
  .lp-nav.menu-open .lp-nav-menu { display: flex; }

  .lp-nav-menu li { width: 100%; }
  .lp-nav-link {
    display: block; font-size: 1.3rem; padding: 1rem .75rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  /* Sign-in button inside mobile menu */
  .lp-nav-menu .lp-mobile-signin {
    display: block; width: 100%;
    background: var(--lp-gold); color: #111;
    border: none; padding: 1rem;
    font-size: 1.1rem; font-weight: 900; letter-spacing: .08em;
    text-transform: uppercase; border-radius: 6px; cursor: pointer;
    margin-top: 1.5rem; font-family: inherit;
  }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Image fills the entire hero as a background */
.lp-hero-right {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center right;
  display: block;
}

/* Single smooth gradient overlay — fades from solid dark-green (left)
   through to almost transparent (right), crossing well past the midpoint
   so there is no visible hard line anywhere */
.lp-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to right,
    #0b1f14              0%,
    #0b1f14              18%,
    rgba(11,31,20,.96)   30%,
    rgba(11,31,20,.82)   42%,
    rgba(11,31,20,.55)   55%,
    rgba(11,31,20,.20)   70%,
    rgba(11,31,20,.04)   85%,
    transparent          100%
  );
}

/* Inner grid: text LEFT · form RIGHT — both above the gradient */
.lp-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  width: 100%; padding: 9rem 3.5rem 5rem;
}

.lp-hero-left {
  display: flex; flex-direction: column; justify-content: center;
}

.lp-hero-tag {
  display: inline-block;
  background: rgba(0,200,83,.12); border: 1px solid rgba(0,200,83,.35);
  color: var(--lp-gold); padding: .5rem 1.3rem; border-radius: 4px;
  font-size: 1rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.75rem; width: fit-content;
}
.lp-hero-h1 {
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 900; line-height: 0.97;
  color: #fff; letter-spacing: -.05em; margin-bottom: 1.5rem;
}
.lp-hero-sub {
  font-size: 1.35rem; color: var(--lp-muted); line-height: 1.7;
  margin-bottom: 2rem;
}
.lp-hero-badges {
  display: flex; gap: .875rem; flex-wrap: wrap;
}
.lp-hero-badge {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: rgba(0,200,83,.08);
  border: 1px solid rgba(0,200,83,.22);
  border-radius: 14px;
  padding: .75rem 1.1rem;
  min-width: 80px;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
  cursor: default;
}
.lp-hero-badge:hover {
  background: rgba(0,200,83,.16); border-color: rgba(0,200,83,.45);
}
.lp-hero-badge img {
  width: 52px; height: 38px;
  object-fit: contain; object-position: center;
  /* drop-shadow keeps the transparent car PNG looking clean on dark bg */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.lp-hero-badge span {
  font-size: .8rem; font-weight: 800;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}

/* ── Hero form card ─────────────────────────────────────────── */
.lp-hero-form-col {
  display: flex; justify-content: flex-end;
}
.lp-hero-form-card {
  width: 100%; max-width: 558px;
  background: rgba(9,26,16,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,200,83,.25);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.lp-hero-form-header {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem;
}
.lp-hero-form-icon { font-size: 2.8rem; flex-shrink: 0; line-height: 1; }
.lp-hero-form-title {
  font-size: 2.1rem; font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: .35rem;
}
.lp-hero-form-sub { font-size: 1rem; color: var(--lp-muted); }

/* ── Stats Bar ───────────────────────────────────────────────── */
.lp-stats {
  background: #0f2b1c;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0; padding: 3rem 3.5rem;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp-stat {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  gap: .5rem 1rem; align-items: start; padding: 0 1.5rem;
}
.lp-stat-icon {
  grid-row: 1 / 2; width: 44px; height: 44px; flex-shrink: 0;
}
.lp-stat-icon svg { width: 100%; height: 100%; }
.lp-stat-body {
  display: flex; flex-direction: column; gap: .1rem;
}
.lp-stat-num {
  font-size: 3.8rem; font-weight: 900; color: var(--lp-gold); line-height: 1;
  letter-spacing: -.05em;
}
.lp-stat-label {
  font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: .01em;
}
.lp-stat-desc {
  grid-column: 1 / -1; font-size: 1rem; color: var(--lp-muted); line-height: 1.6; margin-top: .5rem;
}
.lp-stat-div {
  width: 1px; background: rgba(0,200,83,.15); align-self: stretch; margin: 0;
}

/* ── Main CTA ────────────────────────────────────────────────── */
.lp-cta-row {
  background: #d3fae5; padding: 2.5rem; text-align: center;
}
.lp-cta-btn {
  background: var(--lp-gold); color: #fff;
  border: none; padding: 1.35rem 4rem;
  font-size: 1.25rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; border-radius: 4px;
  transition: background .2s, transform .2s;
}
.lp-cta-btn:hover { background: var(--lp-gold-dk); transform: translateY(-2px); }

/* ── Services + Form ─────────────────────────────────────────── */
.lp-services {
  background: #d3fae5;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem; padding: 3rem 2.5rem;
  align-items: start;
}

/* Service cards */
.lp-svc-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 6px; overflow: hidden;
}
.lp-svc-img {
  width: 100%; height: 220px; object-fit: cover; display: block;
}
.lp-svc-body { padding: 1.5rem; }
.lp-svc-body h3 {
  font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: .7rem;
}
.lp-svc-body p {
  font-size: 1rem; color: var(--lp-muted); line-height: 1.7; margin-bottom: 1.5rem;
}
.lp-svc-btn {
  background: transparent; border: 2px solid var(--lp-gold);
  color: var(--lp-gold); padding: .8rem 1.75rem;
  font-size: .95rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border-radius: 4px; transition: all .2s;
}
.lp-svc-btn:hover { background: var(--lp-gold); color: #111; }

/* Form card */
.lp-form-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 6px; padding: 2rem;
}
.lp-form-title {
  font-size: 2rem; font-weight: 900; color: #fff;
  margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.lp-field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0;
}
.lp-field-row .lp-field { margin-bottom: 1.25rem; }
.lp-field { margin-bottom: 1.25rem; }
.lp-field label {
  display: block; font-size: .95rem; font-weight: 700;
  color: var(--lp-muted); margin-bottom: .4rem; letter-spacing: .04em;
}
.lp-field input, .lp-field select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: .7rem 0; font-size: 1.1rem;
  outline: none; transition: border-color .2s;
  font-family: inherit;
}
.lp-field input::placeholder { color: rgba(255,255,255,.25); }
.lp-field input:focus, .lp-field select:focus { border-bottom-color: var(--lp-gold); }
.lp-field select { cursor: pointer; }
.lp-field select option { background: #1a1a1a; color: #fff; }
.lp-divider { height: 1px; background: rgba(255,255,255,.1); margin: 1.5rem 0; }
.lp-error {
  background: rgba(220,38,38,.15); border: 1px solid rgba(220,38,38,.4);
  color: #fca5a5; padding: .65rem .875rem;
  border-radius: 4px; font-size: .825rem; margin-bottom: 1rem;
}
.lp-error.hidden { display: none; }
.lp-submit-btn {
  width: 100%; background: var(--lp-gold); color: white;
  border: none; padding: 1.2rem;
  font-size: 1.1rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border-radius: 4px; margin-top: 1rem;
  transition: background .2s;
}
.lp-submit-btn:hover:not(:disabled) { background: var(--lp-gold-dk); }
.lp-submit-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Fleet card spans both rows on the left */
.lp-fleet-card { grid-row: 1 / 3; }

/* ── Span card — row 2, columns 2 & 3 ───────────────────────── */
.lp-span-card {
  grid-column: 2 / 4;
  grid-row: 2;
  background: linear-gradient(120deg, #0f2b1c 0%, #122b1a 60%, #0b1f14 100%);
  border: 1px solid rgba(0,200,83,.18);
  border-radius: 6px;
  padding: 2rem 2.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.lp-span-left { flex: 1; }
.lp-span-label {
  font-size: .9rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lp-gold); margin-bottom: .5rem;
}
.lp-span-title {
  font-size: 1.6rem; font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1.2; margin-bottom: .5rem;
}
.lp-span-sub {
  font-size: .95rem; color: var(--lp-muted); line-height: 1.6;
}
.lp-span-actions {
  display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0;
}
.lp-span-btn {
  padding: .9rem 2rem;
  border-radius: 4px; border: 2px solid transparent;
  font-size: 1rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: all .2s; font-family: inherit;
}
.lp-span-btn--ride {
  background: var(--lp-gold); color: #fff; border-color: var(--lp-gold);
}
.lp-span-btn--ride:hover { background: var(--lp-gold-dk); border-color: var(--lp-gold-dk); }
.lp-span-btn--parcel {
  background: transparent; color: var(--lp-gold); border-color: var(--lp-gold);
}
.lp-span-btn--parcel:hover { background: var(--lp-gold); color: #111; }

/* Mobile: collapse span card to single column */
@media (max-width: 900px) {
  .lp-fleet-card { grid-row: auto; }
  .lp-span-card { grid-column: 1; grid-row: auto; flex-direction: column; align-items: flex-start; }
  .lp-span-actions { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .lp-span-btn { flex: 1; min-width: 140px; }
}

/* ── Fleet Card ──────────────────────────────────────────────── */
.lp-fleet-visual {
  height: 220px;
  background: linear-gradient(135deg, #071710 0%, #0f2b1c 60%, #163d24 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  border-bottom: 1px solid rgba(0,200,83,.12);
  position: relative; overflow: hidden;
}
/* subtle grid lines in the visual */
.lp-fleet-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,83,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,83,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.lp-fleet-cars {
  display: flex; align-items: flex-end; gap: -.5rem;
  position: relative; z-index: 1;
}
.lp-fleet-car { display: block; line-height: 1; }
.lp-fleet-car--back  { font-size: 3.2rem; opacity: .55; transform: translateX(10px); }
.lp-fleet-car--mid   { font-size: 4.5rem; z-index: 2; }
.lp-fleet-car--front { font-size: 2.8rem; opacity: .65; transform: translateX(-10px) scaleX(-1); }
.lp-fleet-visual-label {
  font-size: 1rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lp-gold); opacity: .9; position: relative; z-index: 1;
}

.lp-fleet-list { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.5rem; }
.lp-fleet-item {
  display: flex; align-items: center; gap: .875rem;
  padding: .7rem .875rem;
  background: rgba(0,200,83,.06); border: 1px solid rgba(0,200,83,.1);
  border-radius: 8px;
  transition: background .2s;
}
.lp-fleet-item:hover { background: rgba(0,200,83,.12); }
.lp-fleet-emoji { font-size: 2rem; flex-shrink: 0; }
.lp-fleet-info { display: flex; flex-direction: column; }
.lp-fleet-info strong { color: #fff; font-size: 1.1rem; font-weight: 800; }
.lp-fleet-info span   { color: var(--lp-muted); font-size: .95rem; margin-top: .15rem; }
.lp-fleet-info em     { color: var(--lp-gold); font-style: normal; font-weight: 800; }

/* ── Service card image overlays ────────────────────────────── */
.lp-img-box {
  position: relative; overflow: hidden;
}
.lp-img-overlay {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 1.1rem;
  /* Bottom-up dark gradient wash */
  background: linear-gradient(
    to top,
    rgba(7,23,10,.92) 0%,
    rgba(7,23,10,.45) 35%,
    transparent       65%
  );
}

/* Top badge */
.lp-ov-badge {
  align-self: flex-start;
  padding: .35rem .9rem; border-radius: 999px;
  font-size: .82rem; font-weight: 800; letter-spacing: .04em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lp-ov-badge--live   { background: rgba(0,200,83,.25); border: 1px solid rgba(0,200,83,.5); color: #4de882; }
.lp-ov-badge--parcel { background: rgba(245,166,35,.2); border: 1px solid rgba(245,166,35,.4); color: #fcd34d; }

/* Ride: route indicator */
.lp-ov-route { display: flex; flex-direction: column; gap: .3rem; }
.lp-ov-route-row {
  display: flex; align-items: center; gap: 6px;
}
.lp-ov-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.lp-ov-dot--a { background: var(--lp-gold); }
.lp-ov-dot--b { background: #fff; }
.lp-ov-dash {
  flex: 1; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.6) 0, rgba(255,255,255,.6) 6px, transparent 6px, transparent 12px);
}
.lp-ov-route-labels {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .04em;
}

/* Parcel: tracking row */
.lp-ov-tracking {
  display: flex; flex-direction: column; gap: .3rem;
}
.lp-ov-tracking-label { font-size: .7rem; color: rgba(255,255,255,.55); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lp-ov-tracking-num   { font-size: 1rem; color: #fff; font-weight: 800; letter-spacing: .05em; font-family: monospace; }
.lp-ov-track-dots {
  display: flex; align-items: center; gap: 0;
}
.lp-td {
  flex: 1; height: 3px; background: rgba(255,255,255,.2); position: relative;
}
.lp-td::before {
  content: ''; position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); margin-left: -4px;
}
.lp-td.done  { background: var(--lp-gold); }
.lp-td.done::before { background: var(--lp-gold); }
.lp-td.active { background: linear-gradient(to right, var(--lp-gold) 50%, rgba(255,255,255,.2) 50%); }
.lp-td.active::before { background: #fff; box-shadow: 0 0 0 3px rgba(0,200,83,.4); }
.lp-ov-track-labels {
  display: flex; justify-content: space-between;
  font-size: .65rem; color: rgba(255,255,255,.55); font-weight: 600;
}

/* Bottom chip */
.lp-ov-chip {
  align-self: flex-end;
  background: rgba(0,0,0,.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  padding: .4rem .85rem; border-radius: 999px;
  font-size: .8rem; color: rgba(255,255,255,.85); font-weight: 600;
}
.lp-ov-chip strong { color: var(--lp-gold); }

/* ── Why section image overlays ──────────────────────────────── */
.lp-why-img-wrap { position: relative; overflow: hidden; }

.lp-why-overlay { position: absolute; inset: 0; pointer-events: none; }

/* Floating stat cards */
.lp-why-float-card {
  position: absolute;
  background: rgba(9,26,16,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,200,83,.25);
  border-radius: 12px; padding: .9rem 1.1rem;
  display: flex; flex-direction: column; gap: .2rem;
  min-width: 130px;
}
.lp-why-float--tl { top: 8%;  left: 6%; }
.lp-why-float--tr { top: 8%;  right: 6%; }
.lp-why-float--bl { bottom: 10%; left: 6%; }
.lp-why-float--br { bottom: 10%; right: 6%; }

.lp-wfc-num   { font-size: 1.5rem; font-weight: 900; color: var(--lp-gold); line-height: 1; }
.lp-wfc-label { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; }
.lp-wfc-icon  { font-size: 1.1rem; margin-top: .25rem; }

/* Diagonal brand band across the image */
.lp-why-band {
  position: absolute; top: 42%; left: -10%; right: -10%;
  height: 52px;
  background: rgba(0,200,83,.08);
  transform: rotate(-5deg);
  border-top: 1px solid rgba(0,200,83,.15);
  border-bottom: 1px solid rgba(0,200,83,.15);
  pointer-events: none;
}

/* ── Why Choose ──────────────────────────────────────────────── */
.lp-why {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; background: #0b1f14;
  border-top: 1px solid var(--lp-border);
}
.lp-why-text {
  padding: 5rem 3.5rem;
}
.lp-why-text h2 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900; color: #fff; letter-spacing: -.04em; margin-bottom: 2.5rem;
}
.lp-why-list { list-style: none; display: flex; flex-direction: column; gap: 1.75rem; }
.lp-why-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.lp-why-icon { width: 36px; height: 36px; flex-shrink: 0; margin-top: .1rem; }
.lp-why-icon svg { width: 100%; height: 100%; }
.lp-why-list strong { display: block; color: #fff; font-size: 1.25rem; font-weight: 800; margin-bottom: .3rem; }
.lp-why-list p { color: var(--lp-muted); font-size: 1rem; line-height: 1.65; }
.lp-why-img-wrap { overflow: hidden; position: relative; }
.lp-why-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Promo Card Section ──────────────────────────────────────── */
.lp-promo-section {
  background: linear-gradient(160deg, #b0f7ce 0%, #f0fdf9 100%);
  padding: 3rem 2rem 5rem;
  display: flex; justify-content: center;
}
.lp-promo-wrap {
  position: relative;
  max-width: 900px; width: 100%;
  padding-top: 100px;
}
.lp-promo-car-wrap {
  position: absolute;
  right: -10px; bottom: 0;
  width: 52%; z-index: 3; pointer-events: none;
}
.lp-promo-car-img {
  width: 100%; object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,80,30,.18));
}
.lp-promo-card {
  background: #fff;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 16px 64px rgba(0,80,30,.1), 0 2px 8px rgba(0,0,0,.04);
  display: grid; grid-template-columns: 1fr 180px;
  gap: 2.5rem; align-items: start;
  position: relative; z-index: 1; overflow: hidden;
}
.lp-promo-card::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at 80% 40%, rgba(0,200,83,.09) 0%, transparent 70%);
  pointer-events: none;
}
.lp-promo-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #071710;
  letter-spacing: -.04em; line-height: 1.1; margin-bottom: 2rem;
}
.lp-promo-accent { color: #00a844; }
.lp-promo-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 1.1rem; margin-bottom: 2.25rem;
}
.lp-promo-list li {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1rem; font-weight: 600; color: #1a3a25; line-height: 1.4;
}
.lp-promo-chip {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(0,200,83,.1); border: 1.5px solid rgba(0,200,83,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.lp-promo-cta {
  background: #00a844; color: #fff; border: none;
  padding: 1rem 2.5rem; border-radius: 999px;
  font-size: 1rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: all .2s; font-family: inherit;
  box-shadow: 0 4px 20px rgba(0,168,68,.3);
}
.lp-promo-cta:hover { background: #008f39; transform: translateY(-2px); }
.lp-promo-price-badge {
  background: #00a844; border-radius: 20px;
  padding: 1.75rem 1.25rem; text-align: center; color: #fff;
  box-shadow: 0 8px 32px rgba(0,168,68,.35);
}
.lp-ppb-from  { font-size: .9rem; font-weight: 700; opacity: .85; margin-bottom: .4rem; }
.lp-ppb-amount { display: flex; align-items: flex-start; justify-content: center; gap: .15rem; line-height: 1; margin-bottom: .3rem; }
.lp-ppb-cur   { font-size: 1.4rem; font-weight: 800; padding-top: .5rem; }
.lp-ppb-num   { font-size: 4rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.lp-ppb-unit  { font-size: .9rem; font-weight: 600; opacity: .8; }
@media (max-width: 700px) {
  .lp-promo-card { grid-template-columns: 1fr; padding: 2rem; }
  .lp-promo-car-wrap { display: none; }
  .lp-promo-wrap { padding-top: 2rem; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.lp-footer {
  background: #071710; color: rgba(255,255,255,.45);
  padding: 2.5rem; text-align: center; font-size: .85rem;
  border-top: 1px solid var(--lp-border);
}
.lp-footer-links {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.lp-footer-links span { display: flex; align-items: center; gap: .4rem; }
.lp-footer a { color: var(--lp-gold); text-decoration: none; }

/* ── Landing Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero { min-height: auto; }
  .lp-hero-inner {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    gap: 2rem;
  }
  .lp-hero-form-col { justify-content: stretch; }
  .lp-hero-form-card { max-width: 100%; }
  .lp-field-row { grid-template-columns: 1fr; }
  /* On mobile the gradient covers fully so stacked content is readable */
  .lp-hero::after {
    background: linear-gradient(
      to bottom,
      rgba(11,31,20,.4)  0%,
      rgba(11,31,20,.75) 40%,
      #0b1f14            80%,
      #0b1f14            100%
    );
  }
  .lp-stats { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 2rem; }
  .lp-stat-div { width: 100%; height: 1px; margin: 0; }
  .lp-services { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .lp-why { grid-template-columns: 1fr; }
  .lp-why-img-wrap { height: 260px; }
  .lp-why-text { padding: 3rem 1.5rem; }
  .lp-nav { padding: 1rem 1.5rem; }
  .lp-cta-row { padding: 2rem 1.5rem; }
}
@media (max-width: 600px) {
  .lp-hero-h1 { font-size: 3.2rem; }
  .lp-stat-num { font-size: 2.6rem; }
  .lp-footer-links { gap: 1rem; flex-direction: column; align-items: center; }
}
