/* =========================================================
   GREEN FIELD FOUNDATION — Main Stylesheet
   Bootstrap 5.3 + Custom Design System
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --gf-green-dark:   #1a4731;
  --gf-green:        #2d6a4f;
  --gf-green-mid:    #40916c;
  --gf-green-light:  #74c69d;
  --gf-green-pale:   #d8f3dc;
  --gf-gold:         #e9a12a;
  --gf-gold-light:   #f4c96e;
  --gf-white:        #ffffff;
  --gf-off-white:    #f9fbf7;
  --gf-gray-100:     #f4f6f2;
  --gf-gray-200:     #e6ebe4;
  --gf-gray-400:     #9aad96;
  --gf-gray-600:     #5c6b58;
  --gf-gray-800:     #2e3b2a;
  --gf-text:         #1e2a1a;
  --gf-text-muted:   #5c6b58;
  --gf-shadow-sm:    0 2px 12px rgba(30,42,26,.08);
  --gf-shadow-md:    0 8px 32px rgba(30,42,26,.12);
  --gf-shadow-lg:    0 20px 60px rgba(30,42,26,.16);
  --gf-radius:       12px;
  --gf-radius-lg:    20px;
  --gf-transition:   all .3s cubic-bezier(.4,0,.2,1);
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'DM Sans', system-ui, sans-serif;
}

/* --- 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(--gf-text);
  background: var(--gf-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gf-green-dark);
}

a { color: var(--gf-green); text-decoration: none; transition: var(--gf-transition); }
a:hover { color: var(--gf-gold); }

img { max-width: 100%; height: auto; display: block; }

/* --- Utility Classes --- */
.font-display  { font-family: var(--font-display); }
.text-green    { color: var(--gf-green) !important; }
.text-gold     { color: var(--gf-gold) !important; }
.text-dark-green { color: var(--gf-green-dark) !important; }
.bg-green-dark { background-color: var(--gf-green-dark) !important; }
.bg-green      { background-color: var(--gf-green) !important; }
.bg-green-pale { background-color: var(--gf-green-pale) !important; }
.bg-off-white  { background-color: var(--gf-off-white) !important; }

.section-pad   { padding: 90px 0; }
.section-pad-sm{ padding: 60px 0; }

.lead-lg { font-size: 1.2rem; font-weight: 400; color: var(--gf-text-muted); line-height: 1.8; }

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gf-green-mid);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gf-green-mid);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--gf-green-mid); }

