/* ══════════════════════════════════════════════════════════════════
   AHTC Inc. — Armen Hovanessian Transportation Consulting
   style.css
════════════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
	--red:        #b22222;
	--red-dark:   #8b0000;
	--red-light:  #d64242;
	--green:        #24ad1a;
	--green-dark:   #155e10;
	--green-light:  #90ee90;
	--yellow:       #FFD700;
	--yellow-dark:  #B8860B;
	--yellow-light: #FFFFE0;
	--dark:       #111112;
	--dark-2:     #1a1a1c;
	--mid:        #2a2a2e;
	--cream:      #f5f3ef;
	--off-white:  #fafaf8;
	--white:    #ffffff;
	--ink:      #080c12;
	--text:       #2c2c2e;
	--muted:      #6b6b70;
	--border:     #e4e2de;
	--font-head:  'Bebas Neue', sans-serif;
	--font-cond:  'Barlow Condensed', sans-serif;
	--font-body:  'Barlow', sans-serif;
	--radius:     4px;
	--radius-lg:  12px;
	--shadow:     0 12px 48px rgba(0,0,0,.12);
	--shadow-red: 0 8px 32px rgba(178,34,34,.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html, body {
  overflow-x: hidden;
}
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Top Utility Bar ── */
#topbar {
  position: fixed;
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--red);
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight:bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-wrap {
  flex: 1;                        /* takes remaining space left of topbar-right */
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: flex;                  /* ← was inline-block with animation */
  align-items: center;
  gap: 44px;
  padding-left: 2rem;
  /* animation removed */
}

.ticker-inner span { opacity: 0.92; }
.ticker-inner i { margin-right: 7px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.topbar-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  display: flex; align-items: center; gap: 18px;
  padding: 0 22px;
  background: linear-gradient(to right, var(--yellow-dark) 28%);
}
.topbar-phone {
  font-family: var(--mono); font-weight: 700; font-size: 12.5px;
  color: var(--white); letter-spacing: 1px;
}
.btn-top-proposal {
  background: var(--ink); color: var(--white);
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 14px; border: none; cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-top-proposal:hover { background: var(--white); color: var(--ink); }
/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
	top: 37px;
	background: var(--dark);
	padding: .7rem 0;
	box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.navbar.scrolled {
  background: var(--dark);
  padding: .7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

/* Brand */
.brand-wrap { display: flex; align-items: center; gap: .75rem; }
.brand-logo-box {
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.15rem;
  padding: .35rem .55rem;
  line-height: 1;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}
.brand-logo-box.small { font-size: .95rem; padding: .28rem .45rem; }
.brand-tc { color: rgba(255,255,255,.6); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand-sub { font-size: .62rem; color: #fff; letter-spacing: .12em; text-transform: uppercase; }
.brand-logo-box {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;        /* remove old padding */
    background: none;  /* remove if any background was set */
}
.brand-logo-box.small {
    padding: 0;
}
/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff !important;
  padding: .45rem .75rem !important;
  transition: color .2s;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .75rem; right: .75rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .25s;
}
.navbar-nav .nav-link:hover { color: #fff !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

/* Proposal button */
.btn-proposal {
  background: var(--green);
  color: #fff !important;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.btn-proposal:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Toggler */
.navbar-toggler { border: none; background: transparent; padding: .4rem; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.toggler-icon span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
/* ── Dropdown Toggle ── */
.nav-item.dropdown .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hide Bootstrap's default caret */
.nav-item.dropdown .nav-link.dropdown-toggle::after {
  display: none;
}

/* Custom FA arrow — sits right after text, not at bottom */
.nav-item.dropdown .nav-link.dropdown-toggle .drop-arrow {
  font-size: .65rem;
  opacity: .75;
  transition: transform .25s;
  line-height: 1;
}
.nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"] .drop-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Keep underline hover only on non-dropdown links */
.nav-item:not(.dropdown) .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .75rem; right: .75rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-item:not(.dropdown) .nav-link:hover::after {
  transform: scaleX(1);
}

/* ── Dropdown Menu ── */
.dropdown-menu {
  background: var(--dark);
  border: none;
  border-top: 2px solid var(--green);
  border-radius: 0 0 6px 6px;
  padding: 6px 0;
  margin-top: 0 !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
}

/* Scrollbar styling */
.dropdown-menu::-webkit-scrollbar {
  width: 4px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 4px;
}

/* ── Dropdown Items ── */
.dropdown-item {
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 18px;
  border-left: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s, padding-left .2s;
  white-space: normal;
  line-height: 1.3;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(255,255,255,.06);
  color: #fff;
  padding-left: 22px;
  border-left-color: var(--green);
}
.dropdown-item:active {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ── Divider ── */
.dropdown-divider {
  border-color: rgba(255,255,255,.08);
  margin: 4px 0;
}
/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100vh; /* subtract navbar height */
  min-height: 600px;
  margin-top: 85px; /* push whole banner down */
  overflow: hidden;
}

.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s ease;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,10,12,.85) 0%,
    rgba(10,10,12,.55) 55%,
    rgba(10,10,12,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(178,34,34,.4);
  padding: .35rem .85rem;
  margin-bottom: 1.4rem;
  width: fit-content;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2vw, 7.5rem);
  line-height: 1.2;
  color: #fff;
  letter-spacing: .03em;
  margin-bottom: 1.5rem;
}
.hero-accent { color: var(--yellow); }

.hero-content p {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem) !important;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--green);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: var(--shadow-red);
}
.btn-hero-primary:hover { background: var(--green-dark); transform: translateY(-2px); color: #fff; }

.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: var(--radius);
  transition: border-color .25s, background .25s;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 10;
}
.hero-prev, .hero-next {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  transition: background .2s;
}
.hero-prev:hover, .hero-next:hover { background: var(--green); border-color: var(--green); }
.hero-dots { display: flex; gap: .5rem; align-items: center; }
.hero-dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.hero-dot.active { background: var(--green-light); width: 44px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 10;
}
.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-family: var(--font-cond);
  font-size: .62rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.5);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  padding: 2.5rem 0;
}
.stats-row { border-left: 4px solid var(--green); }
.stat-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1;
  letter-spacing: .03em;
}
.stat-num span { color: var(--green-light); }
.stat-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .4rem;
}

