:root {
  --navy: #0a4174;
  --peach: #fed7a5;
  --peach-dark: #f9b96b;
  --white: #ffffff;
  --navy-light: #0d5299;
  --navy-pale: #e8f0f9;
  --text-dark: #0d1f33;
  --text-mid: #3d5a7a;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 65, 116, 0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  box-shadow: 0 2px 20px rgba(10,65,116,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo img {
  height: 44px; width: 44px; object-fit: contain;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--peach); line-height: 1.2;
}
.nav-logo-text span { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.7); font-family: 'DM Sans', sans-serif; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover { color: var(--peach); }
.nav-donate {
  background: var(--peach); color: var(--navy);
  padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
}
.nav-donate:hover { background: var(--peach-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(254,215,165,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--peach); border-radius: 2px; transition: all 0.3s; }

/* ── HERO SLIDER ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; margin-top: 72px;
}
.slides { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); }
.slide {
  min-width: 100%; height: 100%; position: relative;
  background: var(--navy);
}
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55; transition: transform 6s ease;
}
.slide.active img { transform: scale(1.06); }
.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 8% 80px;
  max-width: 760px;
}
.slide-tag {
  background: var(--peach); color: var(--navy);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s 0.2s;
}
.slide.active .slide-tag { opacity: 1; transform: translateY(0); }
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s 0.4s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }
.slide-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  line-height: 1.6; margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.7s 0.55s;
}
.slide.active .slide-sub { opacity: 1; transform: translateY(0); }
.slide-btn {
  background: var(--peach); color: var(--navy);
  padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.3s;
  opacity: 0; transform: translateY(20px);
  transition: background 0.3s, transform 0.7s 0.7s, opacity 0.7s 0.7s, box-shadow 0.3s;
}
.slide.active .slide-btn { opacity: 1; transform: translateY(0); }
.slide-btn:hover { background: var(--peach-dark); box-shadow: 0 6px 25px rgba(254,215,165,0.5); }

.slider-controls {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.3s; border: none;
}
.dot.active { background: var(--peach); width: 28px; border-radius: 6px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; width: 52px; height: 52px;
  border-radius: 50%; font-size: 1.3rem;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.slider-arrow:hover { background: var(--peach); color: var(--navy); border-color: var(--peach); }
.slider-arrow.prev { left: 32px; }
.slider-arrow.next { right: 32px; }

/* ── SECTIONS GENERAL ── */
section { padding: 90px 5%; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--navy); background: var(--peach);
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 20px;
}
.section-title span { color: var(--peach-dark); }
.section-sub {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.7; max-width: 640px;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 60px;
}
.about-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  background: var(--peach); border-radius: 20px; z-index: -1;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.stat-card {
  background: var(--navy-pale);
  border-radius: 16px; padding: 24px 20px;
  border-left: 4px solid var(--peach-dark);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--navy);
}
.stat-label { font-size: 0.85rem; color: var(--text-mid); margin-top: 4px; }

/* ── MISSION VISION STRIP ── */
.mvg {
  background: var(--navy);
  padding: 80px 5%;
}
.mvg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 50px;
}
.mvg-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(254,215,165,0.2);
  border-radius: 20px; padding: 40px 32px;
  transition: all 0.3s;
}
.mvg-card:hover {
  background: rgba(254,215,165,0.1);
  border-color: var(--peach);
  transform: translateY(-4px);
}
.mvg-icon {
  width: 52px; height: 52px; background: var(--peach);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
  margin-bottom: 22px;
}
.mvg-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--peach);
  margin-bottom: 14px;
}
.mvg-card p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; }

/* ── PROGRAMS ── */
.programs { background: var(--navy-pale); }
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 60px;
}
.program-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(10,65,116,0.08);
  transition: all 0.35s; cursor: pointer;
}
.program-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(10,65,116,0.15); }
.program-img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover; display: block;
  transition: transform 0.5s;
}
.program-card:hover .program-img { transform: scale(1.05); }
.program-img-wrap { overflow: hidden; }
.program-body { padding: 28px 26px 32px; }
.program-icon {
  width: 48px; height: 48px; background: var(--peach);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem;
  margin-bottom: 16px;
}
.program-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 10px;
}
.program-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.program-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--navy);
  font-weight: 600; font-size: 0.88rem;
  text-decoration: none; transition: gap 0.2s;
}
.program-link:hover { gap: 10px; color: var(--peach-dark); }

/* ── GOALS ── */
.goals { background: var(--white); }
.goals-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 60px;
}
.goal-card {
  border: 2px solid var(--navy-pale);
  border-radius: 20px; padding: 36px 32px;
  transition: all 0.3s;
}
.goal-card:hover { border-color: var(--peach-dark); background: var(--navy-pale); }
.goal-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--peach-dark); line-height: 1;
  margin-bottom: 12px;
}
.goal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 16px;
}
.goal-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.goal-items li {
  font-size: 0.92rem; color: var(--text-mid);
  padding-left: 20px; position: relative; line-height: 1.6;
}
.goal-items li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--peach-dark); font-size: 0.85rem;
}

