/* ================================================================
   VCI — THE VICEGERENTS CARE INITIATIVE
   Central Stylesheet  |  v1.0
   Stack: HTML5 · CSS3 · Google Fonts · Font Awesome · AOS · Swiper
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ----------------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary:          #1b9156;
  --primary-dark:     #157044;
  --primary-light:    #e8f5ee;
  --secondary:        #f5a623;
  --secondary-dark:   #d4891a;
  --secondary-light:  #fff8e8;
  --dark:             #1c2b4a;
  --dark-alt:         #243354;

  /* Text */
  --text:             #2d3748;
  --text-light:       #718096;
  --text-lighter:     #a0aec0;

  /* Backgrounds */
  --bg-light:         #f7fafc;
  --bg-off:           #eef2f7;
  --white:            #ffffff;

  /* UI */
  --border:           #e2e8f0;
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.06);
  --shadow:           0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:        0 8px 40px rgba(0,0,0,0.12);
  --shadow-hover:     0 12px 48px rgba(27,145,86,0.22);

  /* Radius */
  --radius-sm:        6px;
  --radius:           12px;
  --radius-lg:        20px;
  --radius-xl:        32px;

  /* Transitions */
  --ease:             all 0.3s ease;
  --ease-slow:        all 0.5s ease;

  /* Layout */
  --section-pad:      100px 0;
  --section-pad-sm:   60px 0;
  --container-max:    1200px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------
   4. UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section       { padding: var(--section-pad); }
.section-sm    { padding: var(--section-pad-sm); }
.section-bg    { background: var(--bg-light); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-green { background: var(--primary); color: var(--white); }
.text-center   { text-align: center; }
.text-white    { color: var(--white) !important; }
.text-primary  { color: var(--primary); }
.text-secondary{ color: var(--secondary); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.accent-line        { width: 50px; height: 3px; background: linear-gradient(90deg,var(--primary),var(--secondary)); border-radius: 2px; margin: 16px 0; }
.accent-line.center { margin: 16px auto; }

/* ----------------------------------------------------------------
   5. SECTION HEADER
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-dark .section-tag { color: var(--secondary); background: rgba(245,166,35,0.15); }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--text-light); font-size: 1.05rem; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p  { color: rgba(255,255,255,0.72); }

/* ----------------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-secondary { background: var(--secondary); color: var(--dark); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.35); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }

.btn-lg  { padding: 16px 40px; font-size: 1rem; }
.btn-sm  { padding: 10px 20px; font-size: 0.8rem; }
.btn-full{ width: 100%; justify-content: center; }

/* ----------------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--ease-slow);
}
.navbar.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  width: clamp(170px, 36vw, 250px);
  height: auto;
  display: none;
  transition: opacity 0.3s ease;
}

/* Light logo for transparent navbar */
.navbar:not(.scrolled) .nav-logo-light {
  display: block;
}

/* Dark logo for scrolled navbar */
.navbar.scrolled .nav-logo-dark {
  display: block;
}

/* Links */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block;
  padding: 8px 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.845rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border-radius: var(--radius-sm);
  transition: var(--ease);
}
.navbar.scrolled .nav-links a { color: var(--primary); }
.nav-links a:hover, .nav-links a.active { color: var(--secondary) !important; }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--primary-dark) !important; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-donate-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  padding: 10px 24px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50px;
  transition: var(--ease);
}
.nav-donate-btn:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.navbar.scrolled .nav-donate-btn { background: var(--primary); color: var(--white); }
.navbar.scrolled .nav-donate-btn:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(27,145,86,0.35); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; flex: 0 0 auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.9); border-radius: 2px; transition: var(--ease); }
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--ease);
}
.mobile-nav a:hover { color: var(--primary-dark); padding-left: 8px; }
.mobile-nav .mobile-donate {
  margin-top: 28px;
  display: inline-block;
  padding: 14px 36px;
  background: var(--secondary);
  color: var(--dark);
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
}

/* ----------------------------------------------------------------
   8. HERO / SLIDER
   ---------------------------------------------------------------- */
