/* ============================================================
   Brunson Coleman Electric, LLC — Main Stylesheet
   Theme: Industrial-Modern | Navy · Charcoal · Safety Yellow
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:        #0d1f3c;
  --navy-mid:    #132748;
  --navy-light:  #1a3460;
  --charcoal:    #1e2229;
  --charcoal-mid:#262d38;
  --charcoal-lt: #3a4250;
  --yellow:      #f5c518;
  --yellow-dk:   #d4a800;
  --yellow-lt:   #ffe066;
  --white:       #ffffff;
  --off-white:   #f4f5f7;
  --gray-200:    #e4e6ea;
  --gray-400:    #8a939f;
  --gray-600:    #5a6370;
  --text-dark:   #1e2229;
  --text-mid:    #3a4250;
  --text-light:  #8a939f;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.12);
  --shadow-md:   0 6px 24px rgba(0,0,0,.16);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.22);
  --transition:  all .25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, iframe { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--charcoal);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-lt);
  border-color: var(--yellow-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-full { width: 100%; justify-content: center; margin-top: 20px; }

/* ---------- Section Typography ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-label--light { color: var(--yellow); background: rgba(245,197,24,.15); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title--light { color: var(--white); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.section-intro--light { color: rgba(255,255,255,.78); }

.accent { color: var(--yellow); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,31,60,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,197,24,.15);
  transition: var(--transition);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-bolt {
  width: 40px; height: 40px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .72rem;
  color: var(--yellow);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--charcoal) !important;
  border: 2px solid var(--yellow) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 18px !important;
  border-bottom: 2px solid var(--yellow) !important;
}
.nav-cta:hover {
  background: var(--yellow-lt) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,197,24,.4);
}

/* Active nav state set by JS */
.nav-links li a.active-nav {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */

/* Full-bleed wrapper that carries the dark background */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  /* stretch edge-to-edge even when body has padding */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: stretch;
}

/* Inner grid constrained to max-width */
.hero-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.35);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.hero-trust span i { color: var(--yellow); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 420px;
  z-index: 2;
}

.hex-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,.2);
  animation: pulse-ring 3s ease-in-out infinite;
}
.hex-ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.hex-ring-2 { width: 300px; height: 300px; animation-delay: .5s; opacity: .7; }
.hex-ring-3 { width: 400px; height: 400px; animation-delay: 1s; opacity: .4; }

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.hero-icon-center {
  width: 100px; height: 100px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--charcoal);
  z-index: 3;
  box-shadow: 0 0 40px rgba(245,197,24,.5), 0 0 80px rgba(245,197,24,.2);
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(245,197,24,.5), 0 0 60px rgba(245,197,24,.2); }
  50% { box-shadow: 0 0 50px rgba(245,197,24,.7), 0 0 100px rgba(245,197,24,.3); }
}

.circuit-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.circuit-lines svg { width: 100%; height: 100%; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 80px 0 60px;
  background: var(--off-white);
}

/* 3 cards: featured (wider) + 45mi + 35 craftsmen — all equal height */
.stats-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;   /* all rows same height */
}

/* Craftsmen card — white card, matches the 45mi card exactly */
.stat-card--craftsmen {
  background: var(--white);
  border-color: var(--gray-200);
}
.stat-card--craftsmen .stat-number { color: var(--navy); }
.stat-card--craftsmen .stat-unit   { color: var(--gray-400); }
.stat-card--craftsmen .stat-label  { color: var(--navy); }
.stat-card--craftsmen .stat-desc   { color: var(--text-mid); }
.stat-card--craftsmen .stat-icon   { color: var(--yellow); }

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: visible;   /* never clip content */
  display: flex;
  flex-direction: column;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,197,24,.3);
}

.stat-card--featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(245,197,24,.2);
  color: var(--white);
}
.stat-card--featured::before { background: var(--yellow); }
.stat-card--featured .stat-number { color: var(--yellow); }
.stat-card--featured .stat-unit { color: var(--yellow-lt); }
.stat-card--featured .stat-label { color: rgba(255,255,255,.9); }
.stat-card--featured .stat-desc { color: rgba(255,255,255,.65); }
.stat-card--featured .stat-icon { color: rgba(245,197,24,.5); }

.stat-icon {
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.stat-desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 10px;
  flex: 1;   /* pushes desc to fill remaining card height */
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px; height: 44px;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.why-feature p {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* Why Visual */
.why-visual {
  display: flex; align-items: center; justify-content: center;
}

.why-stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.wsb-item {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(245,197,24,.15);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: var(--transition);
}
.wsb-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,.4);
  box-shadow: var(--shadow-md);
}
.wsb-item > i {
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: 4px;
}
.wsb-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.wsb-lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ============================================================
   SERVICE HUB FOOTER
   ============================================================ */
.service-hub {
  background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
}

.hub-columns {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  padding-top: 56px;
  padding-bottom: 56px;
  align-items: stretch;   /* both cols same height */
}

/* Inline section header inside the right column */
.hub-section-header {
  margin-bottom: 28px;
}

.hub-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 10px 0 10px;
}

