/* ===== REACH STATS BREADCRUMB BAR ===== */
.reach-section {
  position: relative;
  overflow: hidden;
  padding: 0.7rem 1.2rem;          /* slim breadcrumb feel */
  min-height: 200px;                /* small height bar */
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(14, 117, 194, 0.89),
      rgba(14, 117, 194, 0.99)
    ),
    url("../banners/bn-01.png"); /* <-- update path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* subtle textured overlay for depth */
.reach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255,255,255,0.15), transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(0,0,0,0.18), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.reach-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

/* Hide headings / paragraphs for breadcrumb-style bar */
.reach-header {
  display: none !important;
}

/* Stats row */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

/* Each stat item */
.reach-card {
  text-align: center;
  color: #ffffff;
  padding: 0.2rem 0.4rem;
  /* subtle interactive feel */
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Label (title of stat) */
.reach-label {
  display: block;
  font-size: 1rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.9;
}

/* Big, bold, wide numbers */
.reach-number {
  margin-top: 0.05rem;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;   /* wide look */
  /* text-shadow: 0 3px 10px rgba(0,0,0,0.35); */
}

/* optional small descriptor text (can be omitted in HTML if you want super minimal) */
.reach-caption {
  margin-top: 0.05rem;
  font-size: 1rem;
  opacity: 0.9;
}

/* Hover interaction: tiny lift */
.reach-card:hover {
  transform: translateY(-2px);
}

/* Viewport “wave” effect: gentle pulse for the whole row */
@keyframes reachBarWave {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.reach-section.in-view .reach-grid {
  animation: reachBarWave 3.2s ease-in-out infinite;
}

/* OPTIONAL: small stagger on each card */
.reach-section.in-view .reach-card:nth-child(1) { animation-delay: 0.0s; }
.reach-section.in-view .reach-card:nth-child(2) { animation-delay: 0.05s; }
.reach-section.in-view .reach-card:nth-child(3) { animation-delay: 0.1s; }
.reach-section.in-view .reach-card:nth-child(4) { animation-delay: 0.15s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .reach-section {
    padding: 0.8rem 1rem;
  }

  .reach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.9rem;
  }

  .reach-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .reach-section {
    padding: 0.9rem 0.8rem;
  }

  .reach-number {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }

  .reach-label,
  .reach-caption {
    font-size: 0.68rem;
  }
}
