/* =========================================================
   ABOUT.CSS (v2.4)
   Page-specific styles that mirror home.css aesthetics.
   Only overrides/additions unique to the About page.
   ========================================================= */

/* ---------------------------------------------------------
   HERO (same gradient + decorative rings)
--------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #009933 0%, #003300 100%);
  color: #FFFFFF;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset-inline-end: -120px;
  inset-block-start: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 42px solid rgba(255,255,255,.12);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-18deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline-end: -40px;
  inset-block-end: -120px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 30px solid rgba(255,255,255,.1);
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(24deg);
}

.hero-inner { padding-block: 96px; position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .75rem; margin-bottom: 1.2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem; border-radius: 999px;
  background: rgba(15,23,42,.65);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
}

.text-accent {
  background: linear-gradient(135deg, #E3FFEF 0%, #C9FFD6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-subtitle { font-size: 1.05rem; margin: .75rem 0 1rem; opacity: .95; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.25rem 0 1rem; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: .85rem; opacity: .92; }
.hero-meta-item { display: inline-flex; align-items: center; gap: .35rem; }

/* Illustration */
.hero-illustration { position: relative; }
.hero-illustration-card {
  background: #fff; color: var(--color-text-main);
  border-radius: 28px; padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}
.hero-illustration-card img { width: 100%; height: auto; border-radius: 12px; }
.hero-illustration-metrics {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem; margin-top: 1rem;
}
.metric-pill {
  padding: .7rem .9rem; border-radius: 12px;
  background: #F5F7FA; font-size: .8rem;
}
.metric-pill strong { display: block; font-size: 1rem; color: #006600; }
.metric-pill span { display: block; margin-top: .12rem; color: #4A4A4A; }

/* ---------------------------------------------------------
   SECTION HEADERS (centered like other pages)
--------------------------------------------------------- */
.section-header { text-align: center; max-width: 820px; margin-inline: auto; }
.section-eyebrow { color: #0AA86A; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.section-title { margin-top: .35rem; }
.section-description { color: #4A4A4A; }

/* ---------------------------------------------------------
   STORY / HIGHLIGHT CARD
--------------------------------------------------------- */
.card--highlight {
  border: 2px solid rgba(0,102,0,.15);
  background: linear-gradient(135deg, rgba(0,102,0,.03) 0%, rgba(10,168,106,.03) 100%);
}

/* small icon treatment for lists inside cards */
.li-icon { display: inline-grid; place-items: center; margin-inline-end: .5rem; }
.icon { width: 20px; height: 20px; stroke: #0F5132; fill: none; }
.icon path, .icon circle, .icon rect { stroke: #0F5132; }

/* card header icon (for Mission/Vision + What we do) */
.card-header { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.card-icon {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: #F5F7FA; border: 1px solid #E5E7EB;
}
.card-icon .icon { width: 22px; height: 22px; stroke-width: 2; }
.card-tag {
  font-size: .75rem; font-weight: 700; color: #0AA86A;
  background: rgba(10,168,106,.1); padding: .25rem .6rem; border-radius: 999px;
}

/* keep cards equal height in grids */
.grid-3, .grid-2 { align-items: stretch; }

/* ---------------------------------------------------------
   LOCATIONS BLOCK
--------------------------------------------------------- */
#locations .card .h3 { margin-bottom: .5rem; }
#locations .card p { line-height: 1.6; }

/* ---------------------------------------------------------
   TESTIMONIAL CARDS (no slider)
--------------------------------------------------------- */
.testimonial-header { display: flex; gap: .8rem; align-items: center; margin-bottom: .5rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid #0AA86A;
}
.testimonial-meta .h3 { margin: 0; }
.testimonial-rating { margin: .25rem 0 .5rem; font-weight: 700; letter-spacing: .08em; color: #0AA86A; }

/* ---------------------------------------------------------
   FINAL CTA (slight emphasis)
--------------------------------------------------------- */
.final-cta-card { border: 1px solid #E5E7EB; box-shadow: 0 10px 30px rgba(15,23,42,.06); }
.final-cta-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

/* ---------------------------------------------------------
   UTILITIES
--------------------------------------------------------- */
.text-muted { color: #4A4A4A; }

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr); gap: 2.5rem; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 768px) {
  .hero-inner { padding-block: 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-illustration { order: -1; margin-bottom: 2rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-badge-row { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .metric-pill { padding: .55rem .7rem; font-size: .75rem; }
}