.hero-slider { position: relative; height: 100vh; min-height: 620px; }
.hero-slide  { height: 100vh; min-height: 620px; position: relative; display: flex; align-items: center; overflow: hidden; }

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.swiper-slide-active .hero-bg { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(28,43,74,0.88) 0%, rgba(30,122,75,0.55) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.swiper-slide-active .hero-tag { opacity: 1; transform: translateY(0); }
.hero-tag::before { content: ''; display: block; width: 30px; height: 2px; background: var(--secondary); }

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
.swiper-slide-active .hero-title { opacity: 1; transform: translateY(0); }
.hero-title span { color: var(--secondary); }

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}
.swiper-slide-active .hero-desc { opacity: 1; transform: translateY(0); }

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
}
.swiper-slide-active .hero-btns { opacity: 1; transform: translateY(0); }

/* Swiper pagination bullets */
.hero-slider .swiper-pagination { bottom: 40px; }
.hero-slider .swiper-pagination-bullet { width: 10px; height: 10px; background: rgba(255,255,255,0.45); opacity: 1; transition: var(--ease); }
.hero-slider .swiper-pagination-bullet-active { width: 34px; border-radius: 5px; background: var(--secondary); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 44px; right: 44px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.68rem; font-family: 'Poppins', sans-serif; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.65), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{ transform: scaleY(1); opacity: 1; } 50%{ transform: scaleY(0.4); opacity: 0.25; } }

/* ----------------------------------------------------------------
   9. STATS SECTION
   ---------------------------------------------------------------- */
.stats-section {   background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
; padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 58px; height: 58px;
  background: rgba(245,166,35,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.45rem; color: var(--secondary);
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5.5vw, 2.8rem); font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 10px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-number .suffix { font-size: clamp(1.35rem, 3.8vw, 1.8rem); color: var(--secondary); }
.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ----------------------------------------------------------------
   10. ABOUT PREVIEW
   ---------------------------------------------------------------- */
.about-preview .image-wrap { position: relative; }
.about-preview .main-img   { border-radius: var(--radius-lg); width: 100%; height: 500px; object-fit: cover; }
.about-preview .badge-float {
  position: absolute; bottom: 32px; left: -28px;
  background: var(--white); border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
}
.badge-icon {
  width: 52px; height: 52px;
  background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary); flex-shrink: 0;
}
.badge-text .num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.badge-text p { font-size: 0.78rem; color: var(--text-light); margin: 0; }

.about-preview .content { padding-left: 48px; }
.about-values-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.value-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--bg-light);
  border-radius: var(--radius); border-left: 3px solid var(--primary);
  transition: var(--ease);
}
.value-item:hover { background: var(--primary-light); transform: translateX(5px); }
.value-icon {
  width: 36px; height: 36px;
  background: var(--primary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem; flex-shrink: 0;
}
.value-item h5 { font-size: 0.92rem; margin-bottom: 2px; }
.value-item p  { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ----------------------------------------------------------------
   11. FOCUS AREA CARDS
   ---------------------------------------------------------------- */
.focus-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: var(--ease-slow);
}
.focus-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.focus-card:hover::before { transform: scaleX(1); }
.focus-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }

.focus-icon {
  width: 70px; height: 70px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 24px; transition: var(--ease);
}
.focus-card:hover .focus-icon { background: var(--primary) !important; color: var(--white) !important; }
.focus-card h3  { font-size: 1.1rem; margin-bottom: 12px; }
.focus-card p   { color: var(--text-light); font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; }
.focus-card .read-link {
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); display: flex; align-items: center; gap: 6px; transition: var(--ease);
}
.focus-card:hover .read-link { gap: 12px; }

/* ----------------------------------------------------------------
   12. PROJECT CARDS
   ---------------------------------------------------------------- */
.project-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--ease-slow);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card-img { height: 220px; overflow: hidden; position: relative; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-card-img img { transform: scale(1.06); }

.project-badge {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Poppins', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.project-badge.ongoing   { background: var(--secondary); color: var(--dark); }
.project-badge.active    { background: var(--primary); color: var(--white); }
.project-badge.completed { background: var(--dark); color: var(--white); }

.project-card-body { padding: 24px; }
.project-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.project-card-body p  { color: var(--text-light); font-size: 0.875rem; margin-bottom: 20px; }

.progress-wrap { margin-bottom: 20px; }
.progress-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.progress-label { font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--text); }
.progress-pct   { font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--primary); }
.progress-bar   { height: 6px; background: var(--bg-off); border-radius: 3px; overflow: hidden; }
.progress-fill  { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; width: 0; transition: width 1.5s ease; }

