/* Helping Hands for Better Life Initiative */
:root {
  --green-dark: #0D3B1E;
  --green-primary: #1B5E20;
  --green-mid: #2E7D32;
  --green-light: #4CAF50;
  --green-pale: #E8F5E9;
  --bronze: #B87333;
  --bronze-light: #D4A574;
  --copper: #A0522D;
  --orange: #FF9800;
  --orange-light: #FFB74D;
  --orange-hover: #F57C00;
  --white: #FFFFFF;
  --off-white: #F8F9F5;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --dark-overlay: rgba(10, 30, 15, 0.72);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header.scrolled .logo-text,
.header.scrolled .nav-links a {
  color: var(--text-dark);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--green-primary);
}

.header.scrolled .menu-toggle span {
  background: var(--green-dark);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 72px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.25;
  max-width: 180px;
  transition: var(--transition);
}

.logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-light);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-donate {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 152, 0, 0.35);
}

.btn-donate:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 152, 0, 0.45);
}

.btn-primary {
  background: var(--green-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
}

.btn-outline:hover {
  background: var(--green-primary);
  color: white;
}

.btn-white {
  background: white;
  color: var(--green-primary);
}

.btn-white:hover {
  background: var(--green-pale);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .menu-toggle span {
  background: var(--green-dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--green-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  color: white;
  font-size: 1.35rem;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--orange-light);
}

.mobile-nav .btn-donate {
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ========== HERO (Trust style) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a1f12;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-girl.jpg') center top / cover no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,25,12,0.88) 0%, rgba(8,25,12,0.55) 55%, rgba(8,25,12,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 120px 0 80px;
  color: white;
}

.hero-label {
  display: block;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  max-width: 100%;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

.hero h1 span {
  color: #ffffff;
  display: inline;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

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

/* ========== SECTIONS ========== */
section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.section-header .label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

/* Stats bar */
.stats {
  background: var(--green-primary);
  color: white;
  padding: 55px 0;
}

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

.stat-item h3 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.feature-card .content {
  padding: 26px;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.feature-card a {
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-card a:hover {
  color: var(--orange);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.value-card:hover {
  background: white;
  border-color: var(--green-light);
  box-shadow: var(--shadow);
}

.value-card .icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
}

.team-card .info {
  padding: 28px 24px;
}

.team-card h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.team-card .role {
  color: var(--bronze);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Modern Team Cards (dark green style) */
.team-grid-modern {
  max-width: 960px;
}

.team-card-modern {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  color: white;
  transition: var(--transition);
}

.team-card-modern:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.team-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 3px solid #D4A017;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-card-modern h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1.35;
}

.team-card-modern .role {
  color: #E8B923;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.team-card-modern p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.btn-learn-more {
  display: inline-block;
  padding: 10px 26px;
  border: 1.5px solid #E8B923;
  border-radius: 50px;
  background: transparent;
  color: #E8B923;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-learn-more:hover {
  background: #E8B923;
  color: var(--green-dark);
}

/* Bio Modal */
.bio-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.bio-modal.open {
  display: flex;
}

.bio-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.bio-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.bio-modal-close:hover {
  color: var(--green-dark);
}

.bio-modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.bio-modal-header img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid #D4A017;
  flex-shrink: 0;
}

.bio-modal-header h2 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.bio-modal-header .role {
  color: #B8860B;
  font-weight: 600;
  font-size: 0.95rem;
}

.bio-modal-body {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.bio-modal-body p {
  margin-bottom: 14px;
}

/* CTA */
.cta-box {
  position: relative;
  color: white;
  text-align: center;
  padding: 70px 40px;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1f12;
}

.cta-box-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-box-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,25,12,0.82), rgba(13,59,30,0.78));
}

.cta-box h2,
.cta-box p,
.cta-box .btn {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 520px;
  margin: 0 auto 28px;
  opacity: 0.92;
  font-size: 1.08rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Footer */
.footer {
  background: var(--green-dark);
  color: white;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 48px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  opacity: 0.85;
  font-size: 0.95rem;
  max-width: 300px;
  margin-top: 12px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--orange-light);
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  opacity: 0.85;
  font-size: 0.95rem;
}

.footer ul a:hover {
  opacity: 1;
  color: var(--orange-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* Page Hero (inner pages) – compact with background image */
.page-hero {
  position: relative;
  margin-top: 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  background: #0a1f12;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,25,12,0.78) 0%, rgba(8,25,12,0.68) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 110px 24px 48px;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 1.05rem;
}

.page-hero .hero-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.3);
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.about-content img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Donate */
.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.donate-card {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.donate-card:hover,
.donate-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.donate-card.featured {
  background: #FFF8F0;
}

.donate-card h3 {
  font-size: 1.9rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.donate-card p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  color: var(--green-dark);
  margin-bottom: 22px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  color: var(--green-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.social-btn:hover {
  background: var(--green-primary);
  color: white;
}

.contact-form {
  background: var(--off-white);
  padding: 36px;
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-content { max-width: 100%; }
  .features-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-content,
  .contact-grid { grid-template-columns: 1fr; }
  .about-content img { height: 320px; }
  .donate-options { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 1024px) {
  .logo img { height: 64px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .logo-text { display: none; }

  .hero {
    min-height: 90vh;
  }
  .hero-content {
    padding: 110px 0 70px;
    text-align: center;
  }
  .hero-label { font-size: 1.45rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-header h2 { font-size: 1.9rem; }
  section { padding: 56px 0; }

  .features-grid,
  .values-grid { grid-template-columns: 1fr; }

  .feature-card img { height: 200px; }
  .feature-card .content { padding: 22px 20px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-item h3 { font-size: 2.1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-brand .logo { justify-content: center; }

  .page-hero h1 { font-size: 1.85rem; }
  .page-hero { min-height: 240px; }
  .page-hero .container { padding: 100px 20px 36px; }
  .page-hero p { font-size: 0.98rem; }
  .page-hero .hero-logo { width: 80px; height: 80px; }

  .cta-box { padding: 48px 22px; }
  .cta-box h2 { font-size: 1.7rem; }
  .cta-box p { font-size: 0.98rem; }
  .cta-box .btn { margin-top: 8px; }

  .team-card img { height: 280px; }
  .team-card-modern { padding: 28px 20px 26px; }
  .team-avatar { width: 110px; height: 110px; }

  .bio-modal-header {
    flex-direction: column;
    text-align: center;
  }
  .bio-modal-content {
    padding: 28px 20px;
    max-height: 85vh;
  }

  /* Program detail pages */
  .program-detail h2 { font-size: 1.35rem !important; margin: 28px 0 12px !important; }
  .program-detail p { font-size: 0.98rem !important; }
  .program-image {
    max-height: 260px !important;
    margin: 22px 0 !important;
    border-radius: 10px !important;
  }
  .objectives-box {
    padding: 22px 18px !important;
    margin: 22px 0 !important;
  }
  .program-back { margin-bottom: 20px !important; }

  /* Donate bank boxes */
  .donate-options { gap: 18px; }
  .donate-card { padding: 22px 18px; }

  /* Contact */
  .contact-form { padding: 24px 18px; }
  .contact-grid { gap: 28px; }

  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }
  img { max-width: 100%; height: auto; }
  .contact-form,
  .program-detail,
  .about-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hero-label { font-size: 1.25rem; }
  .hero h1 { font-size: 1.9rem; line-height: 1.25; }
  .hero p { font-size: 0.98rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }

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

  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .nav { height: 70px; }
  .logo img { height: 56px; }

  .page-hero h1 { font-size: 1.6rem; }
  .page-hero { min-height: 220px; }
  .page-hero .container { padding: 95px 16px 32px; }

  .section-header h2 { font-size: 1.65rem; }
  .section-header p { font-size: 0.95rem; }

  .feature-card img { height: 190px; }
  .feature-card h3 { font-size: 1.15rem; }

  .cta-box h2 { font-size: 1.5rem; }
  .cta-box { padding: 40px 18px; }

  .team-card-modern h3 { font-size: 1.05rem; }
  .team-card-modern p { font-size: 0.88rem; }

  .program-detail h2 { font-size: 1.22rem !important; }
  .program-image { max-height: 220px !important; }

  /* Stack paired buttons on program pages */
  .program-detail .btn {
    display: block;
    width: 100%;
    margin: 8px 0 !important;
  }

  .container { padding-left: 16px; padding-right: 16px; }
}
