:root {
  --maroon: #7a1f2b;
  --maroon-dark: #5e1620;
  --maroon-light: #9a2d3a;
  --text: #1f2937;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-gray: #f3f4f6;
  --border: #e5e7eb;
  --gold: #f4c430;
  --success: #10b981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--text); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============ HEADER ============ */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { height: 75px; width: auto; display: block; }
nav.main ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
nav.main a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
nav.main a:hover, nav.main a.active { color: var(--maroon); }
nav.main a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--maroon);
}

/* Services Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  min-width: 280px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--maroon);
  padding-left: 24px;
}
.nav-dropdown-menu a::after { display: none; }
.phone-btn {
  background: var(--maroon);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.phone-btn:hover { background: var(--maroon-dark); }
.hamburger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(15,17,22,0.92) 0%, rgba(15,17,22,0.85) 30%, rgba(15,17,22,0.55) 55%, rgba(15,17,22,0.25) 75%, rgba(15,17,22,0.1) 100%),
    url('/images/hero-truck.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 90px 0;
}
.hero .container {
  position: relative;
  z-index: 2;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  animation: heroFadeIn 1.2s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-truck { display: none; }
.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero .lead {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--maroon);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(122,31,43,0.25);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(122,31,43,0.35);
}
.hero-features {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-feat .ico {
  width: 28px; height: 28px;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-feat strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.hero-feat span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 28px;
  margin: -40px auto 0;
  max-width: 1100px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  line-height: 1.35;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}
.trust-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.trust-item .stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}
.trust-item span.sub { color: var(--text-muted); }

.google-logo {
  width: 36px; height: 36px;
  background: conic-gradient(from 0deg, #4285f4 0%, #4285f4 25%, #ea4335 25%, #ea4335 50%, #fbbc05 50%, #fbbc05 75%, #34a853 75%, #34a853 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  position: relative;
}
.google-logo::after {
  content: 'G';
  position: absolute;
  inset: 4px;
  background: #fff;
  color: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.yelp-badge {
  background: #d32323;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  font-style: italic;
  letter-spacing: -1px;
}

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.section-head p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ SERVICES ============ */
.services {
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--maroon);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.service-body {
  padding: 24px 22px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.service-card .learn-more {
  color: var(--maroon);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 10px; }
.service-card h3 a { color: #1a1a1a; text-decoration: none; transition: color 0.2s; }
.service-card h3 a:hover { color: var(--maroon); }
.service-image-link { display: block; }

.more-services {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.more-services h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}
.more-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.more-service-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  border-left: 3px solid transparent;
}
.more-service-link:hover {
  background: #fff;
  border-left-color: var(--maroon);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transform: translateX(2px);
}
.more-service-icon {
  color: var(--maroon);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.more-service-link:hover .more-service-icon { transform: translateX(3px); }
.more-service-link strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}
.more-service-link span:not(.more-service-icon) {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .more-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .more-services-grid { grid-template-columns: 1fr; }
}

/* ============ VEHICLES WE SHIP ============ */
.vehicles {
  position: relative;
  overflow: hidden;
  padding: 96px 0 100px;
  background:
    radial-gradient(120% 80% at 50% -10%, #ffffff 0%, #f9fafb 45%, #f1f2f4 100%);
  --v-navy: #0e2138;
  --v-maroon: #7c1722;
  --v-btn: #6f1620;
  --v-slate: #4f5a66;
}
/* faint background watermarks lifted from the source mockup */
.vehicles .v-bg { position: absolute; pointer-events: none; z-index: 0;
  background-repeat: no-repeat; background-size: contain; }
.v-bg-truck { left: 0; bottom: 0; width: clamp(300px, 42vw, 560px);
  aspect-ratio: 540 / 229; background-image: url('/images/vehicles/bg-truck.png');
  background-position: left bottom; opacity: .92; }
.v-bg-mtn { right: 0; bottom: 0; width: clamp(260px, 33vw, 500px);
  aspect-ratio: 482 / 251; background-image: url('/images/vehicles/bg-mountains.png');
  background-position: right bottom; opacity: .9; }
.v-bg-contour { left: 0; top: 0; width: clamp(220px, 25vw, 420px);
  aspect-ratio: 400 / 250; background-image: url('/images/vehicles/bg-contour.png');
  background-position: left top; opacity: .8; }
.vehicles .container { position: relative; z-index: 1; }

/* ---- heading block ---- */
.v-head { text-align: center; margin-bottom: 52px; }
.v-ornament { display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 22px; }
.v-orn-line { display: block; width: clamp(54px, 9vw, 96px); height: 1.5px; position: relative; }
.v-orn-left  { background: linear-gradient(90deg, rgba(122,31,43,0) 0%, var(--maroon) 100%); }
.v-orn-right { background: linear-gradient(90deg, var(--maroon) 0%, rgba(122,31,43,0) 100%); }
.v-orn-left::before, .v-orn-right::after {
  content: ''; position: absolute; top: 50%; width: 5px; height: 5px;
  background: var(--maroon); transform: translateY(-50%) rotate(45deg); border-radius: 1px; }
.v-orn-left::before { left: -2px; }
.v-orn-right::after { right: -2px; }
.v-orn-shield { color: var(--maroon); display: inline-flex; }
.v-orn-shield svg { width: 30px; height: 30px; display: block; }

.v-title { font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(32px, 4.8vw, 54px); line-height: 1.02; letter-spacing: 0.005em;
  text-transform: uppercase; margin: 0 0 18px; }
.v-title .t-navy { color: var(--v-navy); }
.v-title .t-maroon { color: var(--v-maroon); }
.v-rule-lg { display: block; width: 46px; height: 3px; border-radius: 2px;
  background: var(--maroon); margin: 0 auto 22px; }
.v-sub { color: var(--v-slate); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55;
  max-width: 640px; margin: 0 auto; }

/* ---- cards ---- */
.vehicles-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 22px;
  margin: 0 0 56px; align-items: stretch;
}
.vehicle-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border-radius: 16px; padding: 26px 14px 24px;
  border: 1px solid rgba(15,30,55,0.045);
  box-shadow: 0 14px 30px -12px rgba(20,30,55,0.16), 0 3px 10px rgba(0,0,0,0.04);
  transition: transform .28s ease, box-shadow .28s ease; cursor: pointer;
}
.vehicle-card:hover, .vehicle-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -14px rgba(122,31,43,0.28), 0 6px 16px rgba(0,0,0,0.06);
  outline: none;
}
.v-icon { display: block; }
.v-icon img { width: 88px; height: 88px; display: block; margin: 0 auto;
  transition: transform .28s ease; }