/* ── VALUES ── */
.values { background: var(--navy); padding: 80px 5%; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 50px;
}
.value-card {
  text-align: center; padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; transition: all 0.3s;
}
.value-card:hover { background: rgba(254,215,165,0.12); border-color: var(--peach); transform: translateY(-4px); }
.value-emoji { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--peach);
  margin-bottom: 12px;
}
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── GALLERY ── */
.gallery { background: var(--navy-pale); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 50px;
}
.gallery-item {
  border-radius: 14px; overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 1;
  background: var(--navy);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s, filter 0.3s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.8); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,65,116,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.85rem; font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(5, 20, 40, 0.95);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: white; font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── DONATE BANNER ── */
.donate-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.donate-banner::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: var(--peach); opacity: 0.07;
  border-radius: 50%;
}
.donate-banner::after {
  content: '';
  position: absolute; bottom: -80px; right: -40px;
  width: 350px; height: 350px;
  background: var(--peach); opacity: 0.06;
  border-radius: 50%;
}
.donate-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); margin-bottom: 16px;
}
.donate-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.donate-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--peach); color: var(--navy);
  padding: 16px 40px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: all 0.3s;
}
.btn-primary:hover { background: var(--peach-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254,215,165,0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 16px 40px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--peach); color: var(--peach); }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; margin-top: 60px; align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--navy);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px; background: var(--peach);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mid); margin-bottom: 4px; }
.contact-detail p { font-size: 0.95rem; color: var(--text-dark); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 18px; border: 2px solid #e0e9f4;
  border-radius: 12px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text-dark);
  outline: none; transition: border-color 0.2s;
  background: #fafcff;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  background: var(--navy); color: white;
  border: none; padding: 16px 40px;
  border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,65,116,0.3); }

/* ── FOOTER ── */
footer {
  background: #071426; color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 50px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--peach);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--peach); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem;
  color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.social-btn:hover { background: var(--peach); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--navy);
  padding: 20px 5%;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 12px 16px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 500;
  transition: all 0.2s;
}
.mobile-menu a:hover { background: rgba(254,215,165,0.1); color: var(--peach); }
.mobile-menu .nav-donate {
  margin-top: 8px; text-align: center;
  display: block; padding: 14px;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mvg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-donate { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; }
  .slider-arrow { display: none; }
  section { padding: 60px 5%; }
}


/* ── DONATE PAGE SPECIFIC STYLES ── */
.donate-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 160px 5% 100px;
  text-align: center;
  position: relative;
}
.donate-hero::before {
  content: ''; position: absolute; top: 0; left: -50px;
  width: 300px; height: 300px; background: var(--peach);
  opacity: 0.05; border-radius: 50%;
}
.donate-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.donate-hero h1 span { color: var(--peach); }
.donate-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 0 auto; line-height: 1.6;
}

.donate-wrapper {
  background: var(--navy-pale);
  padding: 0 5% 90px;
}
.donate-container {
  max-width: 800px;
  margin: -60px auto 0;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(10,65,116,0.1);
  padding: 50px;
  position: relative;
  z-index: 10;
}

.donation-type {
  display: flex; gap: 12px; margin-bottom: 32px;
  background: var(--navy-pale); padding: 6px;
  border-radius: 12px;
}
.type-btn {
  flex: 1; padding: 14px; text-align: center;
  border-radius: 8px; border: none; background: transparent;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: var(--text-mid);
  cursor: pointer; transition: all 0.3s;
}
.type-btn.active {
  background: var(--white); color: var(--navy);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.amount-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.amount-btn {
  padding: 18px 10px; border: 2px solid #e0e9f4;
  border-radius: 12px; background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: var(--navy);
  cursor: pointer; transition: all 0.2s;
}
.amount-btn:hover { border-color: var(--peach); }
.amount-btn.active {
  border-color: var(--peach-dark); background: var(--peach);
}
.custom-amount { 
  grid-column: span 2; 
  text-align: left; 
}

.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--navy);
  margin: 40px 0 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--navy-pale);
}

.donate-textarea {
  min-height: 100px;
}

.btn-donate-submit {
  width: 100%; background: var(--navy); color: white;
  border: none; padding: 20px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 1.1rem; cursor: pointer; transition: all 0.3s;
  margin-top: 30px;
}
.btn-donate-submit:hover {
  background: var(--peach); color: var(--navy);
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(254,215,165,0.4);
}

@media (max-width: 768px) {
  .donate-container { padding: 30px 20px; }
  .donate-hero { padding: 140px 5% 80px; }
}

@media (max-width: 600px) { 
  .custom-amount { grid-column: span 1; } 
}