:root {
  --primary: #16a34a;
  --sky: #0ea5e9;
  --accent: #f97316;
  --cream: #fafaf8;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: #1a1a2e;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* ── DARK MODE ── */
[data-theme="dark"] body { background: #0f172a; color: #e2e8f0; }
[data-theme="dark"] .navbar { background: rgba(15,23,42,0.97) !important; border-color: rgba(255,255,255,0.05) !important; }
[data-theme="dark"] .card-glass { background: rgba(30,41,59,0.8) !important; border-color: rgba(255,255,255,0.1) !important; }
[data-theme="dark"] .section-light { background: #1e293b !important; }
[data-theme="dark"] .bg-white { background: #1e293b !important; }
[data-theme="dark"] .cause-card { background: #1e293b !important; color: #e2e8f0; }
[data-theme="dark"] .program-card { background: #1e293b !important; color: #e2e8f0; }
[data-theme="dark"] .event-card { background: #1e293b !important; }
[data-theme="dark"] .blog-card { background: #1e293b !important; }
[data-theme="dark"] .testimonial-card { background: #1e293b !important; }
[data-theme="dark"] .modal-box { background: #1e293b !important; }
[data-theme="dark"] input, [data-theme="dark"] select, [data-theme="dark"] textarea {
  background: #0f172a !important; color: #e2e8f0 !important; border-color: rgba(255,255,255,0.1) !important;
}
[data-theme="dark"] .bg-gray-50 { background: #1a2744 !important; }

/* ── CUSTOM CURSOR (desktop only) ── */
@media (pointer: fine) {
  * { cursor: none !important; }
  #cursor {
    width: 12px; height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: multiply;
  }
  #cursor-follower {
    width: 36px; height: 36px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 99998;
    transition: all 0.15s ease;
    opacity: 0.5;
  }
}

/* ══════════════════════════════
   NAVBAR — FIXED, FULL WIDTH
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid rgba(22,163,74,0.1);
  overflow: hidden;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(22,163,74,0.12);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(15,23,42,0.97) !important;
}

/* ── NAV INNER — constrain properly ── */
.navbar .nav-inner-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  min-width: 0;
}

/* ── LOGO ── */
.logo-name {
  color: #1f2937;
  transition: color 0.4s;
  white-space: nowrap;
}
.logo-badge {
  color: #16a34a;
  transition: color 0.4s;
  white-space: nowrap;
}
[data-theme="dark"] .navbar .logo-name { color: #f1f5f9; }
[data-theme="dark"] .navbar .logo-badge { color: #4ade80; }

/* ── NAV LINKS ── */
.nav-link {
  position: relative;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transition: transform 0.3s;
  border-radius: 2px;
}
.nav-link:hover { color: rgba(255,255,255,1); background: rgba(255,255,255,0.08); }
.navbar.scrolled .nav-link:hover { color: var(--primary); background: rgba(22,163,74,0.06); }
.nav-link:hover::after { transform: scaleX(1); }
[data-theme="dark"] .navbar .nav-link { color: #cbd5e1 !important; }

/* ── THEME + ICON BUTTONS ── */
.nav-icon-btn {
  color: #6b7280 !important;
  border-color: #e5e7eb !important;
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-icon-btn:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

/* ── HAMBURGER BUTTON ── */
#hamBtn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid #d1d5db;
  color: #374151;
  background: none;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  padding: 0;
}
#hamBtn:hover {
  background: #f3f4f6;
  border-color: #16a34a;
  color: #16a34a;
}

/* ── MEGA MENU ── */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  min-width: 380px;
  display: none;
  border: 1px solid rgba(22,163,74,0.1);
  z-index: 200;
}
.nav-item:hover .mega-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mega-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none; color: #374151; transition: all 0.2s;
}
.mega-link:hover { background: #f0fdf4; color: var(--primary); }
.mega-icon {
  width: 36px; height: 36px; background: #f0fdf4;
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--primary); flex-shrink: 0;
}
[data-theme="dark"] .mega-menu { background: #1e293b; border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .mega-link { color: #cbd5e1; }
[data-theme="dark"] .mega-link:hover { background: rgba(22,163,74,0.1); }

/* ══════════════════════════════
   MOBILE DRAWER
══════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; /* exactly below navbar */
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
[data-theme="dark"] .mobile-menu { background: #0f172a; }

.dm-link {
  display: block;
  padding: 15px 24px;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dm-link:hover, .dm-link:active {
  background: #f0fdf4;
  color: var(--primary);
}
[data-theme="dark"] .dm-link { color: #e2e8f0; border-color: rgba(255,255,255,0.06); }
.dm-cta {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

/* ══════════════════════════════
   PAGE LAYOUT — push content below navbar
══════════════════════════════ */
.page-body {
  padding-top: 70px; /* same as navbar height */
}

/* ══════════════════════════════
   HERO SLIDER SECTION
══════════════════════════════ */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
  /* sits right below navbar because of page-body padding-top */
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Slide */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
  transform: scale(1.04);
  z-index: 0;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.slide.prev { z-index: 0; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,78,59,0.85) 0%,
    rgba(6,78,59,0.55) 45%,
    rgba(0,0,0,0.1) 100%
  );
}

.slide-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 80px;
  z-index: 2;
}

.slide-inner {
  max-width: 600px;
  transform: translateY(24px);
  opacity: 0;
  transition: all 0.7s ease 0.35s;
}
.slide.active .slide-inner {
  transform: translateY(0);
  opacity: 1;
}

.slide-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px;
  margin-bottom: 18px;
}
.slide-tag::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.9rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-title span { color: #4ade80; }

.slide-desc {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.8; margin-bottom: 26px;
  max-width: 460px;
}

.slide-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(22,163,74,0.4);
}
.slider-arrow.prev-btn { left: 20px; }
.slider-arrow.next-btn { right: 20px; }

/* Dots */
.slider-dots {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.38);
  cursor: pointer; transition: all 0.35s;
  border: 2px solid rgba(255,255,255,0.2);
}
.slider-dot.active {
  background: #fff;
  width: 28px; border-radius: 4px;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Slide counter */
.slide-counter {
  position: absolute; top: 18px; right: 18px;
  z-index: 10;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 4px 13px;
  color: rgba(255,255,255,0.8);
  font-size: 0.76rem; font-weight: 600;
}
.slide-counter .cur { color: #fff; font-size: 1rem; font-weight: 900; }

/* Progress bar */
.slider-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--primary);
  z-index: 10;
  box-shadow: 0 0 8px rgba(22,163,74,0.6);
}
.slider-progress.animate {
  transition: width 5s linear;
}

/* ══════════════════════════════
   HERO SECTION (below slider)
══════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 30%, #0369a1 70%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: 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='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}
.wave-divider { position: absolute; bottom: -2px; left: 0; right: 0; }
.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 20px 24px;
}
.impact-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(220,252,231,0.15); color: #86efac;
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(134,239,172,0.3);
}

/* ── FLOAT ANIMATIONS ── */
@keyframes float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.05)} }
.float-1 { animation: float 5s ease-in-out infinite; }
.float-2 { animation: float 7s ease-in-out infinite 1s; }
.float-3 { animation: float 6s ease-in-out infinite 2s; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-donate {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  color: white; padding: 12px 26px; border-radius: 50px;
  font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(249,115,22,0.35);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-donate:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(249,115,22,0.5); }

.btn-volunteer {
  background: rgba(255,255,255,0.15); color: white;
  padding: 12px 26px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer; transition: all 0.3s ease;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(10px); white-space: nowrap;
}
.btn-volunteer:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #15803d);
  color: white; padding: 12px 28px; border-radius: 50px;
  font-weight: 600; border: none; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(22,163,74,0.4); }

.btn-outline {
  background: transparent; color: var(--primary);
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; border: 2px solid var(--primary);
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.card-glass {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(22,163,74,0.1);
  border-radius: 20px; transition: all 0.4s ease;
}
.card-glass:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(22,163,74,0.15); border-color: rgba(22,163,74,0.3); }

.cause-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease;
}
.cause-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(22,163,74,0.2); }

.progress-bar { height: 8px; background: #e5e7eb; border-radius: 10px; overflow: hidden; }
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--primary), #22c55e);
  border-radius: 10px; transition: width 1.5s ease;
}

.program-card {
  background: white; border-radius: 20px; padding: 32px 24px;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease; border-bottom: 4px solid transparent;
}
.program-card:hover { transform: translateY(-8px); border-bottom-color: var(--primary); box-shadow: 0 20px 50px rgba(22,163,74,0.15); }
.program-icon { width: 72px; height: 72px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; }

.event-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.blog-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.testimonial-card { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.quote-icon { font-size: 60px; line-height: 1; color: var(--primary); opacity: 0.2; font-family: 'Playfair Display', serif; }

/* ══════════════════════════════
   COUNTER SECTION
══════════════════════════════ */
.counter-section { background: linear-gradient(135deg, var(--primary) 0%, #065f46 100%); }
.counter-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: white; }

/* ══════════════════════════════
   SECTION STYLES
══════════════════════════════ */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 700; line-height: 1.2;
}
.section-subtitle {
  color: var(--primary); font-weight: 600;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--sky));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-pad { padding: 96px 0; }
.donation-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative; overflow: hidden;
}
.newsletter-section { background: linear-gradient(135deg, #0369a1 0%, var(--primary) 50%, #065f46 100%); }

/* Gallery */
.gallery-item { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,163,74,0.85), transparent);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Partners */
.partner-logo { filter: grayscale(100%); opacity: 0.5; transition: all 0.3s; }
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }

/* Timeline */
.timeline-item { position: relative; padding-left: 40px; }
.timeline-item::before { content:''; position:absolute; left:12px; top:0; bottom:0; width:2px; background:linear-gradient(to bottom,var(--primary),transparent); }
.timeline-dot { position:absolute; left:0; width:26px; height:26px; background:var(--primary); border-radius:50%; border:4px solid white; box-shadow:0 0 0 2px var(--primary); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; border-radius: 28px; padding: 36px;
  max-width: 460px; width: 100%;
  animation: slideUp 0.4s ease;
  max-height: 90vh; overflow-y: auto;
}
@keyframes slideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.donate-amount-btn {
  padding: 11px 18px; border: 2px solid #e5e7eb;
  border-radius: 10px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; background: white; font-family: 'DM Sans', sans-serif;
}
.donate-amount-btn.active, .donate-amount-btn:hover { border-color: var(--primary); background: #f0fdf4; color: var(--primary); }

/* Toast */
.toast-container { position: fixed; top: 88px; right: 16px; z-index: 99999; display: flex; flex-direction: column; gap: 10px; max-width: calc(100vw - 32px); }
.toast {
  padding: 14px 18px; border-radius: 12px; background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 12px;
  animation: slideInRight 0.4s ease, fadeOut 0.4s ease 3s forwards;
  border-left: 4px solid var(--primary);
  font-size: 13px;
}
@keyframes slideInRight { from{transform:translateX(110%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes fadeOut { to{opacity:0;transform:translateX(110%)} }

/* Lightbox */
.lightbox { position:fixed; inset:0; z-index:99999; background:rgba(0,0,0,0.95); display:none; align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lightbox img { max-width:90vw; max-height:90vh; border-radius:8px; }
.lightbox-close { position:absolute; top:20px; right:20px; color:white; font-size:28px; cursor:pointer; width:44px; height:44px; background:rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; }

/* Countdown */
.countdown-box { background:rgba(22,163,74,.08); border:2px solid rgba(22,163,74,.18); border-radius:12px; padding:14px 16px; text-align:center; min-width:64px; }
.countdown-num { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; color:var(--primary); line-height:1; }

/* Particles canvas */
#particles-canvas { position:absolute; inset:0; pointer-events:none; opacity:0.3; }

/* Scroll to top */
.scroll-top { position:fixed; bottom:24px; right:20px; z-index:990; width:44px; height:44px; background:var(--primary); border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(22,163,74,0.4); cursor:pointer; transition:all 0.3s; opacity:0; visibility:hidden; border:none; }
.scroll-top.show { opacity:1; visibility:visible; }
.scroll-top:hover { transform:scale(1.1); background: #15803d; }

/* Image placeholders */
.img-placeholder-1{background:linear-gradient(135deg,#065f46,#059669)}
.img-placeholder-2{background:linear-gradient(135deg,#0369a1,#0ea5e9)}
.img-placeholder-3{background:linear-gradient(135deg,#92400e,#f59e0b)}
.img-placeholder-4{background:linear-gradient(135deg,#7c3aed,#a78bfa)}
.img-placeholder-5{background:linear-gradient(135deg,#be185d,#f43f5e)}
.img-placeholder-6{background:linear-gradient(135deg,#1e3a5f,#3b82f6)}
.img-placeholder-7{background:linear-gradient(135deg,#064e3b,#10b981)}
.img-placeholder-8{background:linear-gradient(135deg,#4c1d95,#8b5cf6)}

footer { background:#0f172a; }

/* ══════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════ */
@media (max-width: 1024px) {
  /* Hide desktop nav, show hamburger */
  .nav-desktop-links { display: none !important; }
  .nav-desktop-cta { display: none !important; }
  #hamBtn { display: flex !important; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .counter-num { font-size: 36px; }
  .slider-container { height: 420px; }
  .slide-content { padding: 0 60px 0 24px; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
  .slider-arrow.prev-btn { left: 10px; }
  .slider-arrow.next-btn { right: 10px; }
  .hero-stats { display: none; }
}

@media (max-width: 480px) {
  .slider-container { height: 340px; }
  .slide-content { padding: 0 52px 0 18px; }
  .slide-title { font-size: 1.4rem; }
  .slide-desc { font-size: 0.82rem; }
  .slide-btns { flex-direction: column; gap: 8px; }
  .btn-donate, .btn-volunteer { padding: 10px 18px; font-size: 0.85rem; }
  .section-pad { padding: 48px 0; }
  .navbar .nav-inner-wrap { padding: 0 12px; }
}