.vehicle-card:hover .v-icon img { transform: scale(1.05); }
.v-card-rule { display: block; width: 26px; height: 2.5px; border-radius: 2px;
  background: var(--maroon); margin: 18px auto 12px; }
.v-label { font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: clamp(14px, 1.15vw, 17px); color: var(--v-navy); line-height: 1.18; }
.v-label-two { max-width: 9ch; }
.v-arrow { display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; margin-top: 16px;
  border: 1.5px solid rgba(122,31,43,0.22); color: var(--maroon);
  transition: background .25s ease, color .25s ease, border-color .25s ease; }
.v-arrow svg { width: 15px; height: 15px; display: block; }
.vehicle-card:hover .v-arrow { background: var(--maroon); border-color: var(--maroon); color: #fff; }

/* ---- CTA row ---- */
.v-cta { display: flex; align-items: center; justify-content: center; gap: 18px; }
.v-cta-shield { display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--maroon);
  box-shadow: 0 8px 20px -6px rgba(20,30,55,0.22), 0 2px 6px rgba(0,0,0,0.05);
  flex-shrink: 0; }
.v-cta-shield svg { width: 26px; height: 26px; display: block; }
.v-cta-btn { display: inline-flex; align-items: center; gap: 14px;
  background: var(--v-btn); color: #fff; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 17px 30px; border-radius: 10px;
  box-shadow: 0 12px 26px -8px rgba(111,22,32,0.5); transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.v-cta-btn svg { width: 19px; height: 19px; display: block; transition: transform .2s ease; }
.v-cta-btn:hover { background: #5e1620; transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(111,22,32,0.55); }
.v-cta-btn:hover svg { transform: translateX(4px); }

/* ---- trust line ---- */
.v-trust { display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 26px; color: var(--text-muted); font-style: italic; font-size: 15px; }
.v-check { display: inline-flex; color: var(--maroon); }
.v-check svg { width: 17px; height: 17px; display: block; }

@media (max-width: 600px) {
  .v-cta { flex-direction: column; gap: 16px; }
  .v-cta-btn { width: 100%; max-width: 360px; justify-content: center; }
  .v-trust { text-align: center; }
}

/* ============ HOW IT WORKS ============ */
.how {
  background: var(--bg-soft);
}
.how .section-head h2 {
  position: relative;
  padding-bottom: 20px;
}
.how .section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--maroon);
  border-radius: 2px;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 60px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
/* Dotted connector lines between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 70px;
  left: calc(50% + 70px);
  right: calc(-50% + 70px);
  height: 2px;
  background-image: linear-gradient(to right, #c0c0c0 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}
.step-circle {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  z-index: 2;
}
.step-circle-bg {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.step-circle .step-icon {
  width: 56px;
  height: 56px;
  color: var(--maroon);
  margin: 0;
}
.step-num-badge {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--maroon);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  z-index: 3;
  border: 3px solid var(--bg-soft);
}
.step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* Trust strip at bottom of How It Works */
.how-trust-strip {
  background: #fff;
  border-radius: 8px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.how-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.how-trust-icon {
  width: 54px;
  height: 54px;
  background: #f5e6e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  flex-shrink: 0;
}
.how-trust-icon svg { width: 26px; height: 26px; }
.how-trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.how-trust-item span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============ COVERAGE ============ */
.coverage {
  background: #fff;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 70px;
  align-items: center;
}
.coverage-text .eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 14px;
}
.coverage-text .eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--maroon);
  border-radius: 2px;
}
.coverage-text h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.coverage-text h2 .accent { color: var(--maroon); }
.coverage-text > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 480px;
}
.routes-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.routes-icon {
  width: 48px;
  height: 48px;
  background: #f5e6e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  flex-shrink: 0;
}
.routes-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
.routes-text strong {
  color: var(--text);
  font-weight: 700;
}