/* --- Buttons --- */
.btn-gf-primary {
  background: var(--gf-green);
  color: var(--gf-white);
  border: 2px solid var(--gf-green);
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  transition: var(--gf-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gf-primary:hover {
  background: var(--gf-green-dark);
  border-color: var(--gf-green-dark);
  color: var(--gf-white);
  transform: translateY(-2px);
  box-shadow: var(--gf-shadow-md);
}

.btn-gf-outline {
  background: transparent;
  color: var(--gf-green);
  border: 2px solid var(--gf-green);
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--gf-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gf-outline:hover {
  background: var(--gf-green);
  color: var(--gf-white);
  transform: translateY(-2px);
  box-shadow: var(--gf-shadow-md);
}

.btn-gf-gold {
  background: var(--gf-gold);
  color: var(--gf-green-dark);
  border: 2px solid var(--gf-gold);
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .92rem;
  transition: var(--gf-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gf-gold:hover {
  background: var(--gf-gold-light);
  border-color: var(--gf-gold-light);
  color: var(--gf-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,161,42,.35);
}

.btn-gf-white {
  background: var(--gf-white);
  color: var(--gf-green-dark);
  border: 2px solid var(--gf-white);
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--gf-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gf-white:hover {
  background: transparent;
  color: var(--gf-white);
  transform: translateY(-2px);
}

/* --- Top Bar --- */
.top-bar {
  background: var(--gf-green-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--gf-gold); }
.top-bar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-size: .75rem;
  margin-left: 4px;
  transition: var(--gf-transition);
}
.top-bar .social-links a:hover {
  background: var(--gf-gold);
  color: var(--gf-green-dark);
}

/* --- Navbar --- */
.navbar-main {
  background: var(--gf-white);
  box-shadow: var(--gf-shadow-sm);
  padding: 0;
  transition: var(--gf-transition);
  z-index: 1030;
}
.navbar-main.sticky-top { box-shadow: var(--gf-shadow-md); }
.navbar-main .navbar-brand { padding: 10px 0; }
.navbar-main .navbar-brand img { height: 52px; width: auto; }
.navbar-main .brand-text { line-height: 1.2; }
.navbar-main .brand-text .org-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gf-green-dark);
}
.navbar-main .brand-text .org-tagline {
  font-size: .68rem;
  color: var(--gf-green-mid);
  letter-spacing: .04em;
  font-weight: 500;
}

.navbar-main .nav-link {
  font-weight: 500;
  font-size: .88rem;
  color: var(--gf-gray-800) !important;
  padding: 1.15rem .8rem !important;
  position: relative;
  transition: var(--gf-transition);
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .8rem;
  right: .8rem;
  height: 2px;
  background: var(--gf-green);
  transform: scaleX(0);
  transition: transform .25s ease;
  border-radius: 2px;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--gf-green) !important; }
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.navbar-main .dropdown-menu {
  border: none;
  border-radius: var(--gf-radius);
  box-shadow: var(--gf-shadow-lg);
  padding: .5rem;
  min-width: 200px;
  border-top: 3px solid var(--gf-green);
  margin-top: 0;
}
.navbar-main .dropdown-item {
  font-size: .87rem;
  font-weight: 500;
  color: var(--gf-gray-800);
  padding: .5rem 1rem;
  border-radius: 8px;
  transition: var(--gf-transition);
}
.navbar-main .dropdown-item:hover {
  background: var(--gf-green-pale);
  color: var(--gf-green-dark);
}

/* Navbar Donate Button */
.navbar-donate {
  background: var(--gf-gold);
  color: var(--gf-green-dark) !important;
  border-radius: 50px !important;
  padding: .45rem 1.3rem !important;
  font-weight: 700 !important;
  font-size: .84rem !important;
  letter-spacing: .02em;
  margin-left: .5rem;
  border: 2px solid var(--gf-gold) !important;
}
.navbar-donate:hover {
  background: var(--gf-gold-light) !important;
  border-color: var(--gf-gold-light) !important;
  color: var(--gf-green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(233,161,42,.4) !important;
}
.navbar-donate::after { display: none !important; }

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--gf-green-dark) 0%, var(--gf-green) 60%, var(--gf-green-mid) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--gf-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--gf-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .5rem;
}
.page-hero .breadcrumb { background: none; padding: 0; margin: 0; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.7); font-size: .88rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb-item a:hover { color: var(--gf-gold); }
.page-hero .breadcrumb-item.active { color: var(--gf-gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* --- Home Hero --- */
.hero-home {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gf-green-dark) 0%, var(--gf-green) 55%, #52b788 100%);
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(116,198,157,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(233,161,42,.12) 0%, transparent 50%);
}
.hero-home .hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M40 0C17.9 0 0 17.9 0 40s17.9 40 40 40 40-17.9 40-40S62.1 0 40 0zm0 4c19.9 0 36 16.1 36 36S59.9 76 40 76 4 59.9 4 40 20.1 4 40 4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-home .hero-content { position: relative; z-index: 2; }
.hero-home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: .4rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-home h1 {
  color: var(--gf-white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-home h1 .highlight {
  color: var(--gf-gold);
  position: relative;
  display: inline-block;
}
.hero-home p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gf-gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
  letter-spacing: .03em;
}
.hero-home .hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-home .hero-img-main {
  border-radius: var(--gf-radius-lg);
  box-shadow: var(--gf-shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.hero-home .hero-card-float {
  position: absolute;
  background: var(--gf-white);
  border-radius: var(--gf-radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--gf-shadow-md);
  min-width: 160px;
}
.hero-card-float.card-1 { bottom: 40px; left: -30px; }
.hero-card-float.card-2 { top: 40px; right: -20px; }
.hero-card-float .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 6px;
}
.hero-card-float .card-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gf-green-dark);
  line-height: 1;
}
.hero-card-float .card-lbl {
  font-size: .73rem;
  color: var(--gf-text-muted);
  margin-top: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-indicator .scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.scroll-indicator .scroll-mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gf-gold);
  border-radius: 2px;
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--gf-white);
  border-bottom: 1px solid var(--gf-gray-200);
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gf-gray-600);
}
.trust-item i { color: var(--gf-green-mid); font-size: 1rem; }

/* --- Impact Counter Section --- */
.impact-section {
  background: linear-gradient(135deg, var(--gf-green-dark) 0%, var(--gf-green) 100%);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.impact-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 1.5rem 1rem;
}
.impact-card .impact-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--gf-gold);
}
.impact-card .counter {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gf-white);
  line-height: 1;
  display: block;
}
.impact-card .counter-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gf-gold);
}
.impact-card .counter-label {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 500;
  margin-top: .5rem;
  display: block;
}
.impact-card .counter-desc {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  margin-top: .25rem;
}
.impact-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  margin: 0 auto;
}

