/* ========================================================================
   FIVE PILLARS YOUTH FOUNDATION — STYLES
   Brand colors (exact match from original globals.css):
   - Primary navy: hsl(220, 55%, 22%)
   - Accent gold: hsl(43, 72%, 55%)
   Fonts: DM Sans (body), Plus Jakarta Sans (display)
   ======================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(220, 40%, 13%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(220, 55%, 22%);
  --primary-dark: hsl(220, 55%, 15%);
  --primary-fg: #ffffff;
  --accent: hsl(43, 72%, 55%);
  --accent-light: hsl(43, 85%, 65%);
  --accent-dark: hsl(43, 72%, 45%);
  --accent-fg: hsl(220, 40%, 13%);
  --muted: hsl(220, 14%, 92%);
  --muted-foreground: hsl(220, 10%, 46%);
  --border: hsl(220, 14%, 86%);
  --destructive: hsl(0, 84%, 60%);
  --red: #ef4444;
  --green: hsl(142, 71%, 45%);

  --radius: 0.625rem;
  --radius-sm: calc(0.625rem - 4px);
  --radius-lg: calc(0.625rem + 4px);
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.03), 0 1px 3px 0 rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.05);
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--foreground);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: white; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

.lead { font-size: 1.05rem; color: var(--muted-foreground); line-height: 1.7; }
.section-dark .lead { color: rgba(255,255,255,0.75); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}
.section-dark .eyebrow { color: var(--accent); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-muted { background: hsl(220, 14%, 97%); }
.section-dark { background: var(--primary); color: white; }
.navy-gradient {
  background: linear-gradient(135deg, hsl(220, 55%, 18%) 0%, hsl(220, 55%, 28%) 100%);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.15s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.85rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: hsl(220, 55%, 18%); }

.btn-gold { background: var(--accent); color: var(--accent-fg); }
.btn-gold:hover { background: var(--accent-light); }

.btn-outline {
  background: var(--card);
  color: var(--foreground);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); background: var(--muted); }

.btn-outline-light {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.22); }

.btn-ghost { background: transparent; color: var(--foreground); box-shadow: none; }
.btn-ghost:hover { background: var(--muted); box-shadow: none; }

.btn-block { width: 100%; }
.icon-heart { color: var(--red); fill: var(--red); width: 16px; height: 16px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--muted);
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--foreground);
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(20, 33, 61, 0.8);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--muted); color: var(--foreground); }
.nav-links a.active { color: var(--foreground); font-weight: 600; }
.nav-links .btn { margin-left: 0.5rem; box-shadow: none; }

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--foreground);
}
.mobile-toggle:hover { background: var(--muted); }
.mobile-nav { display: none; flex-direction: column; gap: 0.25rem; padding: 0.5rem 1.5rem 1rem; background: var(--card); border-bottom: 1px solid var(--border); }
.mobile-nav a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--foreground);
}
.mobile-nav a:hover { background: var(--muted); }
.mobile-nav .btn { margin-top: 0.5rem; box-shadow: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .site-header.open .mobile-nav { display: flex; }
  .brand-name { font-size: 0.95rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, hsla(220,55%,8%,0.95) 0%, hsla(220,55%,10%,0.85) 50%, hsla(220,55%,12%,0.75) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, hsl(220, 55%, 28%) 0%, hsl(220, 55%, 14%) 60%, hsl(220, 55%, 8%) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(219, 156, 46, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(219, 156, 46, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
  z-index: 2;
}
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
}
.hero-badge .heart { color: var(--accent); width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 .accent-text { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}
.scroll-indicator .chevron { animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== MISSION + TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col > div p { margin-top: 1rem; }
.image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--muted);
  box-shadow: var(--shadow-md);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.stat {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: var(--radius);
  background: var(--muted);
}
.stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.35rem;
}

/* ===== CARD GRIDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.2s;
}
.card-hover { cursor: pointer; }
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: hsla(220, 55%, 22%, 0.2);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: hsla(220, 55%, 22%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.icon-circle svg { width: 24px; height: 24px; color: var(--primary); }
.feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.6; }

/* ===== PROGRAM CARDS (preview style with image) ===== */
.program-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.program-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--muted);
  overflow: hidden;
}
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.program-card:hover .program-card-img img { transform: scale(1.05); }
.program-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.45rem;
  background: hsla(220, 55%, 22%, 0.9);
  border-radius: var(--radius);
  color: white;
  display: flex;
}
.program-card-badge svg { width: 16px; height: 16px; }
.program-card-body { padding: 1.25rem; flex: 1; }
.program-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.program-card-body p { font-size: 0.9rem; color: var(--muted-foreground); }

