
/* ===========================================================
   CLEAN HEALTH — ABOUT PAGE STYLES
   (Drop-in block for styles.css)
   Fully based on global variables & spacing
=========================================================== */


/* Ensures every section has breathing space from the next */
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.about-team-card {
  margin-top: 25px;
  margin-bottom: 25px;
}




/* ============================
   PREMIUM HERO SECTION
============================ */

.about-hero {
  padding: 110px 0 90px;
  position: relative;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

/* Eyebrow */
.about-eyebrow {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

/* Headline */
.about-hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--green-dark);
  margin-bottom: 20px;
}

/* Description */
.about-hero-sub {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 540px;
  line-height: 1.65;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
}

/* CTA BUTTONS */
.about-hero-ctas {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button */
.about-btn-primary {
  padding: 14px 34px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(18, 120, 60, 0.28);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(18, 120, 60, 0.35);
}

/* Outline Button */
.about-btn-outline {
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  background: transparent;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(18, 120, 60, 0.25);
}

/* FEATURES CHIPS */
.about-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-hero-features .feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 122, 54, 0.09);
  border: 1px solid rgba(27, 122, 54, 0.17);
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: all 0.28s ease;
}

.about-hero-features .feat-item:hover {
  background: rgba(27, 122, 54, 0.16);
  transform: translateY(-3px);
}

.about-hero-features .feat-item span {
  font-size: 1.2rem;
  color: var(--accent);
}

/* RIGHT IMAGE BLOCK */
.about-hero-right {
  display: flex;
  justify-content: center;
}

.about-hero-collage {
  width: 480px;
  height: 360px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

/* Ambient Glow Behind Image */
.hero-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.22;
  filter: blur(90px);
  top: -10%;
  left: -10%;
  z-index: 1;
  border-radius: inherit;
}

/* =========== DESKTOP =========== */
@media (min-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr 500px;
    gap: 40px;
  }

  .about-hero-title {
    font-size: 3.8rem;
  }
}

/* =========== MOBILE =========== */
@media (max-width: 768px) {

  .about-hero {
    padding: 70px 0 50px;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-sub {
    font-size: 1rem;
  }

  .about-hero-collage {
    width: 100%;
    height: auto;
  }
}

/* =======================================================
   MOBILE HERO — FIXED SPACING, BUTTONS & READABILITY
======================================================== */

@media (max-width: 768px) {

  /* Reduce excess top space */
  .about-hero {
    padding: 40px 0;
  }

  /* Better title scaling */
  .about-hero-title {
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  /* Improve text readability */
  .about-hero-sub {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  /* Tighter spacing for eyebrow text */
  .about-eyebrow {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  /* FIX BUTTONS — full width, equal alignment, clean spacing */
  .about-hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .about-btn-primary,
  .about-btn-outline {
    width: 90%;
    padding: 14px;
    font-size: 1rem;
    text-align: center;
  }

  /* Make feature chips 100% width and clean */
  .about-hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .about-hero-features .feat-item {
    width: 90%;
    padding: 12px 14px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  /* Hero image spacing fix */
  .about-hero-right {
    margin-top: 25px;
  }

  .about-hero-collage {
    width: 100%;
    height: auto;
  }

  .about-hero-collage img {
    width: 100%;
    height: auto;
  }
}


/* ===========================
   ABOUT — BRAND INTRO
=========================== */

.about-brand {
  padding: 80px 0;
}

.about-brand-lead {
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 700px;
  color: var(--green-dark);
  margin-bottom: 32px;
}

.about-brand-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: start;
}

.about-brand-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}


/* ICON CARDS */
.about-brand-icons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.icon-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.icon-card:hover {
  transform: translateY(-4px);
}

.icon-card h4 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--green-dark);
}

.icon-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.icon-circle {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 122, 54, 0.08);
  border-radius: 50%;
  font-size: 1.3rem;
}


/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 800px) {
  .about-brand-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .icon-card {
    padding: 14px 16px;
  }

  .about-brand-lead {
    font-size: 1.25rem;
  }
}


/* =====================================================
   ABOUT — PURPOSE / VISION / MISSION (PVMS)
===================================================== */

