*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1A6FD4;
  --blue-dark:   #1259AB;
  --blue-deep:   #0D3E78;
  --blue-light:  #4A9FEA;
  --blue-pale:   #F0F6FC;
  --blue-mist:   #F8FAFC;
  --white:       #FFFFFF;
  --ink:         #0F172A;
  --ink-mid:     #1E293B;
  --ink-soft:    #334155;
  --text-muted:  #475569;
  --text-dim:    #64748B;
  --border:      #E2E8F0;
  --border-mid:  #CBD5E1;
  --card-bg:     rgba(255, 255, 255, 0.85);
  --section-alt: #F8FAFC;
  --green:       #10B981;
  --amber:       #F59E0B;
  --red:         #EF4444;
  --purple:      #8B5CF6;
  --purple-pale: #F5F3FF;
  --glass:       rgba(37, 99, 235, 0.05);
  --glass-border:rgba(37, 99, 235, 0.12);
  
  /* Modern design tokens */
  --shadow-sm:   0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:   0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:   0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:   0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.15);
  --radius-lg:   16px;
  --radius-xl:   24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #F8FAFC;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue-pale); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes roadLine {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.2); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}


.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, border-bottom 0.35s, backdrop-filter 0.35s;
  background: rgba(255,255,255,0.0);
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(26,111,212,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 16px; color: #fff;
}
.nav-logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 19px;
  color: var(--ink); letter-spacing: -0.3px;
}
.nav-logo-text span { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 20px; border-radius: 10px;
  font-weight: 700 !important; font-size: 14px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: 
    radial-gradient(circle at 70% 40%, rgba(26, 111, 212, 0.07) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(74, 159, 234, 0.05) 0%, transparent 50%),
    linear-gradient(160deg, #EBF4FF 0%, #F8FBFF 40%, #FFFFFF 70%, #F5F9FF 100%);
  padding: 0 5vw 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 111, 212, 0.10) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,212,0.09) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,159,234,0.07) 0%, transparent 70%);
  bottom: 80px; left: 0;
  pointer-events: none;
}

.road-lines {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.road-line {
  position: absolute; height: 1px; width: 120%; left: -10%;
}

/* Two-column hero layout */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 20px;
  flex: 1;
}

/* LEFT COLUMN */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 2;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,111,212,0.08);
  border: 1px solid rgba(26,111,212,0.2);
  border-radius: 100px; padding: 6px 14px;
  font-size: 11px; font-weight: 700; color: var(--blue);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease forwards;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 20px;
  color: var(--ink);
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent { color: var(--blue); }
.hero-title .shimmer-text {
  background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue-light) 50%, var(--blue-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--text-muted); max-width: 460px;
  margin: 0 0 32px; font-weight: 400; line-height: 1.75;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both; margin-bottom: 44px;
}

/* Feature icons row */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  width: 100%;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 111, 212, 0.08);
  border-radius: 14px;
  padding: 12px 18px;
  flex: 1;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(26, 111, 212, 0.02);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 111, 212, 0.18);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(26, 111, 212, 0.06);
}

.hero-feature-icon {
  width: 36px; height: 36px;
  background: rgba(26, 111, 212, 0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  font-size: 16px;
}

.hero-feature-title {
  font-size: 13px; font-weight: 700;
  color: var(--ink); margin-bottom: 2px;
}

.hero-feature-sub {
  font-size: 11px;
  color: var(--text-dim);
}

/* RIGHT COLUMN */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-circle-bg {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,220,250,0.55) 0%, rgba(220,235,255,0.2) 60%, transparent 80%);
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-route-decoration {
  position: absolute;
  top: 5%;
  right: 10%;
  z-index: 3;
  pointer-events: none;
}

.hero-route-svg {
  width: 120px;
  height: 120px;
}

.hero-pin {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 3px 8px rgba(26,111,212,0.35));
  animation: float 3s ease-in-out infinite;
}

.hero-bus-img {
  position: relative;
  width: 100%;
  max-width: 580px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(26,111,212,0.18));
  animation: float 5s ease-in-out infinite;
}

/* Floating "Next Bus" card */
.hero-next-bus-card {
  position: absolute;
  bottom: 12%;
  right: -4%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(26,111,212,0.15);
  min-width: 210px;
  z-index: 4;
  animation: fadeUp 1s 0.6s ease both;
}

.hero-next-bus-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.hero-next-bus-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-next-bus-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(16,185,129,0.1);
  padding: 3px 8px;
  border-radius: 100px;
}