/* ══════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.section-eyebrow.light { color: rgba(255,255,255,.55); }
.section-eyebrow.light::before { background: rgba(255,255,255,.35); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 3vw, 4.8rem);
  line-height: .95;
  letter-spacing: .03em;
  margin-bottom: 1.2rem;
}
.section-title.dark { color: var(--dark); }
.text-accent { color: var(--yellow-dark); }

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-section {
  padding: 7rem 0;
  background: var(--cream);
}

.about-img-main {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 500px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.about-img-wrap {
  position: relative;
  padding-bottom: 1rem;  /* Reduced from 3rem */
  padding-right: 3rem;
}

.about-badge {
  position: absolute;
  bottom: 1rem;          /* Adjusted */
  left: -1rem;
  background: var(--dark);
  color: #fff;
  padding: .9rem 1.3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 3;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 65%;
  height: 65%;
  background: var(--green);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: .18;
}
.about-badge i { color: var(--green-light); font-size: 1.1rem; }

.about-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--green-dark);
  border-left: 4px solid var(--green);
  padding: .8rem 1.4rem;
  margin: 1.5rem 0;
  background: rgba(178,34,34,.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-text {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-pillars { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .6rem; }
.pillar {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--text);
}
.pillar i { color: var(--green); font-size: .9rem; }

.ceo-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  margin-top: 2rem;
}
.ceo-img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--green);
  flex-shrink: 0;
}
.ceo-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.ceo-title {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  margin-top: .15rem;
  font-style: italic;
}
.ceo-sig { margin-left: auto; color: rgba(255,255,255,.2); font-size: 1.4rem; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section {
  padding: 7rem 0;
  background: var(--off-white);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.btn-view-all:hover { background: var(--green); color: #fff; }

/* Services Grid — 2 per row */
.services-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }

.svc-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  border-color: rgba(178,34,34,.25);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(0,0,0,.06);
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  letter-spacing: .02em;
  transition: color .3s;
  user-select: none;
}
.svc-card:hover .svc-card-num { color: var(--white); }

.svc-card-icon {
  width: 44px; height: 44px;
  background: rgba(178,34,34,.08);
  color: var(--green);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: background .3s;
  flex-shrink: 0;
}
.svc-card:hover .svc-card-icon { background: var(--green); color: #fff; }

.svc-card-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .75rem;
  line-height: 1.25;
}

.svc-card-desc {
  font-size: .9rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.svc-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.svc-card-tags span {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .2rem .6rem;
  border-radius: 99px;
  transition: color .2s, border-color .2s;
}
.svc-card:hover .svc-card-tags span { color: var(--green); border-color: rgba(178,34,34,.3); }

.svc-card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    height: 32px;
    padding: 0 .85rem;          /* width auto from padding */
    background: var(--green);
    border-radius: 20px;        /* pill instead of circle */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    transition: background .25s, color .25s, transform .25s;
    white-space: nowrap;
}
.svc-card:hover .svc-card-arrow {
    background: var(--green-dark);
    color: #fff;
    transform: translate(3px, -3px);
}
.svc-card {
  flex-direction: row;
  align-items: center;
  padding: 0;
}
.svc-card-num {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto;
  font-size: .72rem;
  line-height: 1;
  color: #fff;
  background: var(--green);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  z-index: 3;
}
.svc-card-img {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  margin: 1rem;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.svc-card-body {
  flex: 1;
  padding: 1.2rem 3rem 1.2rem 0.5rem;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════════════
   COVERAGE
══════════════════════════════════════ */
.coverage-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.coverage-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1600&auto=format&fit=crop') center/cover no-repeat;
  filter: brightness(.22);
}

.states-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.state-chip {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .65rem 1.3rem;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
  border-radius: var(--radius);
  transition: all .25s;
  cursor: default;
}
.state-chip:hover, .state-chip.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.states-note {
  font-size: .8rem;
  color: #fff;
  letter-spacing: .08em;
  font-style: italic;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section {
  padding: 7rem 0;
  background: var(--cream);
}
.contact-card-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Info Panel */
.contact-info-panel {
  background: var(--dark);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-info-panel::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(178,34,34,.25) 0%, transparent 70%);
}

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: .95;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: .03em;
}
.contact-intro {
  color: #fff;
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-info-items { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.cii-icon {
  width: 38px; height: 38px;
  background: var(--green-dark);
  border: 1px solid rgba(178,34,34,.3);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.cii-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .3rem;
}
.cii-val { font-size: .92rem; color: rgba(255,255,255,.8); line-height: 1.55; }
.cii-highlight {
  color: var(--yellow) !important;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.1rem !important;
  letter-spacing: .04em;
  transition: color .2s;
  display: block;
}
.cii-highlight:hover { color: #fff !important; }

.closed-badge {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .1em;
  background: rgba(178,34,34,.25);
  color: var(--green-light);
  padding: .1rem .5rem;
  border-radius: 99px;
  text-transform: uppercase;
}

/* Form Panel */
.contact-form-panel { padding: 3.5rem 2.5rem; }
.form-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.8rem;
}
.form-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
  display: block;
}
.custom-input {
  background: var(--cream) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: .75rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: .92rem !important;
  color: var(--text) !important;
  transition: border-color .2s, box-shadow .2s !important;
  box-shadow: none !important;
}
.custom-input:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(178,34,34,.1) !important;
  outline: none;
}
.custom-input::placeholder { color: #aaa !important; }

.btn-submit-form {
  background: var(--green);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  border: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-red);
  width: 100%;
}
.btn-submit-form:hover { background: var(--green-dark); transform: translateY(-2px);color: #fff; }
.contact-map-section {
  padding-top: 20px; /* breathing room below navbar */
}

#coverage-map {
  width: 100%;
  height: 520px; /* taller to show all states */
  border-radius: inherit;
}
.leaflet-container img {
  max-width: none !important;
  height: auto !important;
}

.leaflet-tile {
  max-width: none !important;
  width: 256px !important;
  height: 256px !important;
}
/*-------------------------------
Leadership Section
---------------------------------*/
.leadership-section {
  padding: 60px 0 60px 0;
  background: #f7f8fa;
}

.zz-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 0;
}