.about-pvms {
  padding: 80px 0;
}

.about-pvms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Card Base */
.about-pv-card {
  background: var(--card);
  padding: 28px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 122, 54, 0.1);
  transition: transform 0.35s var(--transition), 
              box-shadow 0.35s var(--transition),
              border 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}

/* Hover Elevation */
.about-pv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(12, 34, 18, 0.14);
  border-color: var(--accent);
}

/* Optional subtle gradient border */
.about-pv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}

.about-pv-card:hover::before {
  opacity: 0.25;
}

.about-pv-card > * {
  position: relative;
  z-index: 2;
}

/* Icon */
.pv-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(27, 122, 54, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--accent);
}

/* Typography */
.about-pv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-weight: 700;
}

.about-pv-card p,
.about-pv-card li {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-pv-card ul {
  padding-left: 18px;
}

/* Desktop Layout */
@media (min-width: 900px) {
  .about-pvms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Stacking */
@media (max-width: 600px) {
  .about-pv-card {
    padding: 22px 20px;
  }
  .pv-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .about-pv-card h3 {
    font-size: 1.25rem;
  }
}


/* =======================================================
   ABOUT — STORY SECTION
======================================================= */

.about-story {
  padding: 90px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

/* ---- TEXT ---- */
.story-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
  text-align: center;
  position: relative;
}

.story-title::after {
  content: "";
  width: 80px;
  height: 4px;
  border-radius: 10px;
  background: var(--orange);
  display: block;
  margin: 10px auto 0;
}

.about-story-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---- Story Link ---- */
.story-link {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.05rem;
  transition: color 0.3s ease;
  text-align: center;
  display: inline-block;
}

.story-link:hover {
  color: var(--accent-2);
}

/* ---- IMAGE ---- */
.story-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.story-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

/* ---- DESKTOP LAYOUT ---- */
@media (min-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }

  .story-title,
  .about-story-text p,
  .story-link {
    text-align: left;
    margin-left: 0;
  }

  .story-title::after {
    margin-left: 0;
  }

  .story-img-wrap {
    margin: 0;
  }

  .story-caption {
    text-align: left;
  }
}


/* =======================================================
   ABOUT — FOCUS AREAS (NEW DESIGN)
======================================================= */

.about-systems {
  padding: 80px 0;
}

.about-systems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

/* --- System Card --- */
.about-system-card {
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  border: 1px solid rgba(27, 122, 54, 0.12);
  padding: 28px;
  border-radius: 18px;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(12, 34, 18, 0.06);
  text-align: left;
}

/* Glow effect on hover */
.about-system-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(12, 34, 18, 0.12);
  border-color: var(--accent);
}

/* Subtle gradient border on hover */
.about-system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}

.about-system-card:hover::before {
  opacity: 0.3;
}

.about-system-card > * {
  position: relative;
  z-index: 2;
}

/* Icon */
.sys-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(27, 122, 54, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--accent);
}

/* Heading */
.about-system-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green-dark);
}

/* Text */
.about-system-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
}

/* Desktop 3-column layout */
@media (min-width: 900px) {
  .about-systems-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .about-system-card {
    text-align: left;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .about-system-card {
    padding: 22px;
  }
  .sys-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}


/* ---------- CORE VALUES SECTION ---------- */

.about-values {
  margin-top: 10px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 25px;
}

/* Base card styling */
.about-value {
  background: var(--card);
  padding: 18px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  color: var(--green-dark);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 122, 54, 0.08);
  position: relative;
  overflow: hidden;
  cursor: default;

  /* animation base */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(.22,1,.36,1);
}

/* Gradient glow overlay */
.about-value::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  border-radius: inherit;
}

/* Hover effect */
.about-value:hover {
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.about-value:hover::after {
  opacity: 1;
}

/* Reveal active state */
.about-value.show {
  opacity: 1;
  transform: translateY(0);
}


/* -------------------------------------------------
   QUALITY & LAB PROMISE — PREMIUM SIDE-IMAGE VERSION
-------------------------------------------------- */

.about-trust {
  margin-top: 60px;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE TEXT */
.about-trust-left p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 14px 0 28px;
}

.about-trust-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.about-trust-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(27, 122, 54, 0.25);
}

/* IMAGE BOX */
.trust-img-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-bottom: 20px;
}

.trust-img-box img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

/* Soft Glow Behind Image */
.trust-img-blob {
  position: absolute;
  inset: -20px;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  filter: blur(80px);
  opacity: 0.18;
  border-radius: inherit;
  z-index: 1;
}

/* BADGES */
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-badge {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(27,122,54,0.08);
  color: var(--green-dark);
  border: 1px solid rgba(27,122,54,0.12);
  opacity: 0;
  transform: translateY(15px);
  transition: 0.45s ease;
}

/* Visible */
.about-badge.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.about-badge:nth-child(1) { transition-delay: 0.05s; }
.about-badge:nth-child(2) { transition-delay: 0.10s; }
.about-badge:nth-child(3) { transition-delay: 0.15s; }
.about-badge:nth-child(4) { transition-delay: 0.20s; }

/* Desktop Layout */
@media (min-width: 900px) {
  .about-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}


/* ===========================================================
   FORMULATION PROCESS — FINAL PREMIUM VERSION
   Clean, centered timeline with left/right cards + animations
=========================================================== */

.about-process { 
  position: relative; 
  padding: 80px 0; 
}

.about-process-wrap {
  position: relative;
  max-width: 1100px;         /* Perfect container width */
  margin: 0 auto;
  padding: 10px 20px;
}

/* -------- CENTER VERTICAL LINE -------- */
.about-process-line {
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  z-index: 1;
}

/* -------- TIMELINE STEP WRAPPER -------- */
.about-process-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 70px 0;
  z-index: 2;
}

/* -------- NODE (DOT ON CENTER LINE) -------- */
.about-process-node {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
}

/* -------- CARD (STEP BOX) -------- */
.about-process-card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 420px;
  width: 100%;
  transition: transform 0.55s cubic-bezier(.22,.9,.3,1), opacity 0.45s ease;
}

/* step number style */
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

/* -----------------------------------------------
   LEFT & RIGHT POSITIONING (DESKTOP)
----------------------------------------------- */
.about-process-item.left .about-process-card {
  margin-right: auto;
  margin-left: 0;
  text-align: right;
  transform: translateX(-50px); /* initial before reveal */
}

.about-process-item.right .about-process-card {
  margin-left: auto;
  margin-right: 0;
  transform: translateX(50px); /* initial before reveal */
}

/* Reveal animation */
.about-process-item.about-reveal { 
  opacity: 0; 
}

.about-process-item.about-reveal.show { 
  opacity: 1; 
}

.about-process-item.about-reveal.show .about-process-card {
  transform: translateX(0);
}

/* -----------------------------------------------
   MOBILE RESPONSIVE (ALL CARDS ON RIGHT SIDE)
----------------------------------------------- */
@media (max-width: 899px) {
  
  .about-process-line {
    left: 26px;
    width: 3px;
  }

  .about-process-node {
    left: 26px;
    transform: translateX(-50%);
  }

  .about-process-item {
    margin: 50px 0;
  }

  .about-process-card {
    width: calc(100% - 80px);
    margin-left: 60px !important;
    text-align: left !important;
    transform: translateX(0) !important;
  }
}

/* -----------------------------------------------
   DESKTOP STYLING
----------------------------------------------- */
@media (min-width: 900px) {
  .about-process-card {
    width: 420px;
  }
}

/* Typography tweaks */
.about-process-card h3 {
  margin: 4px 0 10px;
  font-size: 1.1rem;
}

.about-process-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Fallback for users with reduced motion */
@media (prefers-reduced-motion: reduce) {
  .about-process-card,
  .about-process-line,
  .about-process-node {
    transition: none !important;
  }
  .about-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===========================================================
   BRAND PROMISE — Premium Center Quote
=========================================================== */

.about-promise {
  padding: 80px 0;
  text-align: center;
}

.promise-quote {
  font-size: 1.6rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 500;
  color: var(--green-dark);
  position: relative;
  padding: 40px 20px;
  font-style: italic;
}

/* Decorative line above */
.promise-quote::before {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--accent);
  display: block;
  margin: 0 auto 25px;
  border-radius: 10px;
  opacity: 0.9;
}

