/* ============================================================
   ISVA International — Nonprofit Website Styles
   ============================================================ */

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

:root {
  --navy:    #0d2137;
  --teal:    #1a6b72;
  --gold:    #c8973a;
  --light:   #f5f7fa;
  --white:   #ffffff;
  --text:    #2c3e50;
  --muted:   #6b7a8d;
  --border:  #dde3ec;
  --shadow:  0 4px 24px rgba(13,33,55,0.10);
  --radius:  14px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── UTILITIES ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 520px;
}

.section-header.center { text-align: center; }
.section-header.center .section-body { margin: 0 auto 20px; }

.max-600 { max-width: 600px; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: #145a60; border-color: #145a60; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,107,114,0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.3); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── NAVIGATION ── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,33,55,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .btn { padding: 8px 20px; font-size: 0.88rem; }

.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(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { text-align: center; margin-top: 8px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1600&auto=format&fit=crop&q=80')
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,33,55,0.88) 0%,
    rgba(26,107,114,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.4; }
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--navy);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { padding: 8px; }

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── MISSION ── */
.mission-section { background: var(--light); }

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

.mission-visual {
  position: relative;
  height: 380px;
}

.mission-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 240px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  transition: transform 0.3s;
}
.mission-card:hover { transform: translateY(-4px); }
.card-icon { font-size: 1.8rem; margin-bottom: 10px; }

.card-1 { top: 0; left: 0; }
.card-2 { top: 120px; right: 0; border-left: 4px solid var(--teal); }
.card-3 { bottom: 0; left: 30px; border-left: 4px solid var(--gold); }

/* ── PROGRAMS ── */
.programs-section { background: var(--white); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.program-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.program-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); background: var(--white); }
.program-card:hover::before { transform: scaleX(1); }

.program-icon { font-size: 2.4rem; margin-bottom: 16px; }
.program-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.program-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.65; }

/* ── IMPACT QUOTE ── */
.impact-quote-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 80px 0;
}

.quote-block { text-align: center; max-width: 740px; margin: 0 auto; }

.quote-mark {
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 24px;
}

.quote-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote-block cite {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}

/* ── IMPACT BARS ── */
.impact-section { background: var(--light); }

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

.impact-list {
  list-style: none;
  margin-bottom: 32px;
}
.impact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.check {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 700;
}

.bar-row { margin-bottom: 24px; }
.bar-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.bar-track {
  background: var(--border);
  border-radius: 50px;
  height: 10px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 50px;
  font-size: 0;
  animation: grow 1.2s ease forwards;
  transform-origin: left;
}
@keyframes grow {
  from { width: 0; }
  to { width: var(--pct); }
}
.bar-caption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 20px;
  font-style: italic;
}

/* ── ABOUT ── */
.about-section { background: var(--white); }

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

.team-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.team-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.team-address {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.team-email {
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.team-email:hover { text-decoration: underline; }

/* ── DONATE ── */
.donate-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3d44 100%);
  text-align: center;
}

.donate-inner { max-width: 640px; margin: 0 auto; }

.section-title.light, .section-eyebrow.light { color: var(--gold); }
.section-body.light { color: rgba(255,255,255,0.75); max-width: none; }

.donate-amounts {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0 24px;
}

.amount-btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.amount-btn:hover, .amount-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.donate-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.donate-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.97rem;
  outline: none;
}
.donate-form input::placeholder { color: rgba(255,255,255,0.5); }
.donate-form input:focus { border-color: var(--gold); }

.donate-note {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
}
.donate-note a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* ── CONTACT ── */
.contact-section { background: var(--light); }

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

.contact-details {
  list-style: none;
  margin-top: 24px;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}
.contact-icon { font-size: 1.1rem; margin-top: 2px; }
.contact-details a { color: var(--teal); text-decoration: none; font-weight: 500; }
.contact-details a:hover { text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.96rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--teal); }
.contact-form textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #e6f7f0;
  color: #1a6b72;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-mark { font-size: 1.8rem; }
.footer-brand .logo-sub { font-size: 0.9rem; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 240px;
  line-height: 1.6;
}
.footer-brand .ein {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links a, .footer-links p {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  line-height: 1.7;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.3);
}

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

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

  .mission-grid,
  .impact-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .mission-visual { height: 280px; }
  .card-2, .card-3 { max-width: 200px; }

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

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

@media (max-width: 580px) {
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; text-align: center; }
  .donate-form { flex-direction: column; align-items: center; }
  .donate-form .btn { width: 100%; }
  .team-card { flex-direction: column; text-align: center; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* ── Nav active link ── */
.nav-links .nav-active {
  color: var(--gold) !important;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
  background: var(--navy);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-img, url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1600&auto=format&fit=crop&q=80')) center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.85) 0%, rgba(26,107,114,0.55) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Two-col generic layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

/* ── Background helpers ── */
.bg-light { background: var(--light); }
.bg-navy  { background: var(--navy); }

/* ── Value cards (About) ── */
.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.value-icon {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  margin-bottom: 10px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p { font-size: 0.9rem; color: var(--muted); }

/* ── Mission/Vision cards ── */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}
.mv-icon { font-size: 2.4rem; margin-bottom: 16px; }
.mv-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.mv-card p { font-size: 0.93rem; color: var(--muted); }
@media (max-width: 900px) { .mv-grid { grid-template-columns: 1fr; } }

/* ── Leader card ── */
.leader-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.leader-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
}
.leader-body h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.leader-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.leader-body p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 14px;
  max-width: 620px;
}
.leader-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.leader-address {
  font-size: 0.88rem;
  color: var(--muted);
}
@media (max-width: 700px) {
  .leader-card { grid-template-columns: 1fr; text-align: center; }
  .leader-avatar { margin: 0 auto; }
  .leader-contact { justify-content: center; }
}