.hero-next-bus-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-next-bus-route {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.hero-next-bus-arrival {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-next-bus-arrival span {
  color: var(--blue);
  font-weight: 700;
}

.hero-next-bus-icon {
  width: 36px; height: 36px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

/* Stats bar at the bottom of hero */
.hero-stats-bar {
  width: 100%;
  padding: 40px 0;
  animation: fadeUp 0.7s 0.5s ease both;
  position: relative;
  z-index: 2;
}

.hero-stats-bar-inner {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(26, 111, 212, 0.08);
  box-shadow: 0 10px 40px rgba(26, 111, 212, 0.06);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat-icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.hero-stat-big {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--blue); line-height: 1;
  margin-bottom: 3px;
}

.hero-stat-caption {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* old stat classes kept for JS compat */
.hero-stat { display: none; }
.hero-stat-num span { color: var(--blue); }
.hero-stat-label { display: none; }


.btn-primary {
  background: var(--blue); color: #fff;
  padding: 14px 28px; border-radius: 12px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-primary {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary svg {
  transition: transform 0.3s ease;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 111, 212, 0.35);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink-soft);
  padding: 14px 28px; border-radius: 12px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid var(--border-mid); cursor: pointer;
  font-family: inherit;
}
.btn-ghost:hover {
  color: var(--blue); border-color: var(--blue);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 111, 212, 0.08);
}

.hero-stats {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 111, 212, 0.1);
  box-shadow: 0 8px 30px rgba(26, 111, 212, 0.04);
  border-radius: 18px;
  padding: 18px 28px;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
}
.hero-stat:hover {
  transform: translateY(-3px);
  border-color: var(--blue-light);
  box-shadow: 0 12px 35px rgba(26, 111, 212, 0.08);
}
.hero-stat-num {
  font-family: 'Outfit', sans-serif; font-size: 28px;
  font-weight: 800; color: var(--ink); line-height: 1;
}
.hero-stat-num span { color: var(--blue); }
.hero-stat-label {
  font-size: 11px; color: var(--text-muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}

/* ── SECTIONS ── */
section { padding: 100px 5vw; position: relative; }

.section-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 16px; color: var(--ink);
}
.section-title .accent { color: var(--blue); }
.section-sub {
  font-size: 16px; color: var(--text-muted); max-width: 520px; line-height: 1.7;
}
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ── DEMO ── */
#demo {
  background: var(--section-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.demo-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.demo-phone {
  position: relative; display: flex;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
}

.phone-shell {
  width: 290px;
  background: #090D16;
  border-radius: 46px;
  border: 12px solid #090D16;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(9, 13, 22, 0.3),
    0 25px 60px -15px rgba(15, 23, 42, 0.3),
    0 50px 100px -25px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.phone-notch {
  height: 22px;
  background: #090D16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.phone-notch-bar {
  width: 90px;
  height: 12px;
  background: #000;
  border-radius: 12px;
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-status-bar {
  background: #090D16;
  color: #fff;
  padding: 4px 20px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.1px;
}
.phone-status-signals {
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-signal-bar {
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}
.phone-signal-bar.filled {
  background: #fff;
}
.phone-signal-bar:nth-child(2) { height: 5px; }
.phone-signal-bar:nth-child(3) { height: 7px; }
.phone-signal-bar:nth-child(4) { height: 9px; }
.phone-wifi-icon { font-size: 8px; opacity: 0.9; }
.phone-battery-icon { font-size: 10px; opacity: 0.9; }

.phone-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-header-logo {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 12px; color: var(--ink);
}
.phone-header-logo-icon {
  width: 20px; height: 20px; background: var(--blue); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
}
.live-badge { display: flex; align-items: center; gap: 4px; font-size: 9px; color: var(--green); font-weight: 700; }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 1.5s ease-in-out infinite; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 111, 212, 0.08);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 111, 212, 0.03);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: rgba(26, 111, 212, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 111, 212, 0.08);
}
.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 24px;
}
.service-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── METRICS ── */
#metrics {
  background: var(--blue);
  border-top: none; border-bottom: none;
}

.metrics-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 60px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.metric-card:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.metric-num {
  font-family: 'Outfit', sans-serif; font-size: 42px;
  font-weight: 800; line-height: 1; margin-bottom: 8px; color: #fff;
}
.metric-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; }

#metrics .section-eyebrow { color: rgba(255,255,255,0.7); }
#metrics .section-title { color: #fff; }
#metrics .section-title .accent { color: rgba(255,255,255,0.5); }