.zz-img-wrap {
  position: relative;
  flex: 0 0 300px;
  width: 300px;
  padding-bottom: 20px;
}

.zz-img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  display: block;
}

.zz-img-badge {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}

.zz-content {
  flex: 1;
}

.zz-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(192,57,43,0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.zz-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 18px;
  line-height: 1.2;
}

.zz-text {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

.zz-stats {
  display: flex;
  gap: 32px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.zz-stat {
  display: flex;
  flex-direction: column;
}

.zz-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.zz-stat-label {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.zz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.2s, transform 0.2s;
}

.zz-btn:hover {
  background: #a93226;
  color: #fff;
  transform: translateY(-2px);
}
.prefooter-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.prefooter-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: rgba(192, 57, 43, 0.12);
    border-radius: 50%;
    pointer-events: none;
}
.prefooter-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}
.prefooter-content { flex: 1; }
.prefooter-heading {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
    line-height: 1.3;
    letter-spacing: .3px;
}
.prefooter-text {
    color: #fff;
    font-size: .98rem;
    line-height: 1.75;
    margin: 0;
    max-width: 780px;
}
.prefooter-cta { flex-shrink: 0; }
.btn-prefooter {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green);
    color: #fff !important;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid var(--green);
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn-prefooter:hover {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
  .leadership-section {
    padding: 50px 0 40px 0;
  }
  .zz-row {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .zz-img-wrap {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;  /* ADD THIS */
    align-items: center;     /* REPLACE justify-content: center */
    padding-bottom: 0;       /* REMOVE bottom padding, gap handles it */
    gap: 16px;               /* ADD THIS for spacing between image and CEO message */
  }
  .zz-img {
    width: 260px;
    height: 347px;
  }
  .zz-stats {
    gap: 20px;
  }
  .zz-stat-num {
    font-size: 1.5rem;
  }
  .prefooter-inner {
    flex-direction: column;
    text-align: center;
  }
  .prefooter-text { max-width: 100%; }
  .btn-prefooter { width: 100%; justify-content: center; }
  #topbar {
    position: relative;        /* ← removes fixed, scrolls away naturally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    gap: 6px;
    overflow: visible;
  }

  /* Show ticker text on mobile too */
  .ticker-wrap {
    display: block;
    width: 100%;
    text-align: center;
    overflow: visible;         /* ← was hidden, causing clip */
    white-space: normal;
    padding: 0;
  }

  .ticker-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    animation: none;           /* stop scrolling on mobile */
  }

  .topbar-right {
    position: static;          /* remove absolute */
    background: none;          /* remove gradient */
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0;
    width: 100%;
  }

  .topbar-phone {
    text-align: center;
    display: block;
  }

  .btn-top-proposal {
    display: block;            /* show button */
    text-align: center;
    width: auto;
  }

  /* ── Navbar: fix fixed-position offset ──
     #topbar switches to position:relative on mobile (scrolls with page),
     so the navbar must sit at top:0 instead of the desktop top:37px,
     otherwise it floats mid-page leaving a large gap below the topbar. */
  #mainNav.navbar {
    top: 0;
    padding: .55rem 0;
  }

  /* Hero section only needs to clear the fixed navbar now (topbar is in-flow above it) */
  .hero-section {
    margin-top: 64px;
    height: calc(100vh - 64px);
    min-height: 420px;
  }

  /* Brand sizing so logo + text never overflow on small screens */
  .brand-logo-box img { max-height: 38px !important; }
  .brand-name { font-size: 1.15rem; }
  .brand-sub { font-size: .56rem; }

  /* Collapsed mobile menu panel */
  .navbar-collapse {
    background: var(--dark);
    margin-top: .7rem;
    padding: .5rem 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
  }
  .navbar-nav { gap: 0 !important; }
  .navbar-nav .nav-link {
    padding: .7rem .25rem !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .navbar-nav .nav-link::after { display: none; }
  .nav-item.dropdown .nav-link.dropdown-toggle {
    justify-content: space-between;
  }
  .btn-proposal {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: .75rem;
    justify-content: center;
  }
  .nav-item.ms-lg-3 { margin-left: 0 !important; }
}