.hub-subline {
  font-size: .92rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  margin-bottom: 0;
}
.hub-subline strong { color: rgba(255,255,255,.88); font-weight: 600; }

/* --- Map Column --- */
.hub-map-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(245,197,24,.2);
  flex: 1;              /* fill the full column height */
  display: flex;
  flex-direction: column;
}

.map-radius-label {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 20;
  background: rgba(13,31,60,.92);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(245,197,24,.35);
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(8px);
}
.map-radius-label i { font-size: .5rem; }

.map-embed-container {
  width: 100%;
  flex: 1;              /* grows to fill wrapper, pushing GPS btn to bottom */
  min-height: 340px;   /* floor so it never collapses */
  position: relative;
  z-index: 5;
}
.map-embed-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

/* SVG Radius Overlay */
.radius-ring-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}

.radius-svg {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-spin 30s linear infinite;
}

@keyframes ring-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* GPS Button */
.map-gps-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: var(--yellow);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: var(--transition);
  position: relative;
  z-index: 20;
}
.map-gps-btn:hover {
  background: var(--yellow-lt);
  box-shadow: 0 -4px 20px rgba(245,197,24,.3);
}
.map-gps-btn i { font-size: 1rem; }

/* --- Info Column --- */
.hub-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* coverage block grows to fill remaining space, aligning bottom of both cols */
}

.coverage-block {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hub-block-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,197,24,.2);
}
.hub-block-title i { color: var(--yellow); }

/* Coverage Grid */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.coverage-area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.coverage-area:hover {
  background: rgba(255,255,255,.05);
  color: var(--white);
}

.coverage-area--primary {
  background: rgba(245,197,24,.08);
  border: 1px solid rgba(245,197,24,.2);
  color: var(--yellow);
  font-weight: 600;
  border-radius: var(--radius-sm);
  grid-column: 1 / -1;
}
.coverage-area--primary strong { display: block; font-size: .95rem; }
.coverage-area--primary small { font-size: .75rem; opacity: .7; text-transform: uppercase; letter-spacing: .06em; }

.coverage-area--more {
  grid-column: 1 / -1;
  color: var(--yellow);
  font-style: italic;
  font-size: .88rem;
}

.coverage-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--charcoal-lt);
  flex-shrink: 0;
}
.coverage-dot--primary { background: var(--yellow); box-shadow: 0 0 6px rgba(245,197,24,.5); }

/* Contact Block */
.contact-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
}
.contact-list li i {
  color: var(--yellow);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.contact-list li a {
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.contact-list li a:hover { color: var(--yellow); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 64px 0;
}

.contact-section-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.contact-section-header .hub-headline {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.contact-section-header .hub-subline {
  margin-top: 8px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,197,24,.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-card:hover::before { transform: scaleX(1); }

.contact-card-icon {
  width: 52px; height: 52px;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.contact-card-label {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: .8;
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.contact-card-note {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}

/* Footer Bar */
.footer-bar {
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  letter-spacing: .04em;
}
.footer-logo i { color: var(--yellow); }

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

.footer-location {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-location i { color: var(--yellow); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--yellow-lt);
  transform: translateY(-3px);
}

/* ============================================================
   WIDE SCREEN (≥ 1400px) — prevent content over-stretching
   ============================================================ */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
  .nav-container {
    max-width: 1280px;
  }
  .hero-inner {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-headline { font-size: 4rem; }
  .stats-grid { max-width: 1280px; margin: 0 auto; }
  .why-grid { gap: 80px; }
  .hub-columns { max-width: 1280px; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {

  .hero { display: flex; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
  }
  .hero-content { padding-right: 0; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .stat-card--featured { grid-column: 1 / -1; }
  .stat-card { overflow: visible; }

  .why-grid { grid-template-columns: 1fr; }
  .why-visual { margin-top: 40px; }

  .contact-cards { grid-template-columns: repeat(2, 1fr); }

  .hub-columns {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 36px;
  }
  /* On mobile the right col (with header) comes second — reorder so header shows first */
  .hub-map-col   { order: 2; }
  .hub-info-col  { order: 1; }
  .hub-section-header { margin-bottom: 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,31,60,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0 28px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 1px solid rgba(245,197,24,.15);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 14px 28px;
    border-bottom: none;
    border-radius: 0;
  }
  .nav-links li a:hover { background: rgba(255,255,255,.05); }
  .nav-cta {
    margin: 12px 28px 0 !important;
    display: block !important;
    text-align: center !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 18px !important;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 560px)
   ============================================================ */
@media (max-width: 560px) {

  .stats-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-card { padding: 20px 16px; }
  .contact-section { padding: 44px 0; }
  .coverage-area--primary { grid-column: 1; }
  .coverage-area--more { grid-column: 1; }

  .why-stat-block { grid-template-columns: 1fr 1fr; gap: 12px; }
  .wsb-item { padding: 22px 12px; }
  .wsb-num { font-size: 1.7rem; }

  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .map-embed-container { height: 280px; }
  .hero-headline { font-size: 2.2rem; }

  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
}