/* --- Cards --- */
.gf-card {
  background: var(--gf-white);
  border-radius: var(--gf-radius-lg);
  box-shadow: var(--gf-shadow-sm);
  overflow: hidden;
  transition: var(--gf-transition);
  border: 1px solid var(--gf-gray-200);
}
.gf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gf-shadow-lg);
  border-color: var(--gf-green-pale);
}
.gf-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.gf-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gf-card:hover .card-img-wrap img { transform: scale(1.06); }
.gf-card .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gf-green);
  color: var(--gf-white);
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.gf-card .card-body { padding: 1.5rem; }
.gf-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gf-green-dark);
  margin-bottom: .6rem;
}
.gf-card .card-text {
  font-size: .88rem;
  color: var(--gf-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.gf-card .card-meta {
  font-size: .78rem;
  color: var(--gf-gray-400);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--gf-gray-200);
}
.gf-card .card-meta i { color: var(--gf-green-mid); }

/* Program Cards */
.program-card {
  background: var(--gf-white);
  border-radius: var(--gf-radius-lg);
  padding: 2rem;
  box-shadow: var(--gf-shadow-sm);
  border: 1px solid var(--gf-gray-200);
  transition: var(--gf-transition);
  height: 100%;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gf-shadow-lg);
  border-color: var(--gf-green-light);
}
.program-card .prog-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
}
.program-card h4 {
  font-size: 1.1rem;
  margin-bottom: .7rem;
  color: var(--gf-green-dark);
}
.program-card p {
  font-size: .88rem;
  color: var(--gf-text-muted);
  line-height: 1.7;
}
.program-card .prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gf-green);
  margin-top: 1rem;
}
.program-card .prog-link:hover { color: var(--gf-gold); gap: 10px; }

/* Team / Trustee Cards */
.trustee-card {
  background: var(--gf-white);
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
  box-shadow: var(--gf-shadow-sm);
  border: 1px solid var(--gf-gray-200);
  transition: var(--gf-transition);
  text-align: center;
}
.trustee-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gf-shadow-lg);
}
.trustee-card .trustee-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.trustee-card .trustee-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.trustee-card:hover .trustee-img-wrap img { transform: scale(1.05); }
.trustee-card .trustee-body { padding: 1.5rem 1.2rem; }
.trustee-card .trustee-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gf-green-dark);
  margin-bottom: .25rem;
}
.trustee-card .trustee-role {
  font-size: .8rem;
  color: var(--gf-green-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .6rem;
}
.trustee-card .trustee-bio {
  font-size: .83rem;
  color: var(--gf-text-muted);
  line-height: 1.6;
}
.trustee-card .trustee-social { margin-top: .8rem; }
.trustee-card .trustee-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gf-gray-100);
  font-size: .8rem;
  color: var(--gf-gray-600);
  margin: 0 2px;
  transition: var(--gf-transition);
}
.trustee-card .trustee-social a:hover {
  background: var(--gf-green);
  color: var(--gf-white);
}

/* --- Progress Bars --- */
.gf-progress-item { margin-bottom: 1.5rem; }
.gf-progress-item .prog-label {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gf-gray-800);
  margin-bottom: .4rem;
}
.gf-progress {
  height: 8px;
  background: var(--gf-gray-200);
  border-radius: 50px;
  overflow: hidden;
}
.gf-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gf-green) 0%, var(--gf-green-light) 100%);
  border-radius: 50px;
  transition: width 1.5s cubic-bezier(.4,0,.2,1);
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--gf-white);
  border-radius: var(--gf-radius-lg);
  padding: 2rem;
  box-shadow: var(--gf-shadow-sm);
  border: 1px solid var(--gf-gray-200);
  position: relative;
  transition: var(--gf-transition);
}
.testimonial-card:hover { box-shadow: var(--gf-shadow-md); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gf-green-pale);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card .quote { font-size: .92rem; color: var(--gf-text-muted); line-height: 1.8; position: relative; z-index: 1; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; }
.testimonial-card .author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author-name { font-weight: 700; font-size: .9rem; color: var(--gf-green-dark); }
.testimonial-card .author-role { font-size: .78rem; color: var(--gf-text-muted); }

