/* ===== CSS VARIABLES ===== */
:root {
  --green-dark:  #0a5c30;
  --green:       #0f7b3f;
  --green-light: #1da55a;
  --red:         #c62828;
  --red-light:   #e53935;
  --gold:        #e8a020;
  --white:       #ffffff;
  --off-white:   #f7f9f7;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.13);
  --radius:      16px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  transition: color var(--transition);
}
.topbar-right a:hover { color: var(--gold); }
@media(max-width:640px){ .topbar { display:none; } }

/* ===== NAVBAR ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}
.nav-brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: contain; }
.nav-brand span { display: flex; flex-direction: column; }
.nav-brand small { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 400; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: #f0faf4; color: var(--green); }
.nav-donate {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition) !important;
  box-shadow: 0 4px 14px rgba(15,123,63,0.3);
}
.nav-donate:hover { background: var(--green-dark) !important; transform: translateY(-2px); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--green-dark);
  cursor: pointer;
  padding: 4px;
}
@media(max-width:900px){
  .nav-links { 
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 16px;
    box-shadow: var(--shadow-md); gap: 4px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; width: 100%; padding: 12px 16px; }
  .nav-hamburger { display: block; }
}

/* ===== HERO / BANNER ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1){ background-image: url('ds34.jpg.jpeg'); }
.hero-slide:nth-child(2){ background-image: url('ds10.jpg.jpeg'); }
.hero-slide:nth-child(3){ background-image: url('ds4.jpg.jpeg'); }
.hero-slide:nth-child(4){ background-image: url('ds30.jpg.jpeg'); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(10,92,48,0.78) 0%, rgba(0,0,0,0.5) 60%, rgba(198,40,40,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; color: var(--white);
  padding: 0 20px; max-width: 820px;
  animation: heroIn 1s ease both;
}
@keyframes heroIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold);
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.92;
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--white);
  color: var(--green-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  border: none;
}
.btn-hero-primary:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
#heroPrev { left: 24px; }
#heroNext { right: 24px; }
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--white); width: 24px; border-radius: 4px; }
@media(max-width:640px){ .hero{ height: 65vh; min-height:400px; } }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--green-dark);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; color: var(--white); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-lbl { font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }
@media(max-width:640px){ .stats-strip{ gap:32px; padding:24px 20px; } .stat-num{font-size:1.8rem;} }

/* ===== SECTION COMMON ===== */
.section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px; margin: 16px auto 0;
}
.divider-left { margin: 16px 0 0; }

/* ===== ABOUT ===== */
#about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 420px;
}
.about-img-main {
  position: absolute;
  right: 0; bottom: 0;
  width: 80%; height: 85%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  left: 0; top: 0;
  width: 52%; height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-badge {
  position: absolute;
  bottom: 30px; left: -10px;
  background: var(--green);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-badge strong { display: block; font-size: 1.8rem; font-family:'Playfair Display',serif; }
.about-badge span { font-size: 0.75rem; opacity:0.85; text-transform:uppercase; letter-spacing:1px; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; font-size: 1.02rem; }
.about-text p:first-of-type { color: var(--text); font-size: 1.05rem; }
.about-more { display: none; }
.btn-read-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--green); padding: 10px 24px; border-radius: 50px;
  margin-top: 8px; transition: var(--transition); cursor: pointer; background: none;
}
.btn-read-more:hover { background: var(--green); color: var(--white); }
.about-features { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.about-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500; color: var(--green-dark);
}
.about-feat i { color: var(--green); font-size: 1.1rem; }
@media(max-width:900px){
  .about-grid{grid-template-columns:1fr; gap:40px;}
  .about-img-stack{height:280px;}
}

/* ===== CAUSES ===== */
#causes { background: var(--white); }
.causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cause-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.cause-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.cause-card-img {
  position: relative; height: 200px; overflow: hidden;
}
.cause-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.cause-card:hover .cause-card-img img { transform: scale(1.06); }
.cause-icon {
  position: absolute; bottom: -18px; left: 20px;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-sm);
  z-index: 2;
}
.cause-card-body { padding: 32px 22px 24px; flex:1; }
.cause-card-body h3 { font-family:'Playfair Display',serif; font-size:1.18rem; font-weight:700; margin-bottom:10px; color: var(--text); }
.cause-card-body p { color: var(--text-muted); font-size:0.91rem; line-height:1.7; }
.cause-progress { margin-top: 18px; }
.cause-progress-bar { height:5px; background: #e8f5e9; border-radius:3px; overflow:hidden; }
.cause-progress-fill { height:100%; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius:3px; }
.cause-progress-label { display:flex; justify-content:space-between; font-size:0.76rem; color:var(--text-muted); margin-top:6px; }
@media(max-width:900px){ .causes-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:580px){ .causes-grid{grid-template-columns:1fr;} }

/* ===== IMPACT / CTA BAND ===== */
.impact-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d5f32 60%, #1a3a2a 100%);
  color: var(--white);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.impact-band::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.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.impact-band h2 { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,4vw,2.8rem); font-weight:900; margin-bottom:16px; position:relative; }