/* ----------------------------------------------------------------
   13. TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow); position: relative; margin: 20px 10px;
}
.testimonial-card::before {
  content: '\201C'; font-family: Georgia, serif;
  font-size: 7rem; color: var(--primary-light);
  position: absolute; top: -14px; left: 22px; line-height: 1;
}
.testimonial-text  { font-size: 0.98rem; line-height: 1.85; color: var(--text); font-style: italic; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author{ display: flex; align-items: center; gap: 14px; }
.testimonial-avatar{ width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); }
.testimonial-info h5 { font-size: 0.92rem; margin-bottom: 2px; }
.testimonial-info span { font-size: 0.78rem; color: var(--text-light); }
.star-rating { color: var(--secondary); font-size: 0.78rem; margin-bottom: 4px; }

.testimonials-mobile-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonials-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.testimonials-arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ----------------------------------------------------------------
   14. PARTNERS MARQUEE
   ---------------------------------------------------------------- */
.partners-section { padding: 60px 0; background: var(--bg-light); overflow: hidden; }
.partners-marquee { overflow: hidden; }
.partners-track {
  display: flex; gap: 20px; align-items: center;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

.partner-logo-item {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: 'Poppins', sans-serif; font-weight: 700;
  color: var(--text-light); font-size: 0.88rem;
  white-space: nowrap; transition: var(--ease); min-width: 140px; text-align: center;
}
.partner-logo-item:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow); }

/* ----------------------------------------------------------------
   15. DONATION CTA BANNER
   ---------------------------------------------------------------- */
.donate-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.donate-cta::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.donate-cta-content { text-align: center; position: relative; z-index: 1; }
.donate-cta h2       { color: var(--white); margin-bottom: 16px; }
.donate-cta p        { color: rgba(255,255,255,0.75); font-size: 1.08rem; max-width: 560px; margin: 0 auto 36px; }
.donate-cta-btns     { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   16. NEWS CARDS
   ---------------------------------------------------------------- */
.news-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--ease-slow); display: flex; flex-direction: column;
  position: relative;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card-img { height: 200px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 24px; padding-top: 66px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.news-cat  { font-family: 'Poppins', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); background: var(--primary-light); padding: 3px 10px; border-radius: 50px; }
.news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  padding: 8px 12px;
  border: 1px solid var(--primary-dark);
  border-radius: 8px;
}

.news-card .news-meta { margin-bottom: 0; }

.news-card .news-date {
  padding: 9px 14px 9px 12px;
  border-left: none;
  border-radius: 0 8px 8px 0;
  position: absolute;
  top: 212px;
  left: 0;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(27,145,86,0.28);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.news-card-body h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.45; }
.news-card-body p  { color: var(--text-light); font-size: 0.875rem; flex: 1; }
.news-read-more {
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); display: flex; align-items: center; gap: 6px;
  margin-top: 16px; transition: var(--ease);
}
.news-read-more:hover { gap: 12px; color: var(--primary-dark); }

/* ----------------------------------------------------------------
   17. GALLERY
   ---------------------------------------------------------------- */
.gallery-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.gallery-swiper {
  padding-bottom: 12px;
}

.gallery-item {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-swiper .gallery-pagination {
  position: static;
  margin-top: 24px;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: 0.45;
  background: var(--primary);
}

.gallery-swiper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 8px;
  opacity: 1;
  background: var(--secondary);
}

/* ----------------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------------- */
.footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }

.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand .nav-logo-img {
  display: block;
  height: 36px;
  width: auto;
  opacity: 0.92;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.85; margin-bottom: 24px; color: rgba(255,255,255,0.62); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--ease);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-col h4 {
  color: var(--white); font-size: 0.95rem;
  font-family: 'Poppins', sans-serif; font-weight: 600;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: rgba(255,255,255,0.58); }

.footer-links li  { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.58);
  transition: var(--ease); display: flex; align-items: center; gap: 7px;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-links a i { font-size: 0.68rem; }

