@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #16492F;
  --green-mid: #1F8F5A;
  --green-light: #F5FAF7;
  --accent: #FFB200;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --border: #d4e8db;
  --shadow: 0 2px 12px rgba(22, 73, 47, 0.10);
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06)
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

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

.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2
}

.nav-logo-text span {
  display: block;
  font-size: 10.5px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .3px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 7px 12px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--green-light);
  color: var(--green-dark)
}

.nav-links a.nav-cta {
  background: var(--green-dark);
  color: var(--white)
}

.nav-links a.nav-cta:hover {
  background: var(--green-mid)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block
}

.btn-primary:hover {
  background: #e6a000;
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 30px;
  border-radius: 7px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all .2s;
  display: inline-block
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white)
}

.btn-green {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 30px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block
}

.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px)
}

/* ── SECTION COMMONS ── */
section {
  padding: 70px 24px
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px
}

.section-title {
  font-size: clamp(21px, 3.5vw, 33px);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 13px;
  line-height: 1.25
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 44px;
  line-height: 1.6
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(10, 40, 20, 0.55), rgba(10, 40, 20, 0.55)), url('hero-bg.png') center/cover no-repeat;
  padding: 80px 24px
}

.hero-content {
  max-width: 720px
}

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: contain;
  border: 3px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto 22px;
  display: block
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 178, 0, 0.18);
  border: 1px solid rgba(255, 178, 0, 0.5);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px
}

.hero h1 {
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3)
}

.hero p {
  font-size: clamp(15px, 2.2vw, 18px);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 34px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.hero-btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap
}

/* ── MISSION ── */
.mission {
  background: var(--white)
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start
}

.mission-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6
}

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--green-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 17px 19px
}

.pillar-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 1.8
}

.pillar h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 3px
}
 
.pillar p {
  font-size: 13px;
  color: var(--text-muted)
}
 Lancaster

/* ── HISTORY ── */
.history {
  background: var(--green-dark)
}

.history-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center
}

.history .section-tag {
  color: rgba(255, 178, 0, 0.8)
}

.history .section-title {
  color: var(--white)
}

.history-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 40px
}

.history-stats {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap
}

.stat-item {
  text-align: center
}

.stat-number {
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: .5px
}

/* ── GALLERY ── */
.activities {
  background: var(--green-light)
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(22, 73, 47, 0.15)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c8e6d4 0%, #a8d4b8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green-dark)
}

.gallery-placeholder svg {
  width: 34px;
  height: 34px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 1.5;
  opacity: .7
}

.gallery-placeholder span {
  font-size: 12px;
  font-weight: 600;
  opacity: .7;
  text-align: center;
  padding: 0 12px
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 28px 14px 12px;
  line-height: 1.3
}

/* ── BAITUL MAAL ── */
.baitul-maal {
  background: var(--white)
}

.baitul-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px
}

.baitul-card {
  background: var(--green-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 17px;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s
}

.baitul-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(22, 73, 47, 0.12)
}

.baitul-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(22, 73, 47, 0.08)
}

.baitul-icon svg {
  width: 23px;
  height: 23px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8
}

.baitul-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 7px
}
 
.baitul-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6
}
/* ── APPRECIATION ── */
.appreciation {
  background: var(--green-light)
}

.appreciation-header {
  text-align: center;
  margin-bottom: 42px
}

.appreciation-header .section-sub {
  margin-left: auto;
  margin-right: auto
}

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

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s
}

.testimonial-card:hover {
  transform: translateY(-3px)
}

.testimonial-photo-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8e6d4, #8ec9a8);
  display: flex;
  align-items: center;
  justify-content: center
}

.testimonial-photo-placeholder svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.5;
  opacity: .75
}

.testimonial-photo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover
}

.testimonial-quote {
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  flex: 1
}
 Lancaster

.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark)
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted)
}

/* ── CARDS ── */
.programs {
  background: var(--green-light)
}

.programs-header {
  text-align: center
}

.programs-header .section-sub {
  margin-left: auto;
  margin-right: auto
}

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

.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(22, 73, 47, 0.14)
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--green-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 9px
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6
}
/* ── PAGE HERO ── */
.page-hero {
  background: var(--green-dark);
  text-align: center;
  padding: 64px 24px
}

.page-hero .section-tag {
  color: rgba(255, 178, 0, 0.8)
}

.page-hero h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto
}

/* ── GOOGLE FORM ── */
.gform-section {
  background: var(--white);
  padding: 56px 24px
}

.gform-wrap {
  max-width: 820px;
  margin: 0 auto
}

.gform-wrap h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px
}

.gform-wrap>p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px
}

.gform-container {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.gform-container iframe {
  display: block;
  width: 100%
}

.gform-placeholder {
  background: var(--green-light);
  padding: 56px 32px;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px
}

.gform-placeholder svg {
  width: 46px;
  height: 46px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 1.5
}

.gform-placeholder h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark)
}

.gform-placeholder p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 440px
}

.gform-placeholder code {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--green-dark);
  margin-top: 6px;
  word-break: break-all
}

/* ── MEMBERSHIP ── */
.membership-info {
  background: var(--green-light);
  padding: 52px 24px
}

.membership-info-inner {
  max-width: 900px;
  margin: 0 auto
}