/* ── Legal grid ── */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.legal-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.legal-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.legal-value {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 900px) { .legal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .legal-grid { grid-template-columns: 1fr; } }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-inner .section-title { color: var(--white); }
.cta-inner .section-body { color: rgba(255,255,255,0.75); max-width: none; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.cta-buttons .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cta-buttons .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── Programs page ── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 72px;
  z-index: 50;
}
.filter-inner {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.programs-detailed { display: flex; flex-direction: column; gap: 48px; }
.prog-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  align-items: start;
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.prog-card:hover { box-shadow: var(--shadow); }
.prog-card-icon { font-size: 3.5rem; margin-top: 8px; }
.prog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,107,114,0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.prog-card-body h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.prog-card-body p { font-size: 0.97rem; color: var(--muted); margin-bottom: 20px; }
.prog-features {
  list-style: none;
  margin-bottom: 28px;
}
.prog-features li {
  font-size: 0.93rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}
.prog-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
}
@media (max-width: 700px) { .prog-card { grid-template-columns: 1fr; } .prog-card-icon { font-size: 2.4rem; } }

/* ── Services form ── */
.services-form {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.96rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%236b7a8d' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.services-form select:focus { border-color: var(--teal); }
.form-center { text-align: center; }

/* ── Donate page ── */
.donate-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.freq-toggle {
  display: flex;
  background: var(--light);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 28px;
}
.freq-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.freq-btn.active { background: var(--white); color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.donate-amounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.d-amount {
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--light);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.d-amount:hover, .d-amount.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.custom-amount-wrap {
  position: relative;
  margin-bottom: 20px;
}
.dollar-sign {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}
.custom-amount-wrap input {
  width: 100%;
  padding: 14px 18px 14px 34px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
}
.custom-amount-wrap input:focus { border-color: var(--teal); }

.impact-preview {
  background: rgba(26,107,114,0.08);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 28px;
}

.donor-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.donor-info input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.96rem;
  font-family: var(--font-body);
  outline: none;
}
.donor-info input:focus { border-color: var(--teal); }
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  cursor: pointer;
}
.check-row input[type=checkbox] { accent-color: var(--teal); width: 16px; height: 16px; }

.donate-note-box {
  background: var(--light);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.donate-note-box a { color: var(--teal); }

.btn-full { width: 100%; text-align: center; }

.donate-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.sidebar-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.sidebar-card p { font-size: 0.9rem; color: var(--muted); }
.impact-amounts { list-style: none; }
.impact-amounts li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.impact-amounts li strong { color: var(--navy); }
.why-list { list-style: none; }
.why-list li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .donate-page-grid { grid-template-columns: 1fr; }
  .donate-sidebar { order: -1; }
}

/* ── Volunteer page ── */
.why-vol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-vol-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.why-vol-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-vol-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-vol-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-vol-card p { font-size: 0.9rem; color: var(--muted); }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.role-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.role-card:hover { transform: translateY(-4px); }
.role-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,58,0.12);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.role-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.role-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; }
.role-card ul { list-style: none; }
.role-card ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}
.role-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--teal); font-size: 1.2rem; line-height: 1; }

@media (max-width: 900px) {
  .why-vol-grid { grid-template-columns: repeat(2, 1fr); }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .why-vol-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
}

/* ── News page ── */
.newsletter-strip {
  background: var(--teal);
  padding: 20px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-inner p {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.97rem;
  flex: 1;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  font-size: 0.92rem;
  font-family: var(--font-body);
  width: 240px;
  outline: none;
}
.nl-success.show { display: inline-block; color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 600; }

.featured-article {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 32px;
}
.feat-img {
  height: 380px;
  background-size: cover;
  background-position: center;
}
.feat-body { padding: 36px 36px 36px 0; }
.feat-body h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.feat-body p { font-size: 0.97rem; color: var(--muted); margin-bottom: 14px; }
.article-date { font-size: 0.82rem; font-weight: 600; color: var(--muted); letter-spacing: 0.05em; }
.article-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,107,114,0.1);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.news-card:hover { transform: translateY(-4px); }
.news-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.news-body { padding: 24px; }
.news-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.news-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 1000px) {
  .featured-article { grid-template-columns: 1fr; }
  .feat-img { height: 260px; }
  .feat-body { padding: 28px; }
}
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .news-grid { grid-template-columns: 1fr; } }

/* ── Contact page ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}
.contact-form.full input, .contact-form.full textarea, .contact-form.full select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.96rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form.full select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%236b7a8d' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.contact-form.full input:focus, .contact-form.full textarea:focus, .contact-form.full select:focus { border-color: var(--teal); }
.contact-form.full textarea { resize: vertical; min-height: 140px; }
.contact-form.full { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.contact-page-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
}
.ci-icon { font-size: 1.5rem; margin-top: 2px; }
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-card a { color: var(--teal); font-size: 0.95rem; text-decoration: none; font-weight: 500; }
.contact-info-card a:hover { text-decoration: underline; }
.contact-info-card p { font-size: 0.9rem; color: var(--muted); margin-top: 4px; line-height: 1.6; }

.map-embed { border-radius: var(--radius); overflow: hidden; }

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: all 0.3s;
}
.quick-link-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.ql-icon { font-size: 2.2rem; margin-bottom: 14px; }
.quick-link-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.quick-link-card p { font-size: 0.88rem; color: var(--muted); }

@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) { .quick-links-grid { grid-template-columns: 1fr; } }