@media (max-width: 480px) {
  #mainNav.navbar { top: 0; padding: .45rem 0; }
  .hero-section { margin-top: 58px; height: calc(100vh - 58px); }
  .brand-logo-box img { max-height: 32px !important; }
  .brand-name { font-size: 1rem; }
}
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--green, var(--green-dark));
    color: #fff;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s, visibility .3s, transform .3s, background .2s;
    box-shadow: 0 4px 16px rgba(192, 57, 43, .35);
}
#scrollTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollTop:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, .45);
}

/* ══════════════════════════════════════
   Proposal Modal
══════════════════════════════════════*/
#proposalBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, .72);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
#proposalBackdrop.open {
    opacity: 1;
    visibility: visible;
}
 
/* ── Modal box ────────────────────────────────────────────────────────────── */
#proposalModal {
    background: #fff;
    width: 100%;
    max-width: 720px;
    max-height: 92vh;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(24px) scale(.97);
    transition: transform .3s;
    box-shadow: 0 24px 64px rgba(0,0,0,.28);
}
#proposalBackdrop.open #proposalModal {
    transform: translateY(0) scale(1);
}
 
/* ── Header ───────────────────────────────────────────────────────────────── */
.pm-header {
    background: var(--green-dark);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.pm-header-left { display: flex; align-items: center; gap: 1rem; }
.pm-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,.18);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}
.pm-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}
.pm-header p {
    font-size: .78rem;
    color: var(--white);
    margin: 2px 0 0;
}
.pm-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px; height: 34px;
    border-radius: 6px;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.pm-close:hover { background: rgba(255,255,255,.28); }
 