/* ── ROUTES ── */
.routes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 56px;
}

.route-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 111, 212, 0.08);
  box-shadow: 0 10px 30px rgba(26, 111, 212, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.route-card:hover {
  border-color: rgba(26, 111, 212, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 111, 212, 0.1);
}

.route-card-header {
  padding: 18px 20px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.route-dot { width: 10px; height: 10px; border-radius: 50%; }
.route-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); }
.route-count {
  margin-left: auto; font-size: 11px; color: var(--text-muted);
  background: var(--blue-pale); padding: 3px 10px; border-radius: 20px;
}

.route-stops { padding: 16px 20px 18px; position: relative; }
.route-stops-line {
  position: absolute; left: 27px; top: 6px; bottom: 22px;
  width: 2px; opacity: 0.25; border-radius: 2px;
}
.route-stop { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.route-stop-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 2px solid;
  flex-shrink: 0; margin-left: -1px;
}

/* ── ABOUT ── */
#about { background: var(--section-alt); border-top: 1px solid var(--border); }

.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.mv-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 111, 212, 0.06);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(26, 111, 212, 0.02);
  transition: all 0.3s ease;
}
.mv-item:hover {
  transform: translateX(4px);
  border-color: rgba(26, 111, 212, 0.15);
  box-shadow: 0 8px 25px rgba(26, 111, 212, 0.05);
}
.mv-label {
  font-size: 10px; color: var(--blue); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
}
.mv-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── DOWNLOAD ── */
#download {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue) 100%);
  text-align: center; overflow: hidden; position: relative;
}
.download-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.download-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
#download .section-eyebrow { color: rgba(255,255,255,0.7); }
#download .section-title { color: #fff; }
#download .section-title .accent { color: rgba(255,255,255,0.55); }
#download .section-sub { color: rgba(255,255,255,0.72); }

.store-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 14px; padding: 14px 24px;
  text-decoration: none; color: #fff;
  transition: all 0.25s; backdrop-filter: blur(8px);
}
.store-btn:hover {
  background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.store-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.store-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.store-btn-small { font-size: 11px; color: rgba(255,255,255,0.7); }
.store-btn-big { font-size: 16px; font-weight: 700; }

/* ── CONTACT ── */
#contact { background: var(--white); border-top: 1px solid var(--border); }

.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--blue-mist);
  border: 1.5px solid var(--border);
  border-radius: 12px; padding: 13px 16px;
  color: var(--ink); font-size: 14px;
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue); background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--white); color: var(--ink); }

.contact-info-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(240, 247, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 111, 212, 0.06);
  border-radius: 18px;
  padding: 20px 22px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-info-card:hover {
  border-color: var(--blue-light);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 111, 212, 0.08);
}
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-info-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-info-value { font-size: 14px; font-weight: 600; color: var(--ink); }
.contact-info-value a { color: var(--blue); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #ECFDF5;
  border: 1.5px solid var(--green);
  border-radius: 14px; padding: 14px 22px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px; color: var(--ink);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 32px rgba(16,185,129,0.15);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 48px 5vw 32px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.footer-brand-logo-icon {
  width: 30px; height: 30px; background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit'; font-weight: 800; font-size: 13px; color: #fff;
}
.footer-brand-logo-text { font-family: 'Outfit'; font-weight: 800; font-size: 16px; color: #fff; }
.footer-brand-logo-text span { color: var(--blue-light); }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 240px; }

.footer-col-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-copy a { color: var(--blue-light); text-decoration: none; }

/* ── PRIVACY ── */
.privacy-wrap {
  display: none; max-width: 800px; margin: 60px auto 0;
}
.privacy-wrap.open { display: block; }

/* ── MOBILE ── */
.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 5vw 24px;
  z-index: 999; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted); text-decoration: none;
  font-size: 15px; font-weight: 500; padding: 10px 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .demo-inner { grid-template-columns: 1fr; }
  .demo-phone { order: -1; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 70px 5vw; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .hero-stat { min-width: 85px; padding: 12px 16px; }
  .hero-stat-num { font-size: 22px; }
}

/* ── SEMANTIC EXTRACTIONS & LAYOUT IMPROVEMENTS ── */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Demo phone inner layout */
.phone-glow-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.phone-map-container {
  background: #F0F7FF;
  position: relative;
  overflow: hidden;
}

.phone-map-svg {
  display: block;
  background: #F0F7FF;
}

.phone-status-panel {
  padding: 10px 10px 14px;
  background: var(--white);
}

