:root {
  --primary-color: #e11d48; /* Brand Red */
  --secondary-color: #1e293b; /* Slate Dark */
  --accent-color: #e0f2fe; /* Light Azure Accent */
  --highlight-yellow: #facc15; 
  --text-dark: #0f172a;
  --text-light: #ffffff;
  --bg-azure: #f0f9ff; /* Light Variant of Azure */
  --bg-white: #ffffff;
  --font-main: "Inter", sans-serif;
  --font-heading: "Onest", sans-serif;
  --focus-ring: 3px solid var(--primary-color);
}

/* --- Base & Accessibility --- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-azure);
  overflow-x: hidden;
  width: 100%;
  padding-top: 110px;
}

@media (max-width: 768px) {
  body { padding-top: 90px; }
}

/* Background Utility Classes */
.bg-light { background-color: var(--accent-color); }
.bg-azure { background-color: var(--bg-azure); }
.bg-white { background-color: var(--bg-white); }
.bg-dark { background-color: var(--secondary-color); color: white; }

.section-with-pattern {
  position: relative;
  background-image: radial-gradient(#cbd5e1 0.5px, transparent 0.5px);
  background-size: 24px 24px;
}

/* --- Layout & Typography --- */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 5rem 4%;
}

@media (max-width: 768px) {
  .container {
    padding: 4rem 1.5rem;
  }
}

h1, h2, h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); text-align: center; margin-bottom: 3.5rem; }
p { margin-bottom: 1.5rem; font-size: 1.15rem; }

a { text-decoration: none; color: inherit; }

/* --- Components --- */
.btn {
  display: inline-block;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: var(--secondary-color); transform: translateY(-2px); }

.btn-outline { border: 2px solid var(--secondary-color); color: var(--secondary-color); }
.btn-outline:hover { background: var(--secondary-color); color: white; }

.shadow { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.rounded-img { border-radius: 12px; }

/* --- Navbar --- */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 4%;
  background: var(--bg-white);
  border-bottom: 2px solid var(--secondary-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1800px;
}

.logo img { height: 85px; transition: transform 0.3s; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.03em; }
.nav-links a:hover { color: var(--primary-color); }

.mobile-menu-btn { display: none; background: none; border: none; color: var(--secondary-color); cursor: pointer; }

@media (max-width: 768px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: white; flex-direction: column; padding: 2.5rem;
    transform: translateY(-150%); transition: transform 0.3s;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav-links.active { transform: translateY(0); }
  .mobile-menu-btn { display: block; }
}

/* --- Hero --- */
.hero {
  position: relative; text-align: center; padding: 14rem 1rem 12rem;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url("../images/activity-1.jpeg") center/cover no-repeat;
  color: white;
}
.hero-logo { max-width: 240px; margin: 0 auto 2.5rem; }
.hero-content { max-width: 1100px; margin: 0 auto; }
.hero h1 { color: white; margin-bottom: 2.5rem; }
.hero p { color: #f1f5f9; font-size: 1.4rem; margin-bottom: 4rem; }
.hero-actions { display: flex; gap: 1.5rem; justify-content: center; }
.hero .btn-outline { border-color: white; color: white; }
.hero .btn-outline:hover { background: white; color: var(--secondary-color); }

.impact-snapshot {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem; margin: 4rem auto 0; max-width: 1000px;
  background: rgba(255, 255, 255, 0.1); padding: 2.5rem; border-radius: 16px;
  backdrop-filter: blur(8px);
}
.snapshot-number { display: block; font-size: 2.8rem; font-weight: 800; color: var(--highlight-yellow); margin-bottom: 0.5rem; }
.snapshot-label { color: white; text-transform: uppercase; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; }

/* --- Donation Banner --- */
.donation-banner {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}
.donation-banner h2 { color: white; margin-bottom: 1rem; }
.donation-banner p { font-size: 1.2rem; margin-bottom: 2rem; }
.donation-banner .btn-primary { background: white; color: var(--primary-color); }
.donation-banner .btn-primary:hover { background: var(--secondary-color); color: white; }

/* --- Impact --- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.impact-item { text-align: center; }
.impact-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.5rem; }
.impact-item p { font-weight: 600; font-size: 1rem; color: var(--secondary-color); margin-bottom: 0; }

/* --- Testimonials --- */
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  padding: 3rem;
  border-left: 5px solid var(--primary-color);
}
.testimonial strong { display: block; margin-top: 1.5rem; font-style: normal; color: var(--primary-color); }

/* --- Partners --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}
.partner-logo {
  padding: 1.5rem;
  border: 2px solid #f1f5f9;
  border-radius: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
}

/* --- Sponsor --- */
.sponsor-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--secondary-color);
}
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2rem; }

/* --- Newsletter --- */
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
  gap: 1rem;
}
.newsletter-form input {
  flex-grow: 1;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--primary-color); }

@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
}

/* --- Map --- */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }

/* --- Transparency --- */
.transparency-summary { margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }

/* --- About --- */
.section-intro { text-align: center; max-width: 1100px; margin: 0 auto 4.5rem; }
.tagline { font-family: var(--font-heading); font-weight: 700; color: var(--primary-color); font-size: 1.2rem; font-style: italic; margin-bottom: 2rem; }

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
  margin-bottom: 5rem;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
}

.mission-vision-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem; 
  margin: 4rem 0; 
}

.mission-box, .vision-box {
  border-top: 5px solid var(--primary-color);
}

/* --- Transparency --- */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.transparency-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.transparency-icon {
  font-size: 2.5rem;
  background: var(--accent-color);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
}

.transparency-content h3 {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.registration-list {
  list-style: none;
  margin-top: 1.5rem;
}

.registration-list li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .transparency-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .transparency-icon {
    margin: 0 auto 1.5rem;
  }
  .transparency-content h3 {
    text-align: center;
  }
}

.values-box {
  margin-top: 3rem;
  text-align: center;
  border-left: 5px solid var(--primary-color);
}

.leadership-box { margin-top: 5rem; }
.leadership-box h3 { text-align: center; margin-bottom: 3rem; }

.leaders-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2.5rem; 
}

.leader-item { 
  text-align: center;
  border-top: 5px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.leader-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.leader-item strong { font-size: 1.2rem; color: var(--secondary-color); display: block; margin-bottom: 0.5rem; }
.leader-item span.role { color: var(--primary-color); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; display: block; }
.leader-item span.country { color: var(--text-color); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 0.5rem; font-weight: 500; }
.flag-icon { width: 22px; height: auto; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border: 1px solid #e2e8f0; }

/* --- Featured Story --- */
.story-flex { display: flex; align-items: center; gap: 5rem; }
@media (max-width: 900px) { .story-flex { flex-direction: column-reverse; gap: 3rem; } }
.video-wrapper { aspect-ratio: 16 / 9; background: black; border-radius: 16px; border: 6px solid var(--secondary-color); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; }

/* --- Programs --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.process-item {
  background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; border: 1px solid #f1f5f9;
}
.process-item:hover { transform: translateY(-8px); border-bottom: 5px solid var(--primary-color); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.process-image { height: 220px; overflow: hidden; }
.process-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.process-item:hover .process-image img { transform: scale(1.05); }
.process-content { padding: 2rem; flex-grow: 1; }
.process-content h3 { font-size: 1.3rem; margin-bottom: 1rem; text-align: left; }
.program-features { list-style: none; font-size: 0.95rem; color: #64748b; margin-top: 1.5rem; }
.program-features li { margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 0.8rem; }
.program-features li::before { content: '✓'; color: var(--primary-color); font-weight: 900; }

/* --- Gallery --- */
.gallery-category { margin-bottom: 5rem; }
.gallery-category h3 { text-align: left; color: var(--primary-color); border-bottom: 3px solid #e2e8f0; padding-bottom: 0.8rem; margin-bottom: 2rem; font-size: 1.6rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-item { aspect-ratio: 1 / 1; border: 5px solid var(--secondary-color); border-radius: 12px; overflow: hidden; cursor: pointer; transition: all 0.3s ease; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover { transform: scale(1.02) translateY(-5px); box-shadow: 10px 10px 0 var(--primary-color); }
.gallery-item:hover img { transform: scale(1.1); }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.video-item { display: flex; flex-direction: column; gap: 1.5rem; }
.video-caption { font-weight: 800; text-transform: uppercase; font-size: 0.9rem; text-align: center; color: var(--secondary-color); }

/* --- Participate --- */
.participate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.participate-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: transform 0.3s; }
.participate-card:hover { transform: translateY(-10px); }
.participate-card-image { height: 250px; overflow: hidden; }
.participate-card-image img { width: 100%; height: 100%; object-fit: cover; }
.participate-card h3 { padding: 2rem 2rem 0.5rem; text-align: left; }
.participate-card p { padding: 0 2rem 2rem; color: #64748b; flex-grow: 1; }
.card-link { display: block; padding: 1.5rem; background: #f8fafc; text-align: center; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; border-top: 1px solid #f1f5f9; }
.participate-card:hover .card-link { background: var(--primary-color); color: white; }

/* --- Support/Donation --- */
.donate-section { padding: 8rem 0; background-color: var(--bg-azure); color: var(--text-dark); }
.donate-section .section-title { color: var(--secondary-color); }
.donate-section .section-intro p { color: #64748b; font-size: 1.2rem; }

.donation-box { max-width: 800px; margin: 3rem auto 0; background: white; border-radius: 20px; box-shadow: 0 20px 40px rgba(30, 41, 59, 0.1); overflow: hidden; border: 1px solid #e2e8f0; }
.payment-tabs { display: flex; background: #f1f5f9; padding: 0.6rem; gap: 0.4rem; }
.tab-btn { flex: 1; padding: 1rem; border: none; border-radius: 12px; font-weight: 800; text-transform: uppercase; color: #64748b; cursor: pointer; transition: 0.3s; font-size: 0.85rem; }
.tab-btn.active { background: white; color: var(--primary-color); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.tab-panel { padding: 3rem 2.5rem; color: var(--text-dark); }
.tab-panel.hidden { display: none !important; }

@media (max-width: 768px) {
  .tab-panel { padding: 2rem 1.2rem; }
  .tab-btn { padding: 0.8rem 0.4rem; font-size: 0.7rem; }
  .momo-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .momo-card { padding: 1.25rem; border-radius: 16px; }
  .momo-logo { width: 55px; height: 55px; margin-right: 1rem; font-size: 0.9rem; }
  .momo-info .momo-name { font-size: 1.1rem; }
  .momo-info .momo-number { font-size: 1.1rem; }
  
  .bank-details-card { padding: 1.5rem 1rem; }
  .bank-row { flex-direction: column; align-items: flex-start; gap: 0.2rem; padding: 0.8rem 0; }
  .bank-value { text-align: left; font-size: 1rem; word-break: break-all; }
  .copy-hint { font-size: 0.75rem; margin-bottom: 1.5rem; }
}

.momo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.momo-card { background: #fff; border: 3px solid #f1f5f9; border-radius: 20px; padding: 1.8rem; display: flex; align-items: center; transition: 0.3s; }
.momo-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.momo-logo { width: 65px; height: 65px; border-radius: 18px; margin-right: 1.5rem; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; color: white; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.mtn .momo-logo { background: #ffcc00; color: black; }
.airtel .momo-logo { background: #ff0000; }
.momo-info .momo-label { font-size: 0.75rem; text-transform: uppercase; color: #94a3b8; font-weight: 800; letter-spacing: 0.1em; }
.momo-info .momo-name { display: block; font-size: 1.1rem; font-weight: 700; color: var(--secondary-color); margin: 0.2rem 0; }
.momo-info .momo-number { font-size: 1.3rem; color: var(--primary-color); font-weight: 900; font-family: var(--font-heading); }

.bank-details-card { background: #f8fafc; padding: 2.5rem; border-radius: 20px; border: 2px dashed #cbd5e1; }
.bank-row { display: flex; justify-content: space-between; padding: 1.2rem 0; border-bottom: 1px solid #e2e8f0; }
.bank-row:last-child { border-bottom: none; }
.bank-label { color: #64748b; font-weight: 800; text-transform: uppercase; font-size: 0.8rem; }
.bank-value { color: var(--secondary-color); font-weight: 800; font-size: 1.1rem; }
.copy-hint { text-align: center; color: var(--primary-color); font-weight: 800; margin-bottom: 2rem; text-transform: uppercase; display: block; letter-spacing: 0.1em; font-size: 0.85rem; }

/* --- Contact --- */
.contact-wrapper { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4rem; 
  background: white; 
  padding: 4rem; 
  border-radius: 24px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  align-items: start;
}
@media (max-width: 950px) { .contact-wrapper { grid-template-columns: 1fr; padding: 2.5rem; gap: 3.5rem; } }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-method { display: flex; gap: 1.5rem; align-items: flex-start; }
.contact-icon { 
  width: 55px; height: 55px; 
  background: var(--bg-azure); 
  border-radius: 16px; 
  display: flex; align-items: center; justify-content: center; 
  font-size: 1.6rem; flex-shrink: 0; 
  border: 2px solid #e2e8f0; 
}
.contact-method h3 { margin-bottom: 0.3rem; font-size: 1.2rem; text-align: left; color: var(--secondary-color); }
.contact-method p { margin-bottom: 0; color: #64748b; font-size: 1rem; line-height: 1.5; }

.social-links { margin-top: 1.5rem; padding-top: 2rem; border-top: 2px solid #f1f5f9; }
.social-grid { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.social-item { 
  padding: 0.7rem 1.2rem; 
  background: var(--secondary-color); 
  color: white; 
  border-radius: 8px; 
  font-weight: 700; 
  text-transform: uppercase; 
  font-size: 0.8rem; 
  transition: all 0.3s; 
}
.social-item:hover { background: var(--primary-color); transform: translateY(-3px); }

.contact-form {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 2rem; text-align: left; color: var(--secondary-color); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.6rem; font-size: 0.8rem; text-transform: uppercase; color: #64748b; }
.form-group input, .form-group textarea { 
  width: 100%; padding: 1rem; 
  border: 2px solid #e2e8f0; 
  border-radius: 10px; 
  font-size: 1rem; 
  background: white;
  transition: all 0.3s; 
}
.form-group input:focus, .form-group textarea:focus { 
  outline: none; border-color: var(--primary-color); 
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.05); 
}

/* --- Modals --- */
.lightbox, .program-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 2rem; backdrop-filter: blur(5px); }
.lightbox.active, .program-modal.active { display: flex; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border: 6px solid white; border-radius: 8px; }
.lightbox-close, .program-modal-close { position: absolute; top: 2rem; right: 2rem; color: white; font-size: 3.5rem; cursor: pointer; line-height: 1; }

.program-modal-content { background: white; width: 100%; max-width: 1150px; max-height: 90vh; border-radius: 24px; overflow-y: auto; position: relative; }
.program-modal-grid { display: grid; grid-template-columns: 1fr 1.2fr; }
@media (max-width: 900px) { .program-modal-grid { grid-template-columns: 1fr; } }
.program-modal-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.program-modal-info { padding: 4.5rem; }
.pm-tagline { color: var(--primary-color); font-weight: 800; text-transform: uppercase; margin-bottom: 2rem; }
.pm-description h3 { border-bottom: 3px solid var(--accent-color); padding-bottom: 0.5rem; margin-top: 2.5rem; text-align: left; }
#pm-impact { margin-top: 1.5rem; }
#pm-impact li { background: var(--accent-color); padding: 1rem 1.5rem; margin-bottom: 0.8rem; border-radius: 10px; font-weight: 700; display: flex; align-items: center; gap: 1rem; }
#pm-impact li::before { content: '✓'; color: var(--primary-color); }
.pm-actions { margin-top: 3.5rem; }

/* --- Footer --- */
footer { background: var(--secondary-color); color: #94a3b8; padding: 5rem 0; border-top: 1px solid #334155; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #cbd5e1; font-weight: 600; font-size: 0.9rem; }
.footer-links a:hover { color: white; }

/* --- Ultra-Small Screen Optimizations (e.g., 320px wide) --- */
@media (max-width: 350px) {
  .navbar { padding: 0.8rem 3%; }
  .logo img { height: 60px; }
  
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.5rem !important; margin-bottom: 2rem !important; }
  
  .hero { padding: 6rem 1rem 4rem; }
  .hero p { font-size: 1.1rem; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .hero-actions .btn { width: 100%; }

  .impact-snapshot { padding: 1.5rem 1rem; gap: 1.5rem; }
  .snapshot-number { font-size: 2rem; }

  .container { padding: 3rem 1rem; }
  
  .process-grid, .participate-grid, .gallery-grid, .video-grid {
    gap: 1.5rem;
  }

  .donation-box { border-radius: 12px; }
  .tab-panel { padding: 1.5rem 0.8rem; }
  .momo-card { padding: 1rem 0.8rem; gap: 0.8rem; }
  .momo-logo { width: 40px; height: 40px; margin-right: 0.5rem; }
  .momo-info .momo-number { font-size: 1rem; }
  
  .bank-details-card { padding: 1rem 0.8rem; border-radius: 12px; }
  
  .contact-wrapper { padding: 1.5rem 1rem; border-radius: 16px; }
  .contact-form { padding: 1.5rem 1rem; border-radius: 12px; }
  
  .program-modal-info { padding: 2rem 1.2rem; }
  .lightbox-close, .program-modal-close { top: 1rem; right: 1rem; font-size: 2.5rem; }
}
