:root {
  --green-deep:   #1a3d2b;
  --green-mid:    #2d6a4f;
  --green-light:  #40916c;
  --green-pale:   #d8f3dc;
  --gold:         #c9a84c;
  --gold-light:   #f0d080;
  --cream:        #fdf8ef;
  --cream-dark:   #f4ead6;
  --brown:        #5c3d1e;
  --text-dark:    #1a1a1a;
  --text-mid:     #3d3d3d;
  --text-muted:   #7a7a7a;
  --white:        #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ───── SCROLLBAR ───── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ───── NAV ───── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: all .3s ease;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem; text-decoration: none;
}
.nav-logo-emblem {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-emblem svg { width: 24px; height: 24px; }
.nav-logo-text { line-height: 1.15; }
.nav-logo-text span:first-child {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: .03em;
}
.nav-logo-text span:last-child {
  display: block; font-size: .65rem; font-weight: 500;
  color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #b8922d);
  color: var(--green-deep) !important;
  padding: .5rem 1.25rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.45); }
.nav-cta::after { display: none !important; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold-light); border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--green-deep); border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 1.5rem 2rem; flex-direction: column; gap: 1.25rem; z-index: 998;
}
.mobile-menu a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .9rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu.open { display: flex; }

/* ───── HERO ───── */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 4rem;
}

/* geometric ornament */
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(64,145,108,.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(201,168,76,.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(45,106,79,.2) 0%, transparent 50%);
}
.hero-geo {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 540px; height: 540px; opacity: .06;
  border: 60px solid var(--gold);
  border-radius: 50%; pointer-events: none;
  animation: heroRotate 30s linear infinite;
}
.hero-geo2 {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px; opacity: .05;
  border: 40px solid var(--green-light);
  border-radius: 50%; pointer-events: none;
  animation: heroRotate 20s linear infinite reverse;
}
@keyframes heroRotate { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; text-align: center;
}
.hero-arabic {
  font-family: 'Amiri', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  opacity: .85; margin-bottom: 1.5rem;
  letter-spacing: .05em;
  animation: fadeUp .9s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light); padding: .4rem 1.1rem;
  border-radius: 50px; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.5rem;
  animation: fadeUp .9s .1s ease both;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.08; letter-spacing: -.01em;
  margin-bottom: .75rem;
  animation: fadeUp .9s .2s ease both;
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.6); line-height: 1.75;
  max-width: 580px; margin: 0 auto 2.5rem;
  animation: fadeUp .9s .35s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  animation: fadeUp .9s .5s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8922d);
  color: var(--green-deep); padding: .85rem 2.2rem;
  border-radius: 8px; text-decoration: none;
  font-weight: 800; font-size: .9rem; letter-spacing: .04em;
  transition: transform .25s, box-shadow .25s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,.4); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85); padding: .85rem 2.2rem;
  border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  transition: all .25s; display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold-light);
  background: rgba(201,168,76,.07);
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: center; margin-top: 4rem;
  animation: fadeUp .9s .65s ease both;
}
.hero-stat {
  text-align: center;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; backdrop-filter: blur(4px);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: .72rem; color: rgba(255,255,255,.5);
  letter-spacing: .1em; text-transform: uppercase; margin-top: .35rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───── SECTIONS COMMON ───── */
section { padding: 5rem 2rem; }
.container { max-width: 1140px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green-mid);
  margin-bottom: .75rem;
}
.section-tag::before {
  content: ''; display: block;
  width: 20px; height: 2px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--green-deep);
}
.section-title em { font-style: italic; color: var(--green-light); }
.section-desc {
  color: var(--text-muted); line-height: 1.8;
  font-size: .95rem; margin-top: .75rem;
  max-width: 560px;
}

/* ───── ABOUT ───── */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%; border-radius: 16px;
  aspect-ratio: 4/5; object-fit: cover;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-placeholder {
  width: 100%; padding-bottom: 125%;
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 100%);
  border-radius: 16px; position: relative; overflow: hidden;
}
.about-img-placeholder::before {
  content: ''; position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 12px,
    rgba(255,255,255,.03) 12px, rgba(255,255,255,.03) 24px
  );
}
.about-img-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  text-align: center; color: rgba(255,255,255,.25);
}
.about-img-icon svg { width: 80px; height: 80px; }
.about-img-icon p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-top: .5rem; color: rgba(255,255,255,.3); }
.about-badge-float {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--gold), #b8922d);
  color: var(--green-deep); padding: 1.25rem 1.5rem;
  border-radius: 12px; box-shadow: 0 12px 32px rgba(201,168,76,.35);
  text-align: center;
}
.about-badge-float strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.about-badge-float span { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.about-content { padding-right: 1rem; }
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px; padding: 1.25rem;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(26,61,43,.1); }
.pillar-icon {
  width: 38px; height: 38px;
  background: var(--green-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}
.pillar-icon svg { width: 20px; height: 20px; color: var(--green-mid); }
.pillar-title { font-weight: 700; font-size: .9rem; color: var(--green-deep); margin-bottom: .35rem; }
.pillar-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }

/* ───── PROGRAM ───── */
.programs { background: var(--green-deep); position: relative; overflow: hidden; }
.programs::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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.programs .section-tag { color: var(--gold-light); }
.programs .section-title { color: var(--white); }
.programs .section-desc { color: rgba(255,255,255,.55); }
.programs-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s, background .3s, border-color .3s;
  cursor: default;
}
.program-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
  border-color: rgba(201,168,76,.4);
}
.program-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.program-card:hover::after { transform: scaleX(1); }
.program-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700;
  color: rgba(255,255,255,.06); line-height: 1;
  position: absolute; top: 1rem; right: 1.25rem;
  user-select: none;
}
.program-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), #b8922d);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.program-icon svg { width: 26px; height: 26px; color: var(--green-deep); }
.program-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem;
}
.program-desc { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.program-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.program-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .3rem .7rem;
  border-radius: 50px; border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-light);
}