.phone-status-cards {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.phone-status-card {
  flex: 1;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid;
}

.phone-status-card.card-blue {
  background: var(--blue-pale);
  border-color: var(--border);
}

.phone-status-card.card-red {
  background: #FFF5F5;
  border-color: #FED7D7;
}

.status-card-header {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-card-info {
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.status-card-info.text-green {
  color: var(--green);
}

.status-card-info.text-red {
  color: var(--red);
}

.phone-next-arrival {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-next-text {
  font-size: 10px;
  color: var(--text-muted);
}

.phone-next-text span {
  color: var(--ink);
  font-weight: 600;
}

.phone-next-time {
  font-size: 10px;
  color: var(--blue);
  font-weight: 700;
}

/* Live tracking card layouts */
.live-tracking-content {
  padding: 0 0 0 10px;
}

.live-tracking-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 111, 212, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 6px 20px rgba(26, 111, 212, 0.04);
  transition: all 0.3s ease;
}
.live-tracking-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 111, 212, 0.2);
  box-shadow: 0 12px 30px rgba(26, 111, 212, 0.08);
}

.tracking-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.icon-bg-blue {
  background: var(--blue-pale);
}

.icon-bg-green {
  background: #ECFDF5;
}

.icon-bg-amber {
  background: #FFFBEB;
}

.tracking-card-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--ink);
}

.tracking-card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Service Card Icons */
.service-icon.icon-blue {
  background: var(--blue-pale);
}

.service-icon.icon-green {
  background: #ECFDF5;
}

.service-icon.icon-amber {
  background: #FFFBEB;
}

.service-icon.icon-purple {
  background: #F5F0FF;
}

/* Routes Timeline Styles */
.line-blue {
  background: var(--blue);
}

.line-green {
  background: #0F8C5A;
}

.line-purple {
  background: #7C3AED;
}

.route-stop-dot.dot-blue {
  border-color: var(--blue);
}

.route-stop-dot.dot-green {
  border-color: #0F8C5A;
}

.route-stop-dot.dot-purple {
  border-color: #7C3AED;
}

.route-stop-dot.dot-solid-blue {
  background: var(--blue);
  border-color: var(--blue);
}

.route-stop-dot.dot-solid-green {
  background: #0F8C5A;
  border-color: #0F8C5A;
}

.route-stop-dot.dot-solid-purple {
  background: #7C3AED;
  border-color: #7C3AED;
}

