/* ============================================================
   Divine Light Care Foundation – Main Stylesheet
   assets/css/styles.css
   ============================================================ */

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

:root {
  --green-dark:  #14532d;
  --green-mid:   #1a6b38;
  --green-light: #22883f;
  --gold:        #c9963a;
  --gold-light:  #e8b55a;
  --cream:       #faf6ef;
  --cream-dark:  #f0e9da;
  --charcoal:    #1c1c1c;
  --text-body:   #3a3a3a;
  --text-muted:  #6b6b6b;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  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; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(250,246,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,180,140,0.25);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--green-mid);
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 22px; height: 22px; fill: white; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--green-dark);
}
.nav-brand-text span {
  font-size: 0.65rem; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2px; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none; font-size: 0.82rem; font-weight: 500;
  color: var(--text-body); padding: 6px 12px; border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--cream-dark); color: var(--green-dark); }
.nav-links .nav-donate {
  background: var(--green-mid); color: white !important; border-radius: 20px;
  padding: 8px 18px !important;
}
.nav-links .nav-donate:hover { background: var(--green-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-dark); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--cream-dark);
  padding: 16px 5% 24px; z-index: 99;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; text-decoration: none;
  font-size: 1rem; font-weight: 500; color: var(--text-body);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-donate {
  margin-top: 12px; text-align: center; padding: 14px;
  background: var(--green-mid); color: white !important;
  border-radius: 12px; font-weight: 600; border-bottom: none !important;
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 55% 80% at 75% 45%, rgba(34,136,63,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 85%, rgba(201,150,58,0.07) 0%, transparent 60%),
    var(--cream);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}

.hero-bg-shape {
  position: absolute; right: -8%; top: 5%;
  width: min(52vw, 680px); height: min(52vw, 680px);
  border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%;
  background: linear-gradient(135deg, rgba(26,107,56,0.13), rgba(201,150,58,0.07));
  animation: morphBlob 12s ease-in-out infinite;
  z-index: 1;
}
@keyframes morphBlob {
  0%, 100% { border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%; }
  33%  { border-radius: 60% 40% 45% 55% / 55% 45% 40% 60%; }
  66%  { border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%; }
}

/* Two-column hero layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  position: relative; z-index: 2;
}

.hero-inner { position: relative; z-index: 2; }

/* ── HERO IMAGE PANEL ── */
.hero-visual {
  position: relative;
  height: 520px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 65%; height: 65%;
  border: 3px solid var(--gold);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.5;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -16px; left: -16px;
  width: 50%; height: 50%;
  border: 3px solid var(--green-light);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.35;
}

.hero-img-main {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
  z-index: 1;
  overflow: hidden;
}
.hero-img-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,83,45,0.15) 0%,
    transparent 50%,
    rgba(201,150,58,0.08) 100%
  );
}

.hero-img-badge {
  position: absolute;
  bottom: 28px; left: -24px;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-img-badge .badge-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.hero-img-badge .badge-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 900;
  color: var(--charcoal); line-height: 1;
}
.hero-img-badge .badge-text span {
  font-size: 0.7rem; color: var(--text-muted); font-weight: 500;
}

.hero-img-badge2 {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--green-dark);
  color: white;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(20,83,45,0.4);
  z-index: 3;
  animation: fadeUp 0.8s 0.75s ease both;
}
.hero-img-badge2 span { color: var(--gold-light); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,107,56,0.1); border: 1px solid rgba(26,107,56,0.2);
  color: var(--green-dark); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
  animation: fadeUp 0.7s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-light); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900; line-height: 1.08;
  color: var(--charcoal); margin-bottom: 10px;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-title em { font-style: italic; color: var(--green-mid); }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.35rem;
  color: var(--gold); margin-bottom: 20px;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-desc {
  font-size: 1rem; line-height: 1.75;
  color: var(--text-muted); max-width: 540px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.35s ease both;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.7s 0.45s ease both;
}
.btn-primary {
  background: var(--green-mid); color: white;
  padding: 14px 28px; border-radius: 30px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(26,107,56,0.3);
}
.btn-primary:hover {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,107,56,0.4);
}
.btn-outline {
  border: 2px solid var(--green-mid); color: var(--green-dark);
  padding: 13px 28px; border-radius: 30px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.25s, transform 0.2s;
}
.btn-outline:hover {
  background: var(--green-mid); color: white; transform: translateY(-2px);
}

.hero-stats {
  display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.55s ease both;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--green-dark); line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.75rem; font-weight: 500;
  color: var(--text-muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.07em;
}

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

/* ── SECTION SHARED ── */
section { padding: 90px 5%; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-lead {
  font-size: 1rem; line-height: 1.75; color: var(--text-muted);
  max-width: 580px;
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-image-stack { position: relative; height: 420px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 80%; height: 85%;
  background: url('../images/about-main.jpg') center/cover;
  border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 55%;
  background: url('../images/about-accent.jpg') center/cover;
  border-radius: 16px; box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border: 4px solid var(--white);
}
.about-badge-float {
  position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%);
  background: var(--green-mid); color: white;
  padding: 14px 18px; border-radius: 14px;
  text-align: center; box-shadow: 0 8px 24px rgba(26,107,56,0.4);
  border: 3px solid white;
}
.about-badge-float strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
}
.about-badge-float span { font-size: 0.68rem; opacity: 0.9; }

.about-content .section-title { margin-top: 12px; }
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 28px;
}
.pillar {
  background: var(--cream); border-radius: 12px;
  padding: 18px 16px; border-left: 3px solid var(--green-light);
}
.pillar h4 {
  font-size: 0.82rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}
