:root {
  --orange: #FF6B00;
  --navy: #0A2342;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --slate: #64748B;
  --navy-tint: #E6EBF0;
  --shadow: 0 10px 30px rgba(10, 35, 66, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 800; margin: 0 0 12px; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { color: var(--slate); margin: 0 0 16px; }

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin: 0 0 8px;
}

.text-orange { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  border: 2px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--navy); }

.btn-navy-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-navy-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--orange);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--navy-tint);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.logo {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 92px;
  width: auto;
  display: block;
}
.logo-navy { color: var(--navy); }
.logo-navy-inv { color: var(--white); }
.logo-orange { color: var(--orange); }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.phone-link:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
  padding: 72px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero-sub { font-size: 1.08rem; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.hero-badge { display: flex; justify-content: center; }
.van-badge {
  background: var(--white);
  border: 1px solid var(--navy-tint);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
  width: 100%;
  max-width: 340px;
}
.van-icon { width: 100%; height: auto; }
.van-badge-label {
  display: block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Features ---------- */
.features { padding: 56px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--gray-light);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.icon-circle svg { width: 26px; height: 26px; }
.feature-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Services ---------- */
.services { padding: 64px 0; background: var(--white); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-row {
  padding: 24px;
  border: 1px solid var(--navy-tint);
  border-radius: 12px;
}
.service-row p { margin: 0; }

/* ---------- Coverage ---------- */
.coverage { padding: 64px 0; background: var(--gray-light); }
.coverage-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}
.coverage-copy { max-width: 520px; }
.coverage-list { list-style: none; padding: 0; margin: 20px 0 0; }
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.check {
  color: var(--white);
  background: var(--orange);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.coverage-compass { display: flex; justify-content: center; }
.coverage-compass svg { width: 100%; max-width: 220px; height: auto; }

/* ---------- Fleet ---------- */
.fleet { padding: 64px 0; background: var(--white); }
.fleet-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.fleet-svg { width: 100%; height: auto; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  padding: 56px 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 22px; }
.cta-inner .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--navy-tint); padding: 48px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { display: block; margin-bottom: 10px; }
.footer-tag { color: var(--navy-tint); max-width: 380px; margin: 0; }
.footer-contact p { color: var(--navy-tint); margin: 0 0 8px; }
.footer-contact a { color: var(--white); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-bottom p { color: var(--slate); font-size: 0.85rem; margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .coverage-inner, .fleet-inner, .footer-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .hero-badge, .fleet-visual { order: -1; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--navy-tint);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 260px; }
  .main-nav a {
    padding: 14px 24px;
    border-top: 1px solid var(--navy-tint);
  }
  .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn { text-align: center; }
}