.footer-contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 0.875rem; color: rgba(255,255,255,0.58); align-items: flex-start; }
.footer-contact i  { color: rgba(255,255,255,0.58); margin-top: 4px; font-size: 0.88rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p    { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a    { color: var(--primary); }
.footer-bottom a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   18. PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,122,75,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-tag { color: var(--secondary); background: rgba(245,166,35,0.15); margin-bottom: 16px; display: inline-block; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto 20px; position: relative; z-index: 1; }
.breadcrumb   { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,0.72); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb i { font-size: 0.58rem; }

/* ----------------------------------------------------------------
   19. ABOUT PAGE
   ---------------------------------------------------------------- */
.core-value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; transition: var(--ease-slow);
}
.core-value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.core-value-icon {
  width: 68px; height: 68px; border-radius: var(--radius); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem; transition: var(--ease);
}
.core-value-card:hover .core-value-icon { background: var(--primary) !important; color: var(--white) !important; }
.core-value-card h4 { margin-bottom: 10px; }
.core-value-card p  { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* Timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--border); transform: translateX(-50%);
}
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 40px); margin-bottom: 48px; position: relative; }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 40px); }
.timeline-dot {
  position: absolute; left: 50%; top: 24px; transform: translateX(-50%);
  width: 16px; height: 16px; background: var(--primary); border-radius: 50%;
  border: 3px solid var(--white); box-shadow: 0 0 0 4px var(--primary-light);
}
.timeline-content {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; max-width: 400px; box-shadow: var(--shadow-sm);
}
.timeline-year { font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--primary); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.timeline-content h4 { margin-bottom: 8px; color: var(--dark); }
.timeline-content p  { font-size: 0.875rem; color: var(--text); margin: 0; }

/* Team */
.team-card {
  text-align: center; background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; border: 1px solid var(--border); transition: var(--ease-slow);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; object-fit: cover; border: 4px solid var(--primary-light); }
.team-card h4  { margin-bottom: 4px; }
.team-role     { font-size: 0.8rem; color: var(--primary); font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 12px; display: block; }
.team-card > p { font-size: 0.85rem; color: var(--text-light); }
.team-social   { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.team-social a { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.8rem; transition: var(--ease); }
.team-social a:hover { background: var(--primary); color: var(--white); }

/* ----------------------------------------------------------------
   20. FOCUS AREAS PAGE (detailed)
   ---------------------------------------------------------------- */
.focus-section { padding: 80px 0; }
.focus-section + .focus-section { border-top: 1px solid var(--border); }

/* ----------------------------------------------------------------
   21. PROGRAMS PAGE
   ---------------------------------------------------------------- */
.program-item {
  display: grid; grid-template-columns: auto 1fr; gap: 28px;
  padding: 36px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 24px; align-items: flex-start; transition: var(--ease);
}
.program-item:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.program-item-icon  { width: 68px; height: 68px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; flex-shrink: 0; }
.program-item h3    { font-size: 1.1rem; margin-bottom: 10px; }
.program-item p     { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.program-tags       { display: flex; flex-wrap: wrap; gap: 8px; }
.program-tag {
  font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
  background: var(--bg-light); color: var(--text-light); border: 1px solid var(--border);
}

/* ----------------------------------------------------------------
   22. DONATE PAGE
   ---------------------------------------------------------------- */
.donate-frequency {
  display: flex; border: 2px solid var(--border); border-radius: 50px;
  overflow: hidden; width: fit-content; margin-bottom: 24px;
}
.freq-btn { padding: 10px 28px; font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: var(--ease); background: transparent; color: var(--text-light); border: none; }
.freq-btn.active { background: var(--primary); color: var(--white); }

.donate-amounts { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
.amount-btn {
  padding: 16px; border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--text);
  cursor: pointer; transition: var(--ease); text-align: center;
}
.amount-btn:hover, .amount-btn.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

/* Forms */
.form-group  { margin-bottom: 20px; }
.form-label  { display: block; font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-input  {
  width: 100%; padding: 14px 16px; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: var(--ease);
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,122,75,0.1); }
.form-input::placeholder { color: var(--text-lighter); }
textarea.form-input { resize: vertical; min-height: 130px; }
select.form-input  { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.impact-impact-item { text-align: center; padding: 28px 20px; border-right: 1px solid var(--border); }
.impact-impact-item:last-child { border-right: none; }
.impact-impact-item .num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); }
.impact-impact-item p { font-size: 0.85rem; color: var(--text-light); margin: 6px 0 0; }

/* ----------------------------------------------------------------
   23. CONTACT PAGE
   ---------------------------------------------------------------- */
.contact-info-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; transition: var(--ease-slow);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.contact-icon { width: 64px; height: 64px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.4rem; color: var(--primary); }
.contact-info-card h4 { margin-bottom: 8px; }
.contact-info-card p  { font-size: 0.875rem; color: var(--text-light); margin: 0; }
.contact-info-card a  { color: var(--primary); font-weight: 600; }
.map-embed { width: 100%; height: 400px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ----------------------------------------------------------------
   24. PARTNERSHIPS PAGE
   ---------------------------------------------------------------- */
.partner-tier {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center; position: relative; transition: var(--ease-slow);
}
.partner-tier.featured { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,122,75,0.08); }
.partner-tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-family: 'Poppins', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; background: var(--secondary); color: var(--dark); border-radius: 50px;
}
.tier-icon   { font-size: 2.5rem; margin-bottom: 16px; }
.partner-tier h3 { margin-bottom: 8px; }
.tier-desc   { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }
.tier-benefits { text-align: left; margin-bottom: 32px; }
.tier-benefits li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid var(--bg-off);
  font-size: 0.875rem; color: var(--text);
}
.tier-benefits li:last-child { border-bottom: none; }
.tier-benefits i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   25. BACK TO TOP
   ---------------------------------------------------------------- */