.pillar p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.cac-note {
  margin-top: 24px; display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: var(--text-muted);
}
.cac-note .badge {
  background: rgba(201,150,58,0.12); color: var(--gold);
  padding: 4px 10px; border-radius: 20px; font-weight: 700;
  font-size: 0.72rem; white-space: nowrap;
}

/* ── PROGRAMS ── */
#programs {
  background: linear-gradient(175deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.programs-header { text-align: center; margin-bottom: 52px; }
.programs-header .section-lead { margin: 0 auto; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.program-card {
  background: var(--white); border-radius: 20px;
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(200,180,140,0.2);
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.program-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.program-card:nth-child(1) .program-icon { background: rgba(26,107,56,0.1); }
.program-card:nth-child(2) .program-icon { background: rgba(201,150,58,0.1); }
.program-card:nth-child(3) .program-icon { background: rgba(220,50,50,0.08); }
.program-card:nth-child(4) .program-icon { background: rgba(50,150,220,0.08); }
.program-card:nth-child(5) .program-icon { background: rgba(150,50,220,0.08); }
.program-card:nth-child(6) .program-icon { background: rgba(220,130,50,0.1); }
.program-abbr {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.program-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 10px;
}
.program-card p { font-size: 0.85rem; line-height: 1.7; color: var(--text-muted); }

/* ── GALLERY ── */
#gallery { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.gallery-item {
  border-radius: 16px; overflow: hidden; position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,83,45,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 0.82rem; font-weight: 600; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 12px; object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  color: white; font-size: 2rem; cursor: pointer;
  line-height: 1; background: none; border: none;
}

/* ── VOLUNTEER ── */
#volunteer {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative; overflow: hidden;
}
.vol-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px, 32px 32px;
}
.vol-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 2;
}
.vol-left .section-label { color: var(--gold-light); }
.vol-left .section-title { color: white; }
.vol-left .section-lead { color: rgba(255,255,255,0.75); max-width: 100%; }

.vol-benefits { list-style: none; margin-top: 24px; }
.vol-benefits li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: rgba(255,255,255,0.85);
  font-size: 0.88rem; line-height: 1.5;
}
.vol-benefits li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.65rem; margin-top: 1px;
}

.vol-form {
  background: white; border-radius: 24px;
  padding: 36px 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.vol-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 6px;
}
.vol-form p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  background: var(--cream); border: 1.5px solid var(--cream-dark);
  border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; color: var(--charcoal);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { resize: none; height: 90px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--green-mid); color: white;
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-success {
  display: none; text-align: center; padding: 20px;
  color: var(--green-dark); font-weight: 600;
}

/* ── DONATE ── */
#donate { background: var(--cream); text-align: center; }
.donate-inner { max-width: 800px; margin: 0 auto; }
.donate-inner .section-lead { margin: 0 auto 40px; }

.donate-card {
  background: white; border-radius: 24px;
  padding: 44px 40px; position: relative; overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(200,180,140,0.2);
}
.donate-card::after {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(26,107,56,0.04);
}
.donate-card::before {
  content: ''; position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(201,150,58,0.05);
}
.donate-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.donate-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--charcoal); margin-bottom: 32px;
}
.bank-detail {
  background: var(--cream); border-radius: 14px;
  padding: 20px 24px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.bank-detail-left { text-align: left; }
.bank-detail-left label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; display: block;
  margin-bottom: 4px;
}
.bank-detail-left .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--green-dark);
}
.copy-btn {
  background: var(--green-mid); color: white;
  border: none; border-radius: 8px;
  padding: 8px 16px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.copy-btn:hover { background: var(--green-dark); }
.copy-btn.copied { background: var(--gold); }
.donate-note {
  margin-top: 20px; font-size: 0.78rem;
  color: var(--text-muted); line-height: 1.6;
}

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 56px; max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.contact-info-items { margin-top: 28px; }
.contact-item {
  display: flex; gap: 16px; margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(26,107,56,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px;
}
.contact-item-text p,
.contact-item-text a {
  font-size: 0.92rem; color: var(--charcoal); text-decoration: none;
  font-weight: 500; line-height: 1.5;
}
.contact-item-text a:hover { color: var(--green-mid); }
.contact-form-card {
  background: var(--cream); border-radius: 20px;
  padding: 36px 32px;
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 6px;
}
.contact-form-card p {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px;
}
.contact-submit {
  width: 100%; padding: 14px;
  background: var(--green-mid); color: white;
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.contact-submit:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.8);
  padding: 56px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; max-width: 1100px; margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-mark { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.82rem; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 280px;
  margin-bottom: 16px;
}
.footer-brand .motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.95rem;
  color: var(--gold-light);
}
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none; font-size: 0.85rem;
  color: rgba(255,255,255,0.65); transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 82px; right: 24px; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-mid); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 18px rgba(26,107,56,0.4);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  border: none; font-size: 1.1rem;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--green-dark); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: waPop 0.5s 1s cubic-bezier(0.175,0.885,0.32,1.275) both;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-float::before {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.45);
  animation: waPulse 2.2s ease-out infinite;
}
.wa-float::after {
  content: '';
  position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.2);
  animation: waPulse 2.2s 0.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}
@keyframes waPop {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}
.wa-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a; color: white;
  font-size: 0.75rem; font-weight: 600;
  white-space: nowrap; padding: 6px 12px;
  border-radius: 8px; pointer-events: none;
  opacity: 0; transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: ''; position: absolute; top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a; border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; margin-top: 16px; }
  .hero-img-badge  { left: 12px; bottom: 16px; }
  .hero-img-badge2 { right: 12px; top: 16px; }
  .hero-visual::before, .hero-visual::after { display: none; }

  .about-grid, .vol-inner, .contact-grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 280px; order: -1; }
  .about-img-main { width: 85%; height: 90%; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: auto; }

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

@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .hero-stats { gap: 24px; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .donate-card { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
}