/* ───── GALLERY ───── */
.gallery { background: var(--cream-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem; margin-top: 2.5rem;
}
.gallery-item {
  border-radius: 12px; overflow: hidden;
  background: var(--green-mid);
  position: relative; cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item:first-child {
  grid-column: span 2; grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-fill {
  width: 100%; height: 100%; min-height: 140px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.2); font-size: .75rem;
  transition: transform .4s;
  position: relative; overflow: hidden;
}
.gallery-fill::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(201,168,76,.1) 0%, transparent 60%);
}
.gallery-item:hover .gallery-fill { transform: scale(1.05); }
.gallery-fill svg { width: 36px; height: 36px; opacity: .3; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,61,43,.8) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: .78rem; font-weight: 700; }

/* ───── DONATE ───── */
.donate { background: var(--cream); }
.donate-inner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  border-radius: 24px; padding: 4rem;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.donate-inner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(201,168,76,.08); border-radius: 50%;
}
.donate-inner::after {
  content: ''; position: absolute; bottom: -80px; left: 20%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.04); border-radius: 50%;
}
.donate-text { position: relative; z-index: 2; }
.donate-text .section-tag { color: var(--gold-light); }
.donate-text .section-title { color: var(--white); }
.donate-text .section-desc { color: rgba(255,255,255,.6); max-width: 100%; }
.donate-amounts {
  display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0;
}
.donate-amt {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); padding: .55rem 1.2rem;
  border-radius: 8px; cursor: pointer; font-weight: 700; font-size: .85rem;
  transition: all .2s; user-select: none;
}
.donate-amt:hover, .donate-amt.active {
  background: var(--gold); border-color: var(--gold); color: var(--green-deep);
}
.donate-form-side { position: relative; z-index: 2; }
.donate-card {
  background: var(--white); border-radius: 16px; padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.donate-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--green-deep);
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: .4rem;
}
.form-group input, .form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #e4e4e4; border-radius: 8px;
  font-family: 'Nunito', sans-serif; font-size: .88rem;
  color: var(--text-dark); outline: none; transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--green-mid);
}
.btn-donate {
  width: 100%; background: linear-gradient(135deg, var(--gold), #b8922d);
  color: var(--green-deep); border: none; padding: .95rem;
  border-radius: 10px; font-family: 'Nunito', sans-serif;
  font-size: .9rem; font-weight: 800; cursor: pointer; letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s; margin-top: .5rem;
}
.btn-donate:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.45); }
.donate-note {
  text-align: center; font-size: .72rem;
  color: var(--text-muted); margin-top: .75rem; line-height: 1.5;
}

/* ───── TEAM ───── */
.team { background: var(--cream-dark); }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.team-card {
  background: var(--white); border-radius: 16px;
  padding: 1.75rem 1.5rem; text-align: center;
  border: 1px solid #ede8dd;
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--green-mid), var(--gold));
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,61,43,.1); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold-light);
  border: 3px solid var(--cream-dark);
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--green-deep);
  margin-bottom: .25rem;
}
.team-role {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold);
}

/* ───── KONTAK ───── */
.contact { background: var(--green-deep); }
.contact .section-tag { color: var(--gold-light); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
.contact-info { color: rgba(255,255,255,.7); }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-item h4 {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: .25rem;
}
.contact-item p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 2.5rem;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-form .form-group label { color: rgba(255,255,255,.55); }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(255,255,255,.25);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}
.contact-form .form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid rgba(255,255,255,.12); border-radius: 8px;
  font-family: 'Nunito', sans-serif; font-size: .88rem;
  color: var(--white); outline: none; transition: border-color .2s;
  background: rgba(255,255,255,.07);
  resize: vertical; min-height: 110px;
}
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #b8922d);
  color: var(--green-deep); border: none; padding: .95rem;
  border-radius: 10px; font-family: 'Nunito', sans-serif;
  font-size: .9rem; font-weight: 800; cursor: pointer; letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s; margin-top: .5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 997;
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  text-decoration: none;
  animation: waPulse 2.5s ease infinite;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 28px; height: 28px; color: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ───── FOOTER ───── */
footer {
  background: #0d2018;
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold-light);
  margin-bottom: .25rem;
}
.footer-brand-tagline {
  font-size: .72rem; color: rgba(255,255,255,.35);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.7;
}
.footer-col h4 {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul a {
  color: rgba(255,255,255,.4); text-decoration: none;
  font-size: .83rem; transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); text-decoration: none;
  transition: all .2s;
}
.footer-socials a:hover {
  border-color: var(--gold); color: var(--gold-light);
  background: rgba(201,168,76,.1);
}
.footer-socials svg { width: 15px; height: 15px; }

/* ───── DIVIDER ───── */
.divider-ornament {
  text-align: center; padding: .5rem 0;
  color: var(--gold); opacity: .4; font-size: 1.4rem;
  letter-spacing: .5rem;
  font-family: 'Amiri', serif;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-badge-float { bottom: -16px; right: -12px; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-content { padding-right: 0; }
  .programs-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/7; }
  .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 1; }
  .donate-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-stat { padding: .85rem 1.25rem; }
  .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
  .gallery-item:nth-child(4) { grid-column: 1; aspect-ratio: 1; }
  .hero-stats { gap: 1rem; }
  .about-badge-float { display: none; }
  .donate-amounts { gap: .5rem; }
}

/* ───── SCROLL ANIMATIONS ───── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }