/* ============================================================
   SOCIAL CARE — NGO Website Stylesheet
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --blue:        #1565C0;
  --blue-dark:   #0D47A1;
  --blue-light:  #1E88E5;
  --blue-pale:   #E3F2FD;
  --green:       #2E7D32;
  --green-light: #43A047;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;
  --gold:        #F9A825;
  --gold-dark:   #F57F17;
  --white:       #ffffff;
  --bg-light:    #F4F8FF;
  --text:        #1a1a2e;
  --text-mid:    #444;
  --text-soft:   #666;
  --border:      #dde4ef;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 28px rgba(21,101,192,0.14);
  --shadow-lg:   0 12px 48px rgba(21,101,192,0.18);
  --radius:      14px;
  --radius-sm:   8px;
  --ease:        all 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Shared ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.bg-light { background: var(--bg-light); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-head h2 span { color: var(--blue); }
.section-head p { color: var(--text-soft); max-width: 520px; margin: 0 auto; font-size: 0.97rem; }

.section-head.light h2 { color: var(--white); }
.section-head.light h2 span { color: var(--gold); }
.section-head.light p { color: rgba(255,255,255,0.75); }
.section-head.light .tag { background: rgba(255,255,255,0.15); color: var(--white); }

.tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 34px;
  border-radius: 30px;
  transition: var(--ease);
  box-shadow: 0 4px 18px rgba(249,168,37,0.4);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,168,37,0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--ease);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue);
  transition: var(--ease);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* WhatsApp buttons */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--ease);
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--ease);
  margin-bottom: 12px;
  width: 100%;
}
.btn-wa-full:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-wa-full i, .btn-wa i { font-size: 1.2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--ease);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  padding: 8px 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  object-position: center top;
  transition: var(--ease);
  flex-shrink: 0;
}

#navbar.scrolled .nav-logo img { height: 40px; width: 40px; }

.nav-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1;
}

#navbar.scrolled .nav-logo span { color: var(--blue-dark); }

.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--ease);
}
#navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { background: rgba(255,255,255,0.15); }
#navbar.scrolled .nav-links a:hover { background: var(--blue-pale); color: var(--blue); }

.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 22px;
  transition: var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249,168,37,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
#navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--blue-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: var(--white) !important; }
  .nav-links a:hover { background: rgba(255,255,255,0.1) !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('Project%20Image/16.jpeg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,71,161,0.88) 0%, rgba(21,101,192,0.78) 50%, rgba(46,125,50,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}
.hero-arabic {
  font-family: 'Amiri', serif;
  font-size: 1.45rem;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-block;
  padding: 8px 28px;
  border-radius: 30px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 38px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.76rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  animation: bounce 2.2s infinite;
}

/* ============================================================
   STATS RIBBON
   ============================================================ */
.stats-ribbon { background: var(--blue-dark); padding: 28px 0; }
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 36px;
  gap: 2px;
}
.stat strong { font-size: 1.9rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat span { font-size: 0.73rem; color: rgba(255,255,255,0.7); font-weight: 400; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.15); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 12px;
}
.about-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.about-images img:hover { transform: scale(1.02); }
.img-large { grid-column: 1 / -1; }

.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.3; margin-bottom: 18px; }
.about-text h2 em { font-style: normal; color: var(--blue); }
.about-text .lead { font-size: 1.05rem; font-weight: 500; color: var(--blue-dark); margin-bottom: 14px; line-height: 1.6; }
.about-text p { color: var(--text-soft); margin-bottom: 28px; font-size: 0.95rem; }