/* Notice / upcoming features banner */
.upcoming-routes-notice {
  margin-top: 36px;
  background: rgba(232, 242, 252, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px dashed rgba(26, 111, 212, 0.4);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.upcoming-routes-notice:hover {
  border-style: solid;
  border-color: var(--blue-light);
  box-shadow: 0 10px 30px rgba(26, 111, 212, 0.08);
}

/* Contact form layout */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(26, 111, 212, 0.1);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 15px 45px rgba(26, 111, 212, 0.08);
}

/* About image layout */
.about-image-container {
  margin-top: 36px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(26, 111, 212, 0.12);
  border: 1px solid rgba(26, 111, 212, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(26, 111, 212, 0.2);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mapbox GL Map styles */
#map {
  width: 100%;
  height: 200px;
  border-radius: 0;
}

.marker {
  font-size: 16px;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.marker:hover {
  transform: scale(1.15);
}

.marker.bus-blue {
  border-color: var(--blue);
}

.marker.bus-green {
  border-color: var(--green);
}

/* Word rotation animation */
.word-rotate {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 1.2em;
  vertical-align: bottom;
  min-width: 250px;
}

.rotate-word {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  font-weight: 800;
  display: inline-block;
}

.rotate-word.active {
  opacity: 1;
  transform: translateY(0);
}

.rotate-word.exit {
  opacity: 0;
  transform: translateY(-20px);
}

/* ── HERO TWO-COL RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    padding-top: 100px;
    gap: 30px;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-sub {
    margin: 0 auto 32px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .hero-right {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-next-bus-card {
    right: 0;
    bottom: 5%;
  }
  .hero-stats-bar-inner {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .hero-stat-divider { display: none; }
  .word-rotate { min-width: 200px; }
}

@media (max-width: 600px) {
  .hero-features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-next-bus-card { display: none; }
  .hero-stats-bar-inner { padding: 18px 16px; }
  .hero-stat-big { font-size: 22px; }
}

/* ── CONVENIENCE SECTION RESPONSIVE ── */
@media (max-width: 768px) {
  #convenience .container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  #convenience .container > div:first-child {
    order: 2;
  }
  #convenience .container > div:last-child {
    order: 1;
  }
}

/* ── COMMUNITY FEEDBACK BOARD STYLES ── */
#feedback-section {
  padding: 100px 5vw;
  background: var(--section-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.feedback-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}
.feedback-inner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.feedback-wall {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-mid) transparent;
}
.feedback-wall::-webkit-scrollbar {
  width: 5px;
}
.feedback-wall::-webkit-scrollbar-track {
  background: transparent;
}
.feedback-wall::-webkit-scrollbar-thumb {
  background: var(--border-mid);
  border-radius: 10px;
}
.feedback-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: slideInUp 0.5s ease both;
}
.feedback-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.feedback-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.feedback-card-user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feedback-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-transform: uppercase;
}
.feedback-card-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.feedback-card-role {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 100px;
}
.feedback-card-role.role-commuter {
  background: var(--blue-pale);
  color: var(--blue);
}
.feedback-card-role.role-operator {
  background: #ECFDF5;
  color: var(--green);
}
.feedback-card-role.role-conductor {
  background: var(--purple-pale);
  color: var(--purple);
}
.feedback-card-role.role-other {
  background: #FFFBEB;
  color: var(--amber);
}
.feedback-card-date {
  font-size: 11px;
  color: var(--text-dim);
}
.feedback-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.feedback-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.feedback-form-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--ink);
}
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* XSS Sandbox container */
.xss-sandbox {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1.5px dashed var(--border);
}
.xss-sandbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.xss-sandbox-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--purple-pale);
  padding: 3px 8px;
  border-radius: 6px;
}
.xss-sandbox-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}
.xss-status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.xss-sandbox-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.xss-sandbox-actions {
  display: flex;
  gap: 10px;
}
.btn-ghost-small {
  background: var(--blue-mist);
  color: var(--blue-dark);
  border: 1px solid var(--border-mid);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn-ghost-small:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes markerPulse {
  0% {
    transform: scale(0.9) translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    transform: scale(2.4) translate(-50%, -50%);
    opacity: 0;
  }
}

/* Custom Marker styles */
.marker-container {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-origin: top left;
  animation: markerPulse 1.8s ease-out infinite;
}
.marker-container.bus-blue .marker-pulse {
  background: rgba(37, 99, 235, 0.4);
}
.marker-container.bus-green .marker-pulse {
  background: rgba(16, 185, 129, 0.4);
}

.marker-icon-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.marker-container.bus-blue .marker-icon-wrapper {
  border-color: var(--blue);
  color: var(--blue);
}
.marker-container.bus-green .marker-icon-wrapper {
  border-color: var(--green);
  color: var(--green);
}
.marker-container:hover .marker-icon-wrapper {
  transform: scale(1.18);
}

@media (max-width: 900px) {
  .feedback-inner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Bus Image Card Styling */
.hero-bus-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 111, 212, 0.08);
  box-shadow: 0 20px 48px rgba(26, 111, 212, 0.12);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

/* Download Banner Styling */
.download-banner {
  background: linear-gradient(135deg, #EFF6FC 0%, #E0ECFB 100%);
  border: 1px solid rgba(26, 111, 212, 0.12);
  border-radius: 24px;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 30px auto 60px;
  box-shadow: 0 12px 36px rgba(26, 111, 212, 0.05);
  animation: fadeUp 0.7s 0.6s ease both;
  width: 100%;
}
.download-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.download-banner-phone-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(26, 111, 212, 0.08);
  flex-shrink: 0;
  font-size: 20px;
}

.hero-stat-big {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 800;
  color: var(--blue); line-height: 1.1;
  margin-bottom: 2px;
}

.hero-stat-label-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.hero-stat-caption {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.2;
  margin-top: 2px;
}

.download-banner-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.download-banner-text h3 .accent-blue {
  color: var(--blue);
}
.download-banner-text p {
  font-size: 14px;
  color: var(--text-muted);
}
.download-banner-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.store-badge-link {
  display: block;
  height: 40px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.store-badge-link img {
  height: 100%;
  width: auto;
  display: block;
}
.store-badge-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (max-width: 960px) {
  .hero-stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
  }
  .hero-stat-divider {
    display: none;
  }
  .download-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px;
    margin: 20px auto 40px;
  }
  .download-banner-left {
    flex-direction: column;
    gap: 12px;
  }
  .download-banner-right {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .hero-stats-bar-inner {
    grid-template-columns: 1fr;
  }
  .hero-stat-item {
    justify-content: center;
  }
}