.back-to-top {
  position: fixed; bottom: 32px; right: max(16px, env(safe-area-inset-right)); z-index: 900;
  width: 46px; height: 46px; background: var(--primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow); cursor: pointer;
  transition: var(--ease); opacity: 0; visibility: hidden; border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover   { background: var(--primary-dark); transform: translateY(-4px); }

@media (max-width: 600px) {
  .back-to-top {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ----------------------------------------------------------------
   26. SWIPER OVERRIDES
   ---------------------------------------------------------------- */
.swiper-button-next, .swiper-button-prev {
  color: var(--primary) !important; background: var(--white);
  width: 44px !important; height: 44px !important;
  border-radius: 50%; box-shadow: var(--shadow);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.9rem !important; font-weight: 900; }

/* ----------------------------------------------------------------
   27. ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes fadeInUp { from{ opacity:0; transform:translateY(30px); } to{ opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from{ opacity:0; } to{ opacity:1; } }
@keyframes pulse    { 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.05); } }
@keyframes shimmer  { 0%{ background-position: -200% 0; } 100%{ background-position: 200% 0; } }

/* ----------------------------------------------------------------
   28. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .grid-4        { grid-template-columns: repeat(2,1fr); }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3),
  .stats-grid .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .donate-amounts{ grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 70px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .testimonials-mobile-nav { display: flex; }
  .focus-card { padding: 30px 22px; }
  .focus-icon { width: 62px; height: 62px; margin-bottom: 18px; font-size: 1.5rem; }
  .about-preview .content { padding-left: 0; }
  .about-preview .badge-float { left: 0; }
  .navbar .container { min-width: 0; }
  .nav-logo { max-width: calc(100% - 52px); }
  .nav-logo-img { max-width: 100%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger  { display: flex; margin-left: 10px; }
  .mobile-nav { display: flex; }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) { justify-content: flex-start; padding-left: 56px; padding-right: 0; }
  .timeline-dot { left: 20px; }
  .timeline-content { max-width: 100%; }
  .program-item { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: 1fr; }
  .stat-item       { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); padding: 26px 16px; }
  .stats-grid .stat-item:first-child { border-top: none; }
  .stat-label      { letter-spacing: 0.06em; }
  .hero-title      { font-size: clamp(1.5rem, 7vw, 2rem); margin-bottom: 14px; }
  .hero-desc       { font-size: 0.94rem; margin-bottom: 22px; }
  .hero-btns       { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .hero-btns .btn  { font-size: 0.8rem; padding: 10px 18px; }
  .donate-amounts  { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .donate-cta-btns { flex-direction: row; align-items: center; }
  .hero-scroll     { display: none; }
}

/* ----------------------------------------------------------------
   29. NEWS IMAGE POPUP
   ---------------------------------------------------------------- */
.image-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 21, 38, 0.82);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.image-popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.image-popup-dialog {
  position: relative;
  width: min(96vw, 1000px);
  max-height: 92vh;
}

.image-popup-media {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
  background: #0f1a31;
}

.image-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(28, 43, 74, 0.94);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.image-popup-close:hover {
  background: var(--primary);
  border-color: var(--primary);
}

body.image-popup-open {
  overflow: hidden;
}