.impact-band p { font-size:1.05rem; opacity:0.85; max-width:600px; margin:0 auto 36px; position:relative; }
.btn-donate-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  padding: 16px 40px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
  transition: var(--transition); cursor: pointer; border: none;
  position: relative;
}
.btn-donate-cta:hover { background: #d48f10; transform: translateY(-3px); color: var(--white); }

/* ===== BLOG ===== */
#blog { background: var(--off-white); }
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-img { height: 220px; overflow: hidden; background: #f0f0ee; }
.blog-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, #f2faf4, #fef2f2); color:#ccc; font-size:2.5rem;
}
.blog-body { padding: 28px; flex:1; display:flex; flex-direction:column; }
.blog-tag {
  display: inline-block; background: #fef2f2; color: var(--red);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  border: 1px solid #fcd5d5; margin-bottom: 14px;
}
.blog-body h3 { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; margin-bottom:12px; line-height:1.4; }
.blog-body p { color:var(--text-muted); font-size:0.91rem; line-height:1.75; flex:1; }
.blog-meta-row { display:flex; gap:16px; flex-wrap:wrap; padding-top:16px; margin-top:16px; border-top:1px solid var(--border); }
.blog-meta-row span { font-size:0.8rem; color:var(--text-muted); display:flex; align-items:center; gap:5px; }
.blog-meta-row i { color:var(--red); }
.blog-read-more {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--green); font-weight:600; font-size:0.87rem;
  margin-top:14px; transition: gap var(--transition);
  cursor: pointer;
}
.blog-read-more:hover { gap:10px; color:var(--green-dark); }
.blog-twitter-section { margin-top: 64px; }
.blog-twitter-section h3 {
  text-align:center; font-family:'Playfair Display',serif;
  font-size:1.4rem; margin-bottom:8px; color:var(--green-dark);
}
.blog-twitter-label { text-align:center; font-size:0.75rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--green); margin-bottom:28px; }
.twitter-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.twitter-grid blockquote.twitter-tweet { margin:0 !important; }
@media(max-width:700px){ .blog-grid{grid-template-columns:1fr;} }

