:root {
  --navy: #10233f;
  --blue: #2563eb;
  --sky: #eaf2ff;
  --ink: #172033;
  --muted: #667085;
  --line: #d9e2ef;
  --card: #ffffff;
  --warm: #f8fafc;
  --accent: #f59e0b;
  --green: #0f766e;
  --red: #b42318;
  --shadow: 0 20px 45px rgba(16, 35, 63, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1b1b1a;
  border-bottom: 1px solid rgba(217,217,217,0.18);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.navbar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 25px rgba(37,99,235,0.25);
}

.logo small {
  display: block;
  color: var(--muted);
  letter-spacing: 0;
  font-weight: 600;
  font-size: 12px;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--red);
  font-weight: 750;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a[aria-current="page"] {
  color: white;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.18s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 25px rgba(37,99,235,0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: #b7c5d9;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,99,235,0.16), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(15,118,110,0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(16,35,63,0.06);
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  margin-top: 18px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: 23px;
}

.lead {
  font-size: clamp(18px, 2vw, 21px);
  color: #475467;
  max-width: 720px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-panel {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.brand-map {
  display: grid;
  gap: 14px;
}

.map-item {
  padding: 17px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}

.icon.education { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.icon.advocacy { background: linear-gradient(135deg, #b42318, #f59e0b); }
.icon.adult { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.icon.kids { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.icon.ride { background: linear-gradient(135deg, #111827, #64748b); }

.map-item strong {
  color: var(--navy);
  display: block;
  font-size: 16px;
}

.map-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--warm);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(16,35,63,0.06);
  transition: 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card .icon {
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
  margin: 13px 0 18px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: #475467;
}

.card-link {
  display: inline-flex;
  color: var(--blue);
  font-weight: 800;
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.feature-box {
  border-radius: 30px;
  padding: 32px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.feature-box h2 {
  color: white;
}

.feature-box p {
  color: rgba(255,255,255,0.78);
}

.values {
  display: grid;
  gap: 16px;
}

.value {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.value strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 4px;
}

.value span {
  color: var(--muted);
}

.cta {
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.14), transparent 24%),
    linear-gradient(135deg, var(--navy), #1e3a8a);
  color: white;
  border-radius: 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: white;
}

.cta p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

.page-title {
  padding: 70px 0 46px;
  background:
    radial-gradient(circle at 20% 0%, rgba(37,99,235,0.18), transparent 30%),
    linear-gradient(180deg, #f8fbff, white);
}

.breadcrumb {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
}

.brand-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.brand-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(16,35,63,0.06);
}

.brand-block.full {
  grid-column: 1 / -1;
}

.notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  border-radius: 18px;
  padding: 18px;
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
}

.contact-card,
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(16,35,63,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #cfd8e6;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.site-footer {
  background: #081426;
  color: white;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 30px;
  margin-bottom: 30px;
}

.site-footer h3 {
  color: white;
  font-size: 20px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.72);
}

.site-footer a:hover {
  color: white;
}

.footer-list {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.legal-copy p {
  color: #475467;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .brand-detail,
  .cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .navbar {
    height: auto;
    padding: 15px 0;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--red);
  font-weight: 750;
  font-size: 15px;
}

.logo-image-link {
  gap: 0;
}

.header-logo-img {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
  background: #1b1b1a;
}

@media (max-width: 720px) {
  .header-logo-img {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
  background: #1b1b1a;
}


.business-info {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: #475467;
}

.business-info a {
  color: var(--deep-blue);
  font-weight: 750;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  line-height: 1.35;
}

.footer-contact span,
.footer-contact a {
  display: block;
  width: 100%;
  color: rgba(255,255,255,0.78);
  overflow-wrap: anywhere;
}

.footer-contact a {
  color: rgba(255,255,255,0.88);
}

.footer-contact a:hover {
  color: white;
}

.contact-line {
  display: block;
}




/* Top navigation color update */
.nav-links a {
  color: var(--red);
  transition: color 0.18s ease, border-color 0.18s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}

.nav-links a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-links a[aria-current="page"] {
  color: white;
  border-bottom-color: white;
}