.pillars { display: flex; flex-direction: column; gap: 18px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar > i { font-size: 1.2rem; color: var(--blue); margin-top: 3px; flex-shrink: 0; width: 20px; }
.pillar h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.pillar p { font-size: 0.84rem; color: var(--text-soft); margin: 0; }

/* ============================================================
   PROGRAMMES — 8 cards in 4x2
   ============================================================ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--blue);
}

/* special card styles */
.prog-card.flagship { border-bottom-color: var(--gold); }
.prog-card.flagship:hover { border-bottom-color: var(--gold-dark); }
.prog-card.recurring { border-bottom-color: var(--green); }
.prog-card.goldmine { border-bottom-color: #9C27B0; }

.prog-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
}
.flagship-badge { background: #FFF8E1; color: #E65100; }
.goldmine-badge { background: #F3E5F5; color: #7B1FA2; }

.prog-icon {
  width: 56px; height: 56px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--ease);
}
.prog-icon i { font-size: 1.3rem; color: var(--blue); transition: var(--ease); }

/* icon colour variants */
.prog-icon.water { background: #E1F5FE; }
.prog-icon.water i { color: #0288D1; }
.prog-icon.mosque { background: #E8F5E9; }
.prog-icon.mosque i { color: var(--green); }
.prog-icon.orphan { background: #FCE4EC; }
.prog-icon.orphan i { color: #C2185B; }
.prog-icon.edu { background: #FFF8E1; }
.prog-icon.edu i { color: #F57F17; }
.prog-icon.health { background: #FFEBEE; }
.prog-icon.health i { color: #C62828; }
.prog-icon.shelter { background: #E8EAF6; }
.prog-icon.shelter i { color: #3949AB; }
.prog-icon.seasonal { background: #F3E5F5; }
.prog-icon.seasonal i { color: #7B1FA2; }

.prog-card:hover .prog-icon { background: var(--blue); }
.prog-card:hover .prog-icon i { color: var(--white); }
.prog-card.flagship:hover .prog-icon { background: var(--gold-dark); }
.prog-card.recurring:hover .prog-icon { background: var(--green); }
.prog-card.goldmine:hover .prog-icon { background: #7B1FA2; }

.prog-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.prog-card p { font-size: 0.83rem; color: var(--text-soft); line-height: 1.6; flex: 1; margin-bottom: 12px; }

.prog-price {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.prog-price span { font-weight: 700; color: var(--blue); }
.recurring-price span { color: var(--green); }

.prog-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: var(--ease);
}
.prog-link:hover { gap: 10px; }

/* ============================================================
   MAGIC BOARD SCHOOL
   ============================================================ */
.school { background: var(--white); }

.school-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.school-tag { background: #FFF8E1; color: #E65100; }

.school-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
.school-text h2 span { color: var(--blue); }

.school-text .lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 14px;
  line-height: 1.6;
}
.school-text p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.school-stats {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.s-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  gap: 4px;
  border-right: 1px solid var(--border);
}
.s-stat:last-child { border-right: none; }

.s-stat strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.s-stat span {
  font-size: 0.72rem;
  color: var(--text-soft);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.school-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.school-images { display: flex; flex-direction: column; gap: 12px; }

.school-main {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.school-main:hover { transform: scale(1.01); }

.school-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.school-thumbs img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}
.school-thumbs img:hover { transform: scale(1.02); }

/* ============================================================
   PROJECTS GALLERY
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-soft);
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 24px;
  cursor: pointer;
  transition: var(--ease);
}
.filter-btn:hover,
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  transition: var(--ease);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gal-item:hover img { transform: scale(1.06); }

.gal-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,71,161,0.92) 0%, transparent 55%);
  opacity: 0;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gal-item:hover .gal-info { opacity: 1; }

.gal-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  width: fit-content;
}
.school-gal-tag { background: #43A047; color: var(--white); }

.gal-info p { color: var(--white); font-size: 0.8rem; font-weight: 500; margin: 0; line-height: 1.4; }
.gal-item.hide { display: none; }

/* ============================================================
   IMPACT
   ============================================================ */
.impact { position: relative; overflow: hidden; }
.impact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--green) 100%);
  z-index: 0;
}
.impact .container { position: relative; z-index: 1; }

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.impact-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 38px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--ease);
}
.impact-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-4px); }
.impact-card > i { font-size: 1.9rem; color: var(--gold); margin-bottom: 16px; }
.impact-num { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.impact-lbl { font-size: 0.9rem; font-weight: 600; color: var(--gold); margin-bottom: 12px; }
.impact-card p { font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ============================================================
   DONATE
   ============================================================ */
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.donate-amounts h3, .donate-cta h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }

.amounts-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 22px; }

.amount-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  transition: var(--ease);
  cursor: default;
}
.amount-box:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.amount-box strong { display: block; font-size: 1.45rem; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.amount-box strong small { font-size: 0.85rem; }
.amount-box span { font-size: 0.75rem; color: var(--text-soft); }
.amount-box.highlight-box { border-color: var(--green); background: #F1F8E9; }
.amount-box.highlight-box strong { color: var(--green); }

.donate-types { display: flex; gap: 8px; flex-wrap: wrap; }
.donate-types span {
  background: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.donate-types i { color: var(--green-light); }

.donate-cta p { color: var(--text-soft); margin-bottom: 18px; font-size: 0.93rem; }

.btn-fb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1877F2;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: var(--ease);
  margin-bottom: 20px;
  width: 100%;
}
.btn-fb:hover { background: #0d65d9; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,0.35); }
.btn-fb i { font-size: 1.1rem; }

.trust-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--green);
  margin-bottom: 16px;
}
.trust-note > i { color: var(--green); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.trust-note p { font-size: 0.81rem; color: var(--text-soft); margin: 0; }

.hadith-box {
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
}
.hadith-box p { font-style: italic; font-size: 0.88rem; color: var(--blue-dark); font-weight: 600; margin-bottom: 4px; }
.hadith-box cite { font-size: 0.75rem; color: var(--blue); font-style: normal; }

/* ============================================================
   BANK DETAILS
   ============================================================ */
.bank-details {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  padding: 32px 36px;
  color: var(--white);
}

.bank-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.bank-header-row h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bank-header-row h3 i { color: var(--gold); }
.bank-header-row p  { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.bank-verified {
  background: var(--gold);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 32px;
}

.bank-field label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.bank-field span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.bank-field.highlight span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
}

/* ============================================================
   CONTACT — 4 cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px 22px;
  text-align: center;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid transparent;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border); }

.contact-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--white);
}
.contact-icon.fb   { background: #1877F2; }
.contact-icon.wa   { background: var(--wa-green); }
.contact-icon.em   { background: var(--blue); }
.contact-icon.loc  { background: var(--green); }

.contact-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 0.84rem; color: var(--text-soft); margin-bottom: 14px; line-height: 1.55; flex: 1; }
.contact-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  word-break: break-all;
  text-align: center;
}
a.contact-card:hover .contact-link { gap: 9px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0d1b3e; color: rgba(255,255,255,0.75); }

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.8; margin-bottom: 16px; max-width: 240px; }

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.footer-contact-info a,
.footer-contact-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--ease);
}
.footer-contact-info a:hover { color: var(--gold); }
.footer-contact-info i { color: var(--gold); width: 14px; flex-shrink: 0; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--ease);
}
.footer-social a:hover { transform: translateY(-2px); }
.footer-social a:nth-child(1):hover { background: #1877F2; }
.footer-social a:nth-child(2):hover { background: var(--wa-green); }
.footer-social a:nth-child(3):hover { background: var(--blue-light); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li { font-size: 0.82rem; }
.footer-col a { color: rgba(255,255,255,0.65); transition: var(--ease); }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }

.footer-quote {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  padding: 22px;
  align-self: start;
}
.footer-quote blockquote { font-size: 0.9rem; font-style: italic; color: var(--white); line-height: 1.7; margin-bottom: 10px; }
.footer-quote cite { font-size: 0.75rem; color: var(--gold); font-style: normal; }
.footer-quote-extra { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-quote-extra p { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  max-width: 1180px;
  margin: 0 auto;
}
.footer-bottom i { color: #e53935; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#lbImg { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 12px 60px rgba(0,0,0,0.6); }
.lb-caption { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-align: center; }

.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: var(--ease);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { grid-template-rows: 200px 150px; }
  .school-grid { grid-template-columns: 1fr; }
  .school-images { order: -1; }
  .donate-grid { grid-template-columns: 1fr; }
  .amounts-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .stat { padding: 8px 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .amounts-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .hero-content h1 { font-size: 2rem; }
  .stats-inner { flex-wrap: wrap; }
  .stat { width: 50%; }
  .school-btns { flex-direction: column; }
  .school-thumbs img { height: 130px; }
}