/* --- Gallery --- */
.gallery-item {
  position: relative;
  border-radius: var(--gf-radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,71,49,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .overlay-icon {
  width: 50px;
  height: 50px;
  background: var(--gf-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gf-green-dark);
  font-size: 1.2rem;
  transform: scale(.8);
  transition: transform .3s ease;
}
.gallery-item:hover .overlay-icon { transform: scale(1); }

/* --- Donate Section --- */
.donate-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 1rem;
}
.donate-amount-btn {
  background: var(--gf-green-pale);
  border: 2px solid var(--gf-green-light);
  border-radius: 10px;
  padding: .75rem .5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gf-green-dark);
  cursor: pointer;
  transition: var(--gf-transition);
}
.donate-amount-btn:hover,
.donate-amount-btn.active {
  background: var(--gf-green);
  border-color: var(--gf-green);
  color: var(--gf-white);
}

/* --- Newsletter --- */
.newsletter-section {
  background: linear-gradient(135deg, var(--gf-green-dark), var(--gf-green));
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233,161,42,.15) 0%, transparent 70%);
}

/* --- Partner Logos --- */
.partner-logo {
  filter: grayscale(100%);
  opacity: .55;
  transition: var(--gf-transition);
  max-height: 50px;
  width: auto;
  max-width: 150px;
  margin: 0 auto;
}
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }

/* --- Documents / Downloads --- */
.doc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gf-white);
  border: 1px solid var(--gf-gray-200);
  border-radius: var(--gf-radius);
  padding: 1.1rem 1.3rem;
  transition: var(--gf-transition);
}
.doc-item:hover {
  border-color: var(--gf-green-light);
  box-shadow: var(--gf-shadow-sm);
  transform: translateX(4px);
}
.doc-item .doc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.doc-item .doc-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--gf-green-dark);
  margin-bottom: .15rem;
}
.doc-item .doc-meta {
  font-size: .76rem;
  color: var(--gf-text-muted);
}
.doc-item .doc-download {
  margin-left: auto;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gf-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gf-green);
  font-size: .9rem;
  transition: var(--gf-transition);
}
.doc-item:hover .doc-download {
  background: var(--gf-green);
  color: var(--gf-white);
}

/* --- Timeline --- */
.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gf-green), var(--gf-green-light));
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gf-green);
  border: 3px solid var(--gf-white);
  box-shadow: 0 0 0 2px var(--gf-green);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gf-green-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--gf-green-dark); margin-bottom: .4rem; }
.timeline-desc { font-size: .88rem; color: var(--gf-text-muted); line-height: 1.7; }

/* --- Forms --- */
.gf-form .form-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gf-gray-800);
  margin-bottom: .4rem;
}
.gf-form .form-control,
.gf-form .form-select {
  border: 1.5px solid var(--gf-gray-200);
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: .9rem;
  color: var(--gf-text);
  transition: var(--gf-transition);
  background: var(--gf-off-white);
}
.gf-form .form-control:focus,
.gf-form .form-select:focus {
  border-color: var(--gf-green);
  box-shadow: 0 0 0 3px rgba(64,145,108,.15);
  background: var(--gf-white);
}
.gf-form .form-control::placeholder { color: var(--gf-gray-400); font-size: .87rem; }
.gf-form textarea.form-control { min-height: 130px; resize: vertical; }

/* --- Accordion --- */
.gf-accordion .accordion-item {
  border: 1.5px solid var(--gf-gray-200);
  border-radius: var(--gf-radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.gf-accordion .accordion-button {
  font-weight: 600;
  font-size: .92rem;
  color: var(--gf-green-dark);
  background: var(--gf-white);
  padding: 1.1rem 1.3rem;
}
.gf-accordion .accordion-button:not(.collapsed) {
  color: var(--gf-green);
  background: var(--gf-green-pale);
  box-shadow: none;
}
.gf-accordion .accordion-button:focus { box-shadow: none; }
.gf-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d6a4f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.gf-accordion .accordion-body {
  font-size: .9rem;
  color: var(--gf-text-muted);
  line-height: 1.8;
  padding: 1rem 1.3rem;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--gf-transition);
  text-decoration: none;
  animation: waPulse 2.5s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.whatsapp-btn i { color: var(--gf-white); font-size: 1.6rem; }
.whatsapp-tooltip {
  background: var(--gf-green-dark);
  color: var(--gf-white);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--gf-transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.65); }
}

/* --- Back to Top --- */
#backToTop {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9998;
  width: 42px;
  height: 42px;
  background: var(--gf-green);
  color: var(--gf-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--gf-transition);
  box-shadow: var(--gf-shadow-md);
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gf-green-dark); transform: translateY(-3px); }