.membership-fee-box {
  background: var(--white);
  border: 2px solid var(--green-mid);
  border-radius: 14px;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 4px 20px rgba(22, 73, 47, 0.10);
  margin-bottom: 34px;
  flex-wrap: wrap
}

.fee-amount {
  text-align: center;
  min-width: 110px
}

.fee-number {
  font-size: 52px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1
}

.fee-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px
}

.fee-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0
}

.fee-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 9px
}

.fee-details p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6
}

.fee-benefits {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 13px
}

.fee-badge {
  background: var(--green-light);
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px
}

/* ── DONATE ── */
.donate-highlight {
  background: var(--white);
  padding: 56px 24px
}

.donate-highlight-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.donate-text .section-sub {
  margin-bottom: 26px
}

.donate-ways {
  display: flex;
  flex-direction: column;
  gap: 13px
}

.donate-way {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--green-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 17px
}

.donate-way-icon {
  width: 37px;
  height: 37px;
  min-width: 37px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.donate-way-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 1.8
}

.donate-way h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 3px
}

.donate-way p {
  font-size: 13px;
  color: var(--text-muted)
}

.donate-note {
  background: var(--green-light);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 22px
}

/* ── BOARD ── */
.board-section {
  background: var(--white);
  padding: 64px 24px
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto
}

.board-card {
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 36px 24px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s
}

.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(22, 73, 47, 0.14)
}

.board-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--green-light)
}

.board-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8e6d4 0%, #8ec9a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid rgba(22, 73, 47, 0.12)
}

.board-photo-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.4;
  opacity: .7
}

.board-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 5px
}

.board-position {
  font-size: 13px;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: .3px
}

.board-email {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.board-email svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2
}

.board-email a:hover {
  color: var(--green-mid)
}

/* ── CONTACT ── */
.contact-section {
  background: var(--white);
  padding: 64px 24px
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 52px;
  align-items: start
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 22px
}

.contact-detail {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 18px
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8
}

.contact-detail h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark)
}

.contact-detail p,
.contact-detail a {
  font-size: 13px;
  color: var(--text-muted)
}

.contact-detail a:hover {
  color: var(--green-mid)
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--green-dark);
  padding: 68px 24px;
  text-align: center
}

.about-hero h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px
}

.about-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.80);
  max-width: 580px;
  margin: 0 auto
}

.about-mission {
  background: var(--white)
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 15px
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--green-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 17px 19px
}

.value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 1.8
}

.value-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px
}

.value-item p {
  font-size: 14px;
  color: var(--text-muted)
}

.charity {
  background: var(--green-light)
}

.charity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.charity-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.charity-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.charity-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8
}

.charity-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px
}

.charity-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 52px 24px 26px
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  margin-bottom: 24px
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 13px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px
}

.footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08)
}

.footer-logo-text {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2
}

.footer-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50)
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 280px
}

.footer-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  transition: color .2s
}

.footer-col ul li a:hover {
  color: var(--white)
}

.footer-contact-email {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  margin-top: 14px
}

.footer-contact-email svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2
}

.footer-contact-email a {
  color: rgba(255, 255, 255, 0.75)
}

.footer-contact-email a:hover {
  color: var(--white)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.40)
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .45s ease, transform .45s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* Helper Classes for Clean HTML */
.text-center { text-align: center; }
.mb-28 { margin-bottom: 28px; }
.mb-44 { margin-bottom: 44px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.font-20 { font-size: 20px; }
.max-w-640 { max-width: 640px; }
.max-w-820 { max-width: 820px; }
.max-w-900 { max-width: 900px; }
.font-bold { font-weight: 700; }
.font-13 { font-size: 13px; }
.font-14 { font-size: 14px; }
.font-22 { font-size: 22px; }
.mt-16 { margin-top: 16px; }
.mt-14 { margin-top: 14px; }
.mt-18 { margin-top: 18px; }
.mt-28 { margin-top: 28px; }
.mt-36 { margin-top: 36px; }
.gap-14 { gap: 14px; }
.p-20 { padding: 20px; }
.bg-green-light { background: var(--green-light); }
.border-1-5 { border: 1.5px solid var(--border); }
.border-radius-10 { border-radius: 10px; }
.color-green-dark { color: var(--green-dark); }
.text-muted { color: var(--text-muted); }
.text-muted-alt { color: #888888; }
.line-height-1-6 { line-height: 1.6; }
.grid-cols-1 { grid-template-columns: 1fr; }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .board-grid {
    grid-template-columns: 1fr 1fr
  }

  .donate-highlight-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

@media(max-width:768px) {
  .hamburger {
    display: flex
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    gap: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 10px 14px;
    border-radius: 7px;
    font-size: 14.5px
  }

  .nav-links a.nav-cta {
    text-align: center;
    margin-top: 5px
  }

  .cards-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .baitul-grid {
    grid-template-columns: 1fr
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .charity-grid {
    grid-template-columns: 1fr
  }

  .membership-fee-box {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start
  }

  .fee-divider {
    width: 100%;
    height: 1px
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .board-grid {
    grid-template-columns: 1fr;
    max-width: 300px
  }
}

@media(max-width:480px) {
  section {
    padding: 50px 18px
  }

  .hero {
    padding: 56px 18px;
    min-height: 75vh
  }

  .hero-btns {
    flex-direction: column;
    align-items: center
  }

  .hero-btns a {
    width: 100%;
    max-width: 280px;
    text-align: center
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .history-stats {
    gap: 28px
  }
}