/* ── Body ─────────────────────────────────────────────────────────────────── */
.pm-body {
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
 
/* ── Form grid ────────────────────────────────────────────────────────────── */
.pm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1rem;
    margin-bottom: .75rem;
}
.pm-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.pm-field-full { margin-bottom: .75rem; }
.pm-field label, .pm-field-full label {
    font-size: .78rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.pm-req { color: var(--green); }
.pm-field input,
.pm-field select,
.pm-field-full textarea {
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: .6rem .85rem;
    font-size: .9rem;
    color: #1a1a1a;
    background: #fafafa;
    transition: border-color .2s, background .2s;
    width: 100%;
    font-family: 'Barlow', sans-serif;
}
.pm-field input:focus,
.pm-field select:focus,
.pm-field-full textarea:focus {
    outline: none;
    border-color: var(--green);
    background: #fff;
}
.pm-field-full textarea { resize: vertical; min-height: 90px; }
.pm-err {
    font-size: .73rem;
    color: var(--red);
    min-height: 14px;
    display: block;
}
 
/* ── Captcha ──────────────────────────────────────────────────────────────── */
.pm-captcha {
    background: #f7f7f7;
    border: 1.5px solid #ececec;
    border-radius: 8px;
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.pm-captcha-question {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: #555;
    flex: 1;
    min-width: 160px;
}
.pm-captcha-question i { color: var(--green); }
.pm-captcha input {
    width: 90px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: .5rem .75rem;
    font-size: .9rem;
    text-align: center;
    background: #fff;
}
.pm-captcha input:focus { outline: none; border-color: var(--green); }
 
/* ── Footer ───────────────────────────────────────────────────────────────── */
.pm-footer { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.pm-submit {
    background: var(--green-dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .85rem 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex; align-items: center; gap: .6rem;
    transition: background .2s, transform .15s;
}
.pm-submit:hover { background: var(--green); transform: translateY(-1px); }
.pm-submit:active { transform: scale(.98); }
.pm-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.pm-privacy {
    font-size: .75rem;
    color: #999;
    margin: 0;
    display: flex; align-items: center; gap: .35rem;
}
.pm-privacy i { color: var(--green); font-size: .7rem; }
 
/* ── Success state ────────────────────────────────────────────────────────── */
.pm-success {
    background: #eafaf1;
    border: 1.5px solid #27ae60;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .4rem;
    margin-bottom: 1rem;
}
.pm-success i { color: #27ae60; font-size: 2rem; }
.pm-success strong { font-size: 1rem; color: #1a5c35; }
.pm-success span { font-size: .85rem; color: #2e7d32; }
 
/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 580px) {
    .pm-row { grid-template-columns: 1fr; }
    .pm-footer { flex-direction: column; align-items: flex-start; }
    .pm-submit { width: 100%; justify-content: center; }
}
/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--dark-2);
  padding: 5rem 0 0;
}

.footer-brand { margin-bottom: 1.2rem; }
.footer-about {
  font-size: .88rem;
  color: #fff;
  line-height: 1.75;
  max-width: 340px;
}

.footer-heading {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-size: .9rem;
  color: #fff;
  transition: color .2s, padding-left .2s;
  display: block;
}
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.fci {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  font-size: .9rem;
  color: #fff;
  line-height: 1.5;
}
.fci i { color: var(--green-light); margin-top: 2px; flex-shrink: 0; font-size: .85rem; }
.fci a { color: rgba(255,255,255,.7); transition: color .2s; }
.fci a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}
/* ── Footer Social Icons ─────────────────────────────────────────────────── */
.footer-social {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.footer-social-icon:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}
/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991.98px) {
  .about-img-wrap { padding-bottom: 2rem; padding-right: 2rem; margin-bottom: 1rem; }
  .about-img-main { height: 380px; }
  .svc-pair { grid-template-columns: 1fr 1fr; }
  .contact-info-panel { padding: 2.5rem 1.8rem; }
  .contact-form-panel { padding: 2.5rem 1.8rem; }
  .scroll-indicator { display: none; }
  .dropdown-menu {
    background: rgba(255,255,255,.04);
    border-top: none;
    border-left: 2px solid var(--green);
    border-radius: 0;
    box-shadow: none;
    margin-left: 16px;
    max-height: 260px;
  }
  .about-section,
  .services-section,
  .coverage-section,
  .contact-section { padding: 4.5rem 0; }
  .zz-row { gap: 36px; }
}
@media (max-width: 767.98px) {
  .hero-content h1 { font-size: 1.5rem; }
  .svc-pair { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child { border-bottom: none; }
  .about-badge { left: 0; }
  .about-img-main { height: 280px; }
  .states-grid { gap: .5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-controls { bottom: 1.5rem; }
  .hero-content { padding-top: 5rem; }
  .hero-content p{font-size:clamp(1.25rem, 2vw, 1.65rem) !important;}

  .about-section,
  .services-section,
  .coverage-section,
  .contact-section { padding: 3.25rem 0; }
  .leadership-section { padding: 36px 0 32px 0; }
  .stats-bar { padding: 1.5rem 0; }
  .stat-item { padding: 1rem 1rem; }
  .site-footer { padding: 3rem 0 0; }
  .footer-bottom { margin-top: 2rem; }
  .contact-map-section { margin-top: 40px; }
  .map-card iframe, #coverage-map { height: 320px; }
  .prefooter-banner { padding: 2.5rem 0; }
}

@media (max-width: 575.98px) {
  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { text-align: center; }
  .stats-row { border-left: none; border-top: 4px solid var(--green); }
  .contact-card-wrap { border-radius: 0; }
  .brand-sub { display: none; }

  .about-section,
  .services-section,
  .coverage-section,
  .contact-section { padding: 2.75rem 0; }
  .leadership-section { padding: 28px 0 24px 0; }
  .zz-row { gap: 24px; }
  .stat-num { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .map-card iframe, #coverage-map { height: 260px; }
}
.contact-map-section {
  margin-top: 80px;
}

.map-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  position: relative;
}

/* subtle overlay for premium look */
.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}