/* ===== CONTACT ===== */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-list { list-style:none; margin-top: 28px; display:flex; flex-direction:column; gap:20px; }
.contact-info-item { display:flex; align-items:flex-start; gap:16px; }
.contact-icon-wrap {
  width:44px; height:44px; border-radius:12px;
  background: #f0faf4; color:var(--green);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.contact-info-item strong { display:block; font-size:0.85rem; font-weight:600; color:var(--text); margin-bottom:2px; }
.contact-info-item a, .contact-info-item span { color:var(--text-muted); font-size:0.92rem; transition:color var(--transition); }
.contact-info-item a:hover { color:var(--green); }
.contact-socials { display:flex; gap:12px; margin-top: 32px; flex-wrap:wrap; }
.social-btn {
  width:42px; height:42px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; background: var(--off-white);
  color: var(--text-muted); transition: var(--transition);
}
.social-btn:hover { background:var(--green); color:var(--white); transform:translateY(-3px); }
.whatsapp-big-btn {
  display:inline-flex; align-items:center; gap:10px;
  background:#25D366; color:white; padding:13px 26px;
  border-radius:50px; font-weight:600; font-size:0.95rem;
  margin-top:20px; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.whatsapp-big-btn:hover { background:#1aad52; transform:translateY(-2px); color:white; }

/* Contact form card */
.contact-form-card {
  background: var(--off-white);
  border-radius: 20px; padding: 40px; border: 1px solid var(--border);
}
.contact-form-card h3 { font-family:'Playfair Display',serif; font-size:1.5rem; font-weight:700; margin-bottom:8px; }
.contact-form-card p { color:var(--text-muted); font-size:0.91rem; margin-bottom:28px; }
.form-field { margin-bottom:18px; }
.form-field label { display:block; font-size:0.85rem; font-weight:600; margin-bottom:6px; color:var(--text); }
.form-field input, .form-field textarea, .form-field select {
  width:100%; padding:12px 16px; border:1.5px solid var(--border);
  border-radius:10px; font-family:'DM Sans',sans-serif; font-size:0.93rem;
  color:var(--text); background:var(--white); outline:none;
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus { border-color:var(--green); }
.form-field textarea { resize:vertical; min-height:110px; }
.btn-submit {
  width:100%; padding:13px; background:var(--green); color:var(--white);
  border:none; border-radius:10px; font-family:'DM Sans',sans-serif;
  font-size:1rem; font-weight:600; cursor:pointer; transition: var(--transition);
}
.btn-submit:hover { background:var(--green-dark); }
@media(max-width:860px){ .contact-grid{grid-template-columns:1fr; gap:36px;} }

/* ===== FOOTER ===== */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.85); }
.footer-main {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:48px; padding: 72px 24px 48px;
}
.footer-brand-logo { width:60px; height:60px; border-radius:50%; object-fit:contain; margin-bottom:16px; }
.footer-brand-name { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; color:white; margin-bottom:6px; }
.footer-brand-tagline { font-size:0.85rem; color:var(--gold); margin-bottom:14px; letter-spacing:0.5px; }
.footer-brand-desc { font-size:0.88rem; line-height:1.7; max-width:260px; }
.footer-col h4 { color:white; font-size:0.92rem; font-weight:700; letter-spacing:0.5px; margin-bottom:20px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { color:rgba(255,255,255,0.7); font-size:0.88rem; transition:color var(--transition); display:flex; align-items:center; gap:8px; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-col ul li a i { width:14px; }
.footer-socials { display:flex; gap:10px; margin-top:8px; flex-wrap:wrap; }
.footer-social-btn {
  width:36px; height:36px; border-radius:8px;
  background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.7);
  display:flex; align-items:center; justify-content:center;
  font-size:0.95rem; transition: var(--transition);
}
.footer-social-btn:hover { background:var(--gold); color:white; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  text-align:center; padding:18px 24px;
  font-size:0.83rem; color:rgba(255,255,255,0.55);
  display:flex; justify-content:center; align-items:center; gap:24px; flex-wrap:wrap;
}
.footer-bottom a { color:rgba(255,255,255,0.55); transition:color var(--transition); }
.footer-bottom a:hover { color:var(--gold); }
@media(max-width:900px){
  .footer-main{grid-template-columns:1fr 1fr; gap:32px;}
}
@media(max-width:580px){
  .footer-main{grid-template-columns:1fr; padding:40px 20px 32px;}
}

/* ===== DONATE MODAL ===== */
.modal-donate .modal-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white; border-radius: 16px 16px 0 0; padding: 22px 28px;
}
.modal-donate .modal-content { border-radius: 16px; border: none; overflow: hidden; }
.modal-donate .modal-title { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; }
.donate-method {
  background: var(--off-white); border-radius: 12px;
  padding: 16px 20px; display:flex; align-items:center; gap:14px;
  border: 1.5px solid var(--border); margin-bottom:12px; transition: var(--transition);
}
.donate-method:hover { border-color:var(--green); background:#f0faf4; }
.donate-method-icon {
  width:42px; height:42px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; flex-shrink:0;
}
.donate-method-icon.airtel { background:#fef3e2; color:#e65c00; }
.donate-method-icon.mtn { background:#fff8e1; color:#f59f00; }
.donate-method-icon.bank { background:#e3f2fd; color:#1565c0; }
.donate-method-label { font-weight:700; font-size:0.9rem; color:var(--text); margin-bottom:2px; }
.donate-method-number { font-size:1.05rem; font-weight:700; color:var(--green-dark); letter-spacing:1px; }
.donate-method-name { font-size:0.78rem; color:var(--text-muted); }
.donate-note {
  background: linear-gradient(135deg, #f0faf4, #fef2e3);
  border-radius: 10px; padding:14px 18px; text-align:center;
  font-size:0.88rem; color:var(--green-dark); font-weight:500;
  margin-top:8px; border:1px solid #c8e6c9;
}

/* ===== BACK TO TOP ===== */
#backTop {
  position: fixed; bottom:28px; right:28px; z-index:999;
  width:44px; height:44px; border-radius:50%;
  background:var(--green); color:white; border:none;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; cursor:pointer;
  box-shadow: 0 4px 16px rgba(15,123,63,0.4);
  opacity:0; pointer-events:none; transition: var(--transition);
}
#backTop.visible { opacity:1; pointer-events:auto; }
#backTop:hover { background:var(--green-dark); transform:translateY(-3px); }

/* ===== SCROLL ANIMATIONS ===== */
[data-reveal] { opacity:0; transform:translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity:1; transform:translateY(0); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="left"].revealed { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="right"].revealed { transform: translateX(0); }

/* ===== BLOG REDIRECT SECTION ===== */
.blog-redirect-section { background: linear-gradient(135deg, #f0faf4 0%, var(--off-white) 100%); }
.blog-redirect-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.blog-redirect-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--green-dark);
}
.blog-redirect-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.blog-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.blog-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f0faf4;
  border-radius: 10px;
  border-left: 4px solid var(--green);
}
.blog-feature-item i {
  color: var(--green);
  font-size: 1.2rem;
}
.blog-feature-item span {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.btn-visit-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(15, 123, 63, 0.3);
}
.btn-visit-blog:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 123, 63, 0.4);
  gap: 14px;
}
.blog-redirect-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #f2faf4 0%, #e8f5e9 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--green);
  opacity: 0.7;
}
@media(max-width:900px){
  .blog-redirect-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  .blog-redirect-content h3 { font-size: 1.6rem; }
  .blog-image-placeholder { height: 250px; font-size: 4rem; }
}
@media(max-width:580px){
  .blog-redirect-card {
    padding: 20px;
    gap: 20px;
  }
  .blog-redirect-content h3 { font-size: 1.4rem; }
  .blog-features { gap: 12px; }
  .btn-visit-blog { width: 100%; justify-content: center; }
}