/* Reveal animation base */
.about-promise.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.about-promise.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .promise-quote {
    font-size: 1.28rem;
    line-height: 1.6;
    padding: 30px 15px;
  }

  .promise-quote::before {
    width: 60px;
    height: 2px;
  }
}

/* ===============================
   ABOUT — IMPACT STATS
================================ */

.about-stats {
  margin-top: 20px;
}

.about-stats .section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Grid layout */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  text-align: center;
  padding: 10px 0;
}

.about-stat {
  background: var(--card);
  padding: 24px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(27, 122, 54, 0.08);
}

/* Number Style */
.about-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Label */
.about-stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Hover interaction */
.about-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(27, 122, 54, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* TEAM SECTION */
.about-team-card {
  display: flex;
  gap: 24px;
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: center;
}

.about-team-card img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  object-fit: cover;
}

.link-more {
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.link-more:hover {
  text-decoration: underline;
}

/* FULL TEAM SECTION (hidden initially) */
.about-team-full {
  margin-top: 40px;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.about-team-full.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.team-member {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member h4 {
  margin-bottom: 6px;
  font-weight: 700;
}

.team-member p {
  color: var(--muted);
}

/* ---------- TESTIMONIALS SECTION ---------- */

.about-testimonials {
  padding: 40px 0;
}
.about-testimonials .section-title {
  margin-bottom: 40px !important; /* increase as needed */
}

.about-testimonials-grid {
  display: grid;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Testimonial card */
.about-testimonial {
  padding: 22px 26px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  line-height: 1.6;
  animation: fadeUp 0.6s ease-out;
}

.about-testimonial p {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.about-testimonial cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

/* Desktop — switch to 2 columns */
@media (min-width: 900px) {
  .about-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* Make 3 items look balanced */
  .about-testimonial:nth-child(3) {
    grid-column: span 2;
    max-width: 70%;
    justify-self: center;
  }
}

/* Optional: Premium smooth fade animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================================================
   SUSTAINABILITY — PREMIUM DESIGN
=========================================================== */

/* Space between Sustainability heading and grid */
.about-sustain.section .section-title {
  margin-bottom: 35px !important;
}


.sustain-subtext {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 50px !important; /* increase subtext → cards gap */
}

.about-sustain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 950px;
  margin: 0 auto;
}

.about-sust {
  background: var(--card);
  padding: 28px 26px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 122, 54, 0.08);
  
  /* gradient top edge */
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

.about-sust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: .7;
}

.sust-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 10px;
}

.about-sust h4 {
  margin: 8px 0;
  font-weight: 700;
  color: var(--green-dark);
}

.about-sust p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

/* Hover Animation */
.about-sust:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  border-color: rgba(27,122,54,0.15);
}

/* Reveal animation */
.about-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s cubic-bezier(.22,1,.36,1);
}

.about-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.about-reveal:nth-child(1) { transition-delay: .05s; }
.about-reveal:nth-child(2) { transition-delay: .10s; }
.about-reveal:nth-child(3) { transition-delay: .15s; }
.about-reveal:nth-child(4) { transition-delay: .20s; }
.about-reveal:nth-child(5) { transition-delay: .25s; }
.about-reveal:nth-child(6) { transition-delay: .30s; }


/* ---------- FINAL CTA ---------- */
.about-final-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--radius);
  color: white;
  margin-top: 40px;
}

.about-final-cta h2 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-final-cta p {
  max-width: 700px;
  margin: 0 auto 22px;
  color: #f4f8f4;
  line-height: 1.6;
  font-size: 1.1rem;
}

.about-final-cta .btn {
  margin-top: 14px;
  background: white;
  color: var(--accent);
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.about-final-cta .btn:hover {
  background: #f4fdf4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}


/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(.22,.9,.3,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slide-left / Slide-right for desktop */
@media (min-width: 900px) {

  .reveal.left {
    transform: translateX(-50px);
  }
  .reveal.left.show {
    transform: translateX(0);
  }

  .reveal.right {
    transform: translateX(50px);
  }
  .reveal.right.show {
    transform: translateX(0);
  }
}