/* US Map */
.us-map-wrap {
  background: transparent;
  border-radius: 16px;
  padding: 0;
  position: relative;
}
.us-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.map-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  padding-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.map-legend .item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-legend .dot-gold {
  width: 14px;
  height: 14px;
  background: #f4c430;
  border-radius: 50%;
  display: inline-block;
}
.map-legend .pin-icon {
  display: inline-flex;
  color: var(--maroon);
}

/* ============ WHY US ============ */
.why-us {
  background: linear-gradient(rgba(20,20,20,0.85), rgba(20,20,20,0.92)), #1a1a1a;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'><defs><linearGradient id='road' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23222'/><stop offset='1' stop-color='%23000'/></linearGradient></defs><rect width='1200' height='400' fill='url(%23road)'/><path d='M 0 380 L 1200 380 L 1200 400 L 0 400 Z' fill='%23111'/><g stroke='%23ffd700' stroke-width='4' stroke-dasharray='40,20' opacity='0.5'><line x1='0' y1='390' x2='1200' y2='390'/></g></svg>");
  background-size: cover;
  opacity: 0.4;
}
.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.why-grid h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.2;
}
.why-list {
  list-style: none;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 12px;
}
.why-list li::before {
  content: '✓';
  color: var(--maroon-light);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.testimonial-box {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  border-radius: 8px;
  text-align: center;
}
.testimonial-box .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-box blockquote {
  font-size: 15px;
  font-style: italic;
  color: #f3f4f6;
  margin-bottom: 14px;
  line-height: 1.55;
}
.testimonial-box cite {
  font-style: normal;
  font-size: 13px;
  color: #9ca3af;
}
.insured-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield {
  width: 180px;
  height: 220px;
  position: relative;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: #fff;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.test-card {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}
.test-card .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.test-card blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.test-card cite {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-card .avatar {
  width: 42px; height: 42px;
  background: var(--maroon);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.test-card .who strong {
  display: block;
  font-size: 14px;
  color: #1a1a1a;
}
.test-card .who span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ FAQ ============ */
.faq {
  background: var(--bg-soft);
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--maroon); }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--maroon);
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============ CTA ============ */
.cta {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 14px;
  font-weight: 700;
}
.cta p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta .btn-white {
  background: #fff;
  color: var(--maroon);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.cta .btn-white:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* ============ FOOTER ============ */
footer {
  background: #1a1a1a;
  color: #9ca3af;
  padding: 60px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand .foot-logo {
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 18px;
}
.foot-brand .foot-logo img { height: 80px; }
.foot-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.foot-col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col a {
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--maroon-light); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: #6b7280;
}
.foot-bottom .legal { display: flex; gap: 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles-row { grid-template-columns: repeat(4, 1fr); }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
  .step:not(:last-child)::after { display: none; }
  .how-trust-strip { grid-template-columns: 1fr 1fr; }
  .coverage-grid, .why-grid, .test-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item + .trust-item { border-left: none; padding-left: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  nav.main ul, .phone-btn span.txt { display: none; }
  .hamburger { display: flex; }
  section { padding: 50px 0; }
  .hero { min-height: auto; padding: 50px 0; }
  .hero-features { gap: 20px; }
  .services-grid, .test-grid { grid-template-columns: 1fr; }
  .vehicles-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; }
  .how-trust-strip { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; }
}
/* ============================================================
   SERVICE PAGE STYLES
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-soft);
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--maroon); }
.breadcrumb .sep { margin: 0 8px; color: #c0c0c0; }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* Page Hero (smaller than homepage hero) */
.page-hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; max-width: 1200px; }
.page-hero .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}
.page-hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 720px;
}
.page-hero .btn-primary {
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  margin-right: 12px;
}
.page-hero .btn-primary:hover {
  background: #ffd95c;
  color: #1a1a1a;
}
.page-hero .phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-left: 12px;
}