/* --- Footer --- */
.footer-main {
  background: var(--gf-green-dark);
  color: rgba(255,255,255,.8);
}
.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-area .footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gf-white);
  margin: .75rem 0 .4rem;
}
.footer-logo-area .footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-logo-area p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 1rem 0 1.2rem;
}
.footer-logo-area .footer-reg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: .4rem .8rem;
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-logo-area .footer-reg i { color: var(--gf-gold); }

.footer-heading {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gf-gold);
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: .7rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gf-gold);
  border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--gf-transition);
}
.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gf-green-light);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--gf-white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}
.footer-contact-item .fc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--gf-gold);
  flex-shrink: 0;
}
.footer-contact-item .fc-text { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-contact-item .fc-text strong { color: rgba(255,255,255,.88); display: block; font-size: .8rem; margin-bottom: 1px; }

.footer-social-links { display: flex; gap: 8px; margin-top: 1rem; }
.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: var(--gf-transition);
}
.footer-social-links a:hover {
  background: var(--gf-gold);
  color: var(--gf-green-dark);
  transform: translateY(-3px);
}

.footer-newsletter input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px 0 0 8px;
  color: var(--gf-white);
  font-size: .87rem;
  padding: .65rem 1rem;
  outline: none;
  transition: var(--gf-transition);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter input:focus { border-color: var(--gf-gold); background: rgba(255,255,255,.15); }
.footer-newsletter button {
  background: var(--gf-gold);
  border: none;
  color: var(--gf-green-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .65rem 1.2rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: var(--gf-transition);
}
.footer-newsletter button:hover { background: var(--gf-gold-light); }

.footer-bottom {
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gf-gold); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Lightbox Modal --- */
.lightbox-modal .modal-dialog { max-width: 900px; }
.lightbox-modal .modal-content {
  background: var(--gf-green-dark);
  border: none;
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
}
.lightbox-modal .modal-header {
  border: none;
  padding: 1rem 1.5rem .5rem;
}
.lightbox-modal .btn-close { filter: invert(1); }
.lightbox-modal .modal-body { padding: 0; }
.lightbox-modal img { width: 100%; max-height: 70vh; object-fit: contain; }

/* --- Map Container --- */
.map-container iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: var(--gf-radius-lg);
  display: block;
}

/* --- Misc --- */
.divider-wave {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f9fbf7' fill-opacity='1' d='M0,32L80,37.3C160,43,320,53,480,53.3C640,53,800,43,960,37.3C1120,32,1280,32,1360,32L1440,32L1440,60L1360,60C1280,60,1120,60,960,60C800,60,640,60,480,60C320,60,160,60,80,60L0,60Z'/%3E%3C/svg%3E");
  background-size: cover;
}

.badge-reg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .4rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.badge-reg-green { background: var(--gf-green-pale); color: var(--gf-green-dark); }
.badge-reg-gold { background: rgba(233,161,42,.15); color: #7a4a00; }

.highlight-box {
  background: var(--gf-green-pale);
  border-left: 4px solid var(--gf-green);
  border-radius: 0 var(--gf-radius) var(--gf-radius) 0;
  padding: 1.2rem 1.5rem;
  font-size: .92rem;
  color: var(--gf-green-dark);
  line-height: 1.7;
}
.highlight-box strong { font-weight: 700; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .hero-home { min-height: auto; padding: 80px 0 60px; }
  .hero-home .hero-img-main { height: 360px; margin-top: 2.5rem; }
  .hero-card-float.card-1 { left: 0; bottom: 20px; }
  .hero-card-float.card-2 { right: 0; top: 20px; }
  .navbar-main .nav-link::after { display: none; }
  .section-pad { padding: 70px 0; }
  .impact-divider { display: none; }
}

@media (max-width: 767.98px) {
  .hero-home h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .hero-stats { gap: 1.2rem; }
  .donate-amount-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar .d-md-flex { display: none !important; }
  .footer-top { padding: 50px 0 35px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  #backToTop { bottom: 88px; right: 20px; }
}

@media (max-width: 575.98px) {
  .hero-card-float { display: none; }
  .hero-stats .hero-stat:nth-child(n+4) { display: none; }
}

/* --- AOS Custom --- */
[data-aos] { transition-property: transform, opacity !important; }

/* --- Accessibility --- */
:focus-visible {
  outline: 3px solid var(--gf-green);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Placeholder Images (SVG-based) --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--gf-green-pale) 0%, var(--gf-gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gf-gray-400);
  font-size: 2rem;
}

/* Print */
@media print {
  .top-bar, .navbar-main, .whatsapp-float, #backToTop, .footer-main { display: none !important; }
}