/* ===== PROGRAM DETAIL (alternating two-col on programs page) ===== */
.program-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.program-detail:last-child { margin-bottom: 0; }
.program-detail.reverse .program-detail-image { order: 2; }
.program-detail-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--muted);
}
.program-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.program-detail-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem;
  background: hsla(220, 55%, 22%, 0.9);
  border-radius: var(--radius);
  color: white;
}
.program-detail-icon svg { width: 20px; height: 20px; }
.program-detail h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.program-detail p { color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1.25rem; }
.feature-list { list-style: none; margin: 1.25rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23db9c2e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='m9 12 2 2 4-4'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== GET INVOLVED CARDS (3-col) ===== */
.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.involved-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.2s;
}
.involved-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.involved-card .icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(219, 156, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.involved-card .icon-bubble svg { width: 28px; height: 28px; color: var(--accent); }
.involved-card .icon-bubble svg.heart { color: var(--red); fill: var(--red); }
.involved-card h3 { color: white; font-size: 1.1rem; margin-bottom: 0.5rem; }
.involved-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 1.25rem; line-height: 1.6; }

/* ===== DONATE PAGE ===== */
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.amount-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; }
.amount-btn {
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--card);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.15s;
  color: var(--foreground);
}
.amount-btn:hover { border-color: var(--primary); }
.amount-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.form-group .required { color: var(--destructive); }
.input, .textarea, .select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(220, 55%, 22%, 0.1);
}
.textarea { min-height: 120px; resize: vertical; }
.input-with-icon { position: relative; }
.input-with-icon .input { padding-left: 2.25rem; }
.input-with-icon svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--muted-foreground); }
.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--muted);
  margin-bottom: 0.6rem;
  transition: background 0.15s;
}
.impact-item:hover { background: hsl(220, 14%, 88%); }
.impact-amount {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}
.impact-desc { font-size: 0.88rem; color: var(--foreground); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--muted);
  margin-bottom: 0.75rem;
  transition: background 0.15s;
}
.contact-method:hover { background: hsl(220, 14%, 88%); }
.contact-method .method-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: hsla(220, 55%, 22%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method .method-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-method .method-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.contact-method .method-value { font-size: 0.85rem; color: var(--muted-foreground); }

.donor-note {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: hsla(43, 72%, 55%, 0.1);
  border: 1px solid hsla(43, 72%, 55%, 0.25);
  margin-top: 1rem;
}
.donor-note h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.donor-note h4 svg { color: var(--accent); width: 16px; height: 16px; }
.donor-note p { font-size: 0.78rem; color: var(--muted-foreground); line-height: 1.6; }

.success-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.success-icon, .cancel-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.success-icon { background: hsla(142, 71%, 45%, 0.15); }
.success-icon svg { width: 32px; height: 32px; color: var(--green); }
.cancel-icon { background: hsla(28, 100%, 50%, 0.15); }
.cancel-icon svg { width: 32px; height: 32px; color: hsl(28, 100%, 50%); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-tag { font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.site-footer h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a, .footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact a svg { width: 14px; height: 14px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand .brand-name { color: white; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-made-with { display: inline-flex; align-items: center; gap: 0.35rem; }
.footer-made-with svg { color: var(--accent); width: 12px; height: 12px; }

/* ===== BRANDED CONTACT FORM CARD ===== */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  z-index: 2;
}
.form-card-header {
  background: linear-gradient(135deg, hsl(220, 55%, 18%) 0%, hsl(220, 55%, 28%) 100%);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}
.form-card-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(219, 156, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(219, 156, 46, 0.4);
}
.form-card-header-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.form-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  color: white;
  margin: 0;
  line-height: 1.2;
}
.form-card-subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.form-card-body { padding: 2rem; }
.form-card .input,
.form-card .textarea,
.form-card .select {
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--border);
  background: hsl(210, 20%, 99%);
  transition: all 0.2s;
}
.form-card .input:focus,
.form-card .textarea:focus,
.form-card .select:focus {
  border-color: var(--accent);
  background: var(--card);
  box-shadow: 0 0 0 3px hsla(43, 72%, 55%, 0.15);
}
.form-card label {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .form-card-header { padding: 1.25rem; }
  .form-card-body { padding: 1.5rem; }
  .form-card-title { font-size: 1.05rem; }
}

/* ===== FOUNDER SECTION ===== */
.founder-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--muted);
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  justify-self: center;
}
.founder-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid hsla(43, 72%, 55%, 0.3);
  border-radius: inherit;
  pointer-events: none;
}
.founder-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
}
.founder-name {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.founder-name strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

/* ===== UTILITIES ===== */
.divider { border-top: 1px solid var(--border); margin: 1.5rem 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.flex-wrap-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.hidden { display: none; }
.secure-note { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--muted-foreground); margin-top: 0.75rem; }
.secure-note svg { width: 14px; height: 14px; }

/* Reveal-on-scroll animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .program-detail, .program-detail.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .program-detail.reverse .program-detail-image { order: 0; }
  .donate-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .involved-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .stat { padding: 0.85rem; display: flex; align-items: center; justify-content: space-between; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { margin-top: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