/* Page content - 2 column grid */
.page-content {
  padding: 70px 0;
  background: #fff;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: flex-start;
}

/* Article body */
.article-body { max-width: 760px; }
.article-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  margin: 18px 0 24px 22px;
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: #1a1a1a; font-weight: 700; }
.article-body a {
  color: var(--maroon);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(122, 31, 43, 0.3);
}
.article-body a:hover { text-decoration-color: var(--maroon); }

/* Feature cards / benefits grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.feature-card {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: 10px;
  border-left: 3px solid var(--maroon);
}
.feature-card .ico {
  font-size: 28px;
  margin-bottom: 10px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Callout box */
.callout-box {
  background: linear-gradient(135deg, #f5e6e8 0%, #fff 100%);
  border-left: 4px solid var(--maroon);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 8px;
}
.callout-box h3 {
  color: var(--maroon);
  margin-top: 0;
  font-size: 19px;
}
.callout-box p:last-child { margin-bottom: 0; }

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sidebar-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}
.sidebar-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.sidebar-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.sidebar-card .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.sidebar-card .btn-secondary:hover { background: var(--maroon); color: #fff; }

.related-services { list-style: none; padding: 0; margin: 0; }
.related-services li {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.related-services li:last-child { border-bottom: none; }
.related-services a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s;
}
.related-services a:hover {
  color: var(--maroon);
  padding-left: 6px;
}

/* FAQ Section on service pages */
.faq-section {
  background: var(--bg-soft);
  padding: 70px 0;
}
.faq-section h2 {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

/* Final CTA on service pages */
.final-cta {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 14px;
  font-weight: 700;
}
.final-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn-white {
  background: #fff;
  color: var(--maroon);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.final-cta .btn-white:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-hero { padding: 50px 0 60px; }
  .page-content { padding: 50px 0; }
  .article-body h2 { font-size: 24px; }
}

/* Wide 3-column dropdown for expanded services menu */
.nav-dropdown-wide {
  min-width: 720px !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.nav-dropdown-col {
  display: flex;
  flex-direction: column;
}
.nav-dropdown-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--maroon);
}
.nav-dropdown-col a {
  padding: 8px 0 !important;
  font-size: 13.5px !important;
  border-bottom: none !important;
  white-space: nowrap;
}
.nav-dropdown-col a:hover {
  background: transparent !important;
  color: var(--maroon) !important;
  padding-left: 4px !important;
}
@media (max-width: 900px) {
  .nav-dropdown-wide {
    min-width: auto !important;
    grid-template-columns: 1fr;
    left: auto !important;
    transform: none !important;
  }
}

/* ============================================================
   UTILITY PAGES (How It Works, About, FAQ, Contact, Blog)
   ============================================================ */

/* HOW IT WORKS - Steps Grid */
.how-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.how-step {
  display: flex;
  gap: 30px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.how-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.how-step-number {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

.how-step-content {
  flex: 1;
}

.how-step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.how-step-content p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #444;
}

.how-step-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .how-step {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .how-step-number {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

/* WHY HEARTLAND - Cards Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.why-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 880px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* FAQ PAGE - Navigation & Categories */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-nav-link {
  background: #fff;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.faq-nav-link:hover {
  background: var(--maroon);
  color: #fff;
}

.faq-cat-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--maroon);
  scroll-margin-top: 90px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 18px 24px;
  cursor: pointer;
}

.faq-item summary {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--maroon);
  font-weight: 700;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 14px 0 0;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.faq-item ul, .faq-item ol {
  margin: 14px 0 0 24px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.faq-item a { color: var(--maroon); }

/* CONTACT PAGE */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-method-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-method-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.contact-method-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.contact-method-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0;
}

@media (max-width: 880px) {
  .contact-methods-grid { grid-template-columns: 1fr; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}

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

.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(140, 24, 24, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-block {
  width: 100%;
  display: flex !important;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 20px; }
}

.contact-info-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  height: fit-content;
}

.contact-info-block {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-block:last-child { border-bottom: none; }
.contact-info-block:first-of-type { padding-top: 8px; }

.contact-info-block h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-block p {
  margin: 4px 0;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.contact-info-block a {
  color: var(--maroon);
  font-weight: 600;
  text-decoration: none;
}

.contact-info-block a:hover { text-decoration: underline; }

/* ALABAMA CITIES GRID */
.al-cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.al-city {
  background: var(--bg-soft);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: background 0.2s, border-color 0.2s;
}

.al-city:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

@media (max-width: 880px) {
  .al-cities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .al-cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.blog-card-image {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.blog-card-category {
  background: rgba(255, 255, 255, 0.95);
  color: var(--maroon);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
}

.blog-card-content h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-content h3 a:hover { color: var(--maroon); }

.blog-card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.blog-card-link {
  color: var(--maroon);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  margin-top: auto;
}

.blog-card-link:hover { text-decoration: underline; }

@media (max-width: 880px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Active nav state */
nav.main ul li a.active {
  color: var(--maroon);
}

nav.main ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--maroon);
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.how-section {
  padding: 70px 0;
  background: #fff;
}
.how-section.alt { background: var(--bg-soft); }
.how-section .section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.how-section .section-head h2 { font-size: clamp(28px, 3.5vw, 38px); }

.how-steps-grid {
  display: grid;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.how-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.25s;
}
.how-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.how-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.how-step-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 8px;
  font-size: 15.5px;
}

/* Why Heartland grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-top: 3px solid var(--maroon);
}
.why-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  margin-bottom: 14px;
  font-size: 22px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.why-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
  max-width: 1000px;
  padding: 50px 0;
}
.contact-method-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.contact-method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--maroon);
}
.contact-method-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}
.contact-method-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a1a1a;
}
.contact-method-card a {
  display: block;
  color: var(--maroon);
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  text-decoration: none;
}
.contact-method-card a:hover { color: var(--maroon-dark); }
.contact-method-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 6px 0;
  line-height: 1.5;
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg-soft);
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form {
  background: #fff;
  padding: 36px 36px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.contact-form h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a1a1a;
}
.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 14.5px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14.5px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--maroon);
}
.form-field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Contact info sidebar */
.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.contact-info-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
}
.contact-info-block h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 12px;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
  margin: 4px 0;
  text-decoration: none;
}
.contact-info-block a:hover { color: var(--maroon); }

/* Alabama cities grid */
.al-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 28px;
  max-width: 900px;
  margin: 30px auto 0;
}
.al-city {
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 60px 0;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.blog-card-image svg { width: 56px; height: 56px; opacity: 0.85; }
.blog-card-image.var-2 { background: linear-gradient(135deg, #b8860b 0%, #8b6508 100%); }
.blog-card-image.var-3 { background: linear-gradient(135deg, #1e3a5f 0%, #0f2238 100%); }
.blog-card-image.var-4 { background: linear-gradient(135deg, #3d6b3a 0%, #244020 100%); }
.blog-card-image.var-5 { background: linear-gradient(135deg, #7a1f2b 0%, #4a0f18 100%); }
.blog-card-image.var-6 { background: linear-gradient(135deg, #20445f 0%, #102438 100%); }
.blog-card-content {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.blog-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.blog-card-meta {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-card-link {
  color: var(--maroon);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.blog-card-link:hover { color: var(--maroon-dark); }

/* Blog post layout (single post page) */
.blog-post {
  padding: 60px 0;
  background: #fff;
}
.blog-post-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.blog-post-meta .cat {
  display: inline-block;
  background: var(--maroon);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 10px;
}
.blog-post h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.blog-post .lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 26px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-methods-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .al-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE AREAS / CITIES GRID (homepage)
   ============================================================ */
.service-areas {
  padding: 70px 0;
  background: var(--bg-soft);
}
.service-areas .section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 12px;
}
.service-areas .section-head p {
  color: var(--text-muted);
  font-size: 17px;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.city-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  text-align: left;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.city-tile:hover {
  border-color: var(--maroon);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 31, 43, 0.12);
}
.city-name {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 15px;
}
.city-tile:hover .city-name {
  color: var(--maroon);
}
.city-pop {
  font-size: 12.5px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   CITY PAGE — Routes list
   ============================================================ */
.routes-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}
.routes-list li {
  padding: 10px 16px;
  background: var(--bg-soft);
  border-left: 3px solid var(--maroon);
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 900px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* Service page — bullet list of services offered */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.service-bullets li {
  position: relative;
  padding: 10px 16px 10px 32px;
  background: var(--bg-soft);
  border-left: 3px solid var(--maroon);
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
}
.service-bullets li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 10px;
  color: var(--maroon);
  font-weight: 700;
  font-size: 14px;
}

/* ============================================================
   SERVICES TABS GRID (homepage)
   ============================================================ */
.service-categories {
  padding: 60px 0;
  background: #fff;
}
.service-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.service-cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.service-cat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--maroon);
  padding-bottom: 10px;
}
.service-cat-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-cat-card li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 14.5px;
}
.service-cat-card li:last-child { border-bottom: 0; }
.service-cat-card li a {
  color: var(--text);
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.service-cat-card li a:hover { color: var(--maroon); }

@media (max-width: 900px) {
  .service-cat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE NAV / HAMBURGER MENU
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 880px) {
  .hamburger { display: flex; }
  
  /* Hide desktop nav and shrink phone btn */
  nav.main {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--maroon);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: none;
    z-index: 1000;
  }
  
  nav.main ul.mobile-open,
  nav.main:has(ul.mobile-open) {
    display: block;
  }
  
  nav.main ul {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 8px 0 !important;
    display: none;
  }
  
  nav.main ul.mobile-open {
    display: flex !important;
  }
  
  nav.main ul li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }
  nav.main ul li:last-child { border-bottom: 0; }
  
  nav.main ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
  }
  
  nav.main ul li a:hover,
  nav.main ul li a.active {
    background: var(--bg-soft);
    color: var(--maroon);
  }
  
  /* Dropdown handling on mobile */
  .nav-dropdown-wide,
  .nav-dropdown {
    position: static !important;
    box-shadow: none !important;
    border-top: 1px solid #f1f1f1;
    border-bottom: none;
    background: var(--bg-soft);
    display: none;
    padding: 8px 0 !important;
  }
  
  /* Header position needed for absolute nav */
  header { position: relative; }
  .nav { position: relative; }
  
  /* Trim phone btn text on mobile, just show icon + number */
  .phone-btn { padding: 10px 14px; gap: 6px; }
  .phone-btn .txt { font-size: 13px; }
  
  /* Trim hero a bit */
  .page-hero { padding: 50px 0; }
  .page-hero h1 { font-size: clamp(26px, 5vw, 34px); }
}

@media (max-width: 480px) {
  .nav { padding: 14px 16px; gap: 8px; }
  .logo { height: 58px; }
  .phone-btn .txt { display: none; }
  .phone-btn { padding: 10px 12px; }
  .hamburger { padding: 8px; }
}

/* Hide phone-btn arrow/icon styling tweaks for mobile */
@media (max-width: 880px) {
  /* Hero CTAs stack on mobile */
  .page-hero > .container > div[style*="display: flex"] {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero .btn-primary, .page-hero .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   CONTACT PAGE HERO (was missing styles)
   ============================================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
}
.contact-hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #f4c430;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.contact-hero .lead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .contact-hero { padding: 50px 0 40px; }
  .contact-hero h1 { font-size: 26px; }
  .contact-hero .lead { font-size: 15px; padding: 0 8px; }
}

/* ============================================================
   HERO TWO-COLUMN LAYOUT WITH QUOTE WIDGET
   ============================================================ */
.hero-layout {
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 54fr 46fr;
    gap: 36px;
  }
}
@media (max-width: 880px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   CITY PAGE HERO WITH INSTANT QUOTE WIDGET
   ============================================================ */
.page-hero-with-quote {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(122, 31, 43, 0.75) 0%, rgba(74, 15, 24, 0.85) 100%),
    url('/images/hero-truck.jpg') center center / cover no-repeat;
  background-attachment: scroll;
}

/* Subtle texture overlay to add depth */
.page-hero-with-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(244, 196, 48, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-with-quote .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

/* Gold-accented city name in H1 (matches homepage style) */
.page-hero-content h1 .city-accent {
  color: #f4c430;
  display: inline-block;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: 50px;
  align-items: center;
}

.page-hero-content .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #f4c430;
}

.page-hero-content h1 {
  color: #fff;
  margin-bottom: 18px;
}

.page-hero-content .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  margin-bottom: 24px;
  line-height: 1.55;
}

.page-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero-with-quote .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.page-hero-with-quote .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 1024px) {
  .page-hero-layout {
    grid-template-columns: 54fr 46fr;
    gap: 36px;
  }
}

@media (max-width: 880px) {
  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .page-hero-with-quote {
    padding: 50px 0 60px;
  }
  
  .page-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .page-hero-cta .btn-primary,
  .page-hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* ============================================================
   CITY PAGE HERO FEATURE PILLS
   ============================================================ */
.page-hero-features {
  display: flex;
  gap: 28px;
  margin: 28px 0 28px;
  flex-wrap: wrap;
}

.phf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.phf-item .ico {
  width: 28px;
  height: 28px;
  color: #f4c430;
  flex-shrink: 0;
}

.phf-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.phf-item span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

/* Improve button on hero */
.page-hero-with-quote .btn-primary {
  background: #f4c430;
  color: #1a1a1a;
  border: 0;
  font-weight: 800;
  padding: 14px 28px;
}

.page-hero-with-quote .btn-primary:hover {
  background: #ffd344;
  transform: translateY(-1px);
}

.page-hero-with-quote .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 12px 26px;
  font-weight: 600;
}

.page-hero-with-quote .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

@media (max-width: 880px) {
  .page-hero-features {
    gap: 18px;
    margin: 24px 0 22px;
  }
  
  .phf-item strong { font-size: 14px; }
  .phf-item span { font-size: 12.5px; }
  
  .page-hero-with-quote {
    padding: 50px 0 60px;
  }
}

@media (max-width: 480px) {
  .page-hero-features {
    flex-direction: column;
    gap: 14px;
  }
}
/* Fix eyebrow styling inside page-hero-with-quote */
.page-hero-with-quote .eyebrow {
  display: inline-block;
  background: rgba(244, 196, 48, 0.15);
  color: #f4c430;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(244, 196, 48, 0.3);
}

/* H1 accent span (used on about, how-it-works, etc.) */
.page-hero-with-quote h1 .accent {
  color: #f4c430;
  display: inline;
}

/* ============================================================
   EMBEDDED GOOGLE MAPS (city pages — Local Office sidebar)
   ============================================================ */
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: 4px;
}
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

@media (max-width: 1024px) {
  .map-embed { padding-bottom: 70%; }
}

/* ============================================================
   QUOTE IFRAME SIZING (bare iframe, no wrapper)
   ============================================================ */
#quote {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  background: #fff;
}

@media (max-width: 880px) {
  #quote {
    height: 660px;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  #quote {
    height: 680px;
  }
}

/* ============================================================
   MOBILE ONLY (<=880px) — surface the instant-quote tool directly
   beneath the H1 on every page so visitors can request pricing the
   moment they land. Desktop layout (>880px) is unchanged.
   Technique: dissolve the text-column wrapper with display:contents
   so the H1, the iframe and the supporting copy become siblings in
   a single flex column, then sequence them with `order`.
   ============================================================ */
@media (max-width: 880px) {
  .hero-content,
  .page-hero-content { display: contents; }

  .hero-layout,
  .page-hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  /* order: eyebrow -> H1 -> PRICE TOOL -> lead -> features -> CTAs */
  .page-hero-content .eyebrow { order: 1; align-self: flex-start; margin: 0; }
  .hero-content h1,
  .page-hero-content h1 { order: 2; margin: 0; }
  #quote { order: 3; }
  .hero-content .lead,
  .page-hero-content .lead { order: 4; margin: 0; }
  .hero-features,
  .page-hero-features { order: 5; margin: 0; }
  .page-hero-cta { order: 6; margin: 0; }
}
