:root {
  --green-dark: #1a4a2e;
  --green-mid: #2d6a4f;
  --green-bright: #3a9a5c;
  --green-light: #d4edda;
  --green-pale: #f0faf3;
  --gold: #c9a84c;
  --gold-light: #f5e6c0;
  --white: #ffffff;
  --off-white: #f8f9f5;
  --text-dark: #1a2e1e;
  --text-mid: #4a6352;
  --text-light: #7a9882;
  --shadow: 0 4px 24px rgba(26,74,46,0.10);
  --shadow-lg: 0 12px 48px rgba(26,74,46,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,74,46,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--green-dark);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 15px; letter-spacing: 0.5px;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--green-dark); }
.nav-logo-sub { font-size: 10px; color: var(--text-light); font-weight: 400; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text-mid); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--green-light); color: var(--green-dark); }
.nav-donate {
  background: var(--green-dark); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-donate:hover { background: var(--green-bright) !important; color: var(--white) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 24px 5vw;
  overflow-y: auto; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text-dark); font-size: 18px; font-weight: 500;
  padding: 14px 16px; border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--green-light); transition: var(--transition);
}
.mobile-menu a:hover { background: var(--green-pale); color: var(--green-dark); }
.mobile-donate { background: var(--green-dark) !important; color: var(--white) !important; border-radius: 50px !important; border-bottom: none !important; text-align: center; margin-top: 16px; }

/* ===== PAGES ===== */
.page { display: none; padding-top: 68px; min-height: 100vh; }
.page.active { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 92vh; background: var(--green-dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url(image/IMG-20260607-WA0138.jpg) center/cover;
  opacity: 0.18;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(58,154,92,0.12) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2; padding: 80px 5vw;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); line-height: 1.15; font-weight: 900; margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.75); font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7; margin-bottom: 36px; max-width: 540px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--green-dark);
  font-weight: 700; font-size: 15px; padding: 14px 28px;
  border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary:hover { background: #e0b85a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 15px; padding: 13px 28px;
  border-radius: 50px; text-decoration: none; border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-stats {
  position: absolute; bottom: 40px; right: 5vw; z-index: 2;
  display: flex; gap: 24px; flex-wrap: wrap;
}
.hero-stat {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
  padding: 18px 24px; text-align: center;
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 900; color: var(--gold); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 5vw; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--green-dark); margin-bottom: 14px; line-height: 1.2;
}
.section-subtitle { color: var(--text-mid); font-size: 1rem; line-height: 1.7; max-width: 600px; }
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== CARDS ===== */
.cards-grid { display: grid; gap: 24px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); border: 1px solid var(--green-light);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; margin-bottom: 10px;
}
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-dark); margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }
.card-footer { padding: 0 24px 20px; display: flex; align-items: center; justify-content: space-between; }

/* ===== DONATE BUTTON ===== */
.btn-donate {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-bright); color: var(--white);
  font-weight: 600; font-size: 13px; padding: 10px 20px;
  border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-donate:hover { background: var(--green-dark); transform: scale(1.03); }

/* ===== ABOUT SECTION ===== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; display: block; }
.about-badge-over {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--gold); color: var(--green-dark);
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900;
  padding: 16px 20px; border-radius: var(--radius-sm); text-align: center;
  min-width: 120px;
}
.about-badge-over span { display: block; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.about-content { }
.values-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.value-chip {
  background: var(--green-pale); color: var(--green-dark); font-size: 13px;
  font-weight: 600; padding: 8px 16px; border-radius: 50px;
  border: 1px solid var(--green-light);
}

/* ===== PROGRAMS ===== */
.program-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--green-light);
  transition: var(--transition); position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-icon {
  width: 52px; height: 52px; background: var(--green-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.program-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 10px; }
.program-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ===== IMPACT STRIP ===== */
.impact-strip {
  background: var(--green-dark); padding: 60px 5vw;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.impact-item { text-align: center; }
.impact-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.impact-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--green-pale); border: 1px solid var(--green-light);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.testimonial-card::before { content: '\201C'; font-size: 80px; line-height: 0; color: var(--green-light); font-family: Georgia, serif; position: absolute; top: 30px; left: 24px; }
.testimonial-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; padding-top: 20px; position: relative; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-mid); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--green-dark); }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ===== SECTION ALTERNATING BG ===== */
.bg-pale { background: var(--green-pale); }
.bg-dark { background: var(--green-dark); }
.bg-dark .section-title, .bg-dark .section-label { color: var(--gold); }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ===== HERO INNER (sub-pages) ===== */
.hero-inner {
  background: var(--green-dark); padding: 64px 5vw 48px;
  position: relative; overflow: hidden;
}
.hero-inner-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/31233915/pexels-photo-31233915.jpeg') center/cover;
  opacity: 0.12;
}
.hero-inner-content { position: relative; z-index: 2; }
.hero-inner h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); font-weight: 900; margin-bottom: 12px;
}
.hero-inner p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 560px; line-height: 1.6; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb-sep { opacity: 0.4; }

/* ===== MISSION VISION ===== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.mv-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 2px solid var(--green-light); text-align: center;
}
.mv-icon { font-size: 40px; margin-bottom: 16px; }
.mv-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 12px; }
.mv-card p { color: var(--text-mid); line-height: 1.7; }

/* ===== WHERE WE WORK ===== */
.where-work { display: flex; align-items: center; gap: 16px; padding: 28px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.where-work-icon { font-size: 48px; flex-shrink: 0; }

/* ===== APPEALS ===== */
.appeal-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--green-light); transition: var(--transition); }
.appeal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.appeal-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.appeal-card-body { padding: 22px; }
.appeal-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 8px; }
.appeal-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.progress-bar { height: 6px; background: var(--green-light); border-radius: 3px; margin-bottom: 8px; }
.progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--green-bright), var(--gold)); }
.progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-light); margin-bottom: 14px; }

/* ===== VOLUNTEER FORM ===== */
.vol-form { max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--green-light);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--text-dark); background: var(--white); outline: none; transition: var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(58,154,92,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--green-dark); color: var(--white);
  padding: 14px 36px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-submit:hover { background: var(--green-bright); transform: translateY(-2px); }

/* ===== BLOG ===== */
.blog-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--green-light); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-card-body { padding: 24px; }
.blog-date { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.btn-read { color: var(--green-bright); font-weight: 700; font-size: 13px; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); background: none; border: none; cursor: pointer; }
.btn-read:hover { color: var(--green-dark); gap: 8px; }

/* ===== DONATE PAGE ===== */
.donate-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.donate-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.amount-btn {
  padding: 14px; border: 2px solid var(--green-light); border-radius: var(--radius-sm);
  background: var(--white); font-family: 'DM Sans', sans-serif; font-size: 15px;
  font-weight: 700; color: var(--green-dark); cursor: pointer; transition: var(--transition);
}
.amount-btn:hover, .amount-btn.selected { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.bank-details { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.bank-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--green-light); }
.bank-row:last-child { border-bottom: none; }
.bank-label { font-size: 13px; color: var(--text-light); }
.bank-value { font-weight: 700; color: var(--green-dark); font-size: 14px; text-align: right; max-width: 180px; }
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.payment-method {
  background: var(--white); border: 1.5px solid var(--green-light); border-radius: var(--radius-sm);
  padding: 18px; text-align: center; transition: var(--transition); cursor: pointer;
}
.payment-method:hover { border-color: var(--green-bright); background: var(--green-pale); }
.payment-method-icon { font-size: 28px; margin-bottom: 8px; }
.payment-method-name { font-size: 13px; font-weight: 700; color: var(--green-dark); }
.payment-method-detail { font-size: 11px; color: var(--text-light); margin-top: 2px; }

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark); color: var(--white); padding: 64px 5vw 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-weight: 700; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.5; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green-bright); border-color: var(--green-bright); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ===== SUBSCRIBE STRIP ===== */
.subscribe-strip {
  background: var(--green-mid); padding: 48px 5vw;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.subscribe-strip h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); }
.subscribe-strip p { color: rgba(255,255,255,0.75); font-size: 14px; margin-top: 4px; }
.subscribe-form { display: flex; gap: 10px; }
.subscribe-input {
  padding: 12px 20px; border: none; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; min-width: 260px; background: rgba(255,255,255,0.15);
  color: var(--white); backdrop-filter: blur(4px);
}
.subscribe-input::placeholder { color: rgba(255,255,255,0.5); }
.btn-subscribe {
  background: var(--gold); color: var(--green-dark); font-weight: 700;
  font-size: 14px; padding: 12px 24px; border-radius: 50px;
  border: none; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-subscribe:hover { background: #e0b85a; }

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed; bottom: 28px; right: 24px; z-index: 998;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-wa {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition); font-size: 26px;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.float-wa-label {
  background: var(--green-dark); color: var(--white); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; white-space: nowrap;
  opacity: 0; transform: translateX(10px); transition: var(--transition);
  pointer-events: none;
}
.float-btns:hover .float-wa-label { opacity: 1; transform: translateX(0); }

/* ===== SOCIAL SIDE (desktop) ===== */
.social-side {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 900; display: flex; flex-direction: column; gap: 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; overflow: hidden;
  box-shadow: var(--shadow);
}
.social-side a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; text-decoration: none; font-size: 16px;
  transition: var(--transition); color: var(--white);
}
.social-side a:hover { width: 52px; }
.social-fb { background: #1877F2; }
.social-tw { background: #1DA1F2; }
.social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-yt { background: #FF0000; }
.social-tk { background: #010101; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 80px 5vw; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.1), transparent 60%);
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 32px; position: relative; }

/* ===== NEWS HERO ===== */
.news-featured { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-bottom: 48px; }
.news-featured-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.news-featured-main img { width: 100%; height: 380px; object-fit: cover; display: block; }
.news-featured-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,74,46,0.95));
  padding: 40px 28px 28px;
}
.news-featured-overlay h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 8px; }
.news-featured-overlay p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; }
.news-side { display: flex; flex-direction: column; gap: 16px; }
.news-side-item { display: flex; gap: 14px; padding: 16px; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow); border: 1px solid var(--green-light); transition: var(--transition); }
.news-side-item:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.news-side-img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.news-side-body h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--green-dark); margin-bottom: 4px; line-height: 1.3; }
.news-side-body p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .about-split, .donate-layout, .news-featured, .mv-grid { grid-template-columns: 1fr; }
  .impact-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { position: static; padding: 0 5vw 40px; }
  .social-side { display: none; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid-3, .cards-grid-4, .cards-grid-2 { grid-template-columns: 1fr; }
  .impact-strip { grid-template-columns: repeat(2, 1fr); padding: 40px 5vw; }
  .impact-num { font-size: 2.2rem; }
  .donate-amounts { grid-template-columns: 1fr 1fr; }
  .payment-methods { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .subscribe-input { min-width: 100%; }
  .subscribe-strip { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  section { padding: 48px 5vw; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.page.active > * { animation: fadeUp 0.45s ease both; }
.page.active > *:nth-child(2) { animation-delay: 0.08s; }
.page.active > *:nth-child(3) { animation-delay: 0.16s; }
