/* ============================
   CSS VARIABLES & ROOT
   Colors extracted from CHSSYP logo:
   Primary Blue: #1e5aa0
   Accent Red/Orange: #dc4b23
   Dark Brown: #4a3728
   White: #ffffff
============================= */
:root {
  --primary: #1e5aa0;
  --primary-dark: #163f72;
  --primary-light: #2d7dd2;
  --accent: #dc4b23;
  --accent-dark: #b83a1a;
  --accent-light: #f05a2e;
  --dark: #1a1a2e;
  --dark-2: #2d2d44;
  --mid: #4a4a6a;
  --text: #333348;
  --text-light: #666680;
  --bg: #f8f9ff;
  --bg-2: #eef1f8;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(30,90,160,0.12);
  --shadow-lg: 0 8px 48px rgba(30,90,160,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ============================
   RESET & BASE
============================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul { list-style: none; }

/* ============================
   UTILITY CLASSES
============================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(220,75,35,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-label.light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   BUTTONS
============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(220,75,35,0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,75,35,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ============================
   NAVBAR
============================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(30,90,160,0.1);
  padding: 12px 0;
}

.navbar.scrolled .nav-logo span { color: var(--primary); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .hamburger span { background: var(--text); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
  background: var(--bg-2);
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================
   STICKY DONATE BUTTON
============================= */
.sticky-donate {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 28px rgba(220,75,35,0.45);
  transform: translateY(120px);
  transition: var(--transition);
}

.sticky-donate.visible {
  transform: translateY(0);
}

.sticky-donate:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(220,75,35,0.55);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22,63,114,0.88) 0%,
    rgba(30,90,160,0.72) 40%,
    rgba(220,75,35,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-headline em {
  color: #ffb347;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   PROBLEM SECTION
============================= */
.problem {
  padding: 100px 0;
  background: var(--white);
}

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

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

.problem-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.problem-cta-text {
  color: var(--primary) !important;
  font-size: 1.1rem !important;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prob-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.prob-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.prob-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.prob-card h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.prob-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================
   OUR STORY SECTION
============================= */
.story {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef4ff 0%, #f8f0ee 100%);
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.story-img-badge span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.story-img-badge strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

.story-content p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.value-chip {
  background: rgba(30,90,160,0.1);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================
   PROGRAMS SECTION
============================= */
.programs {
  padding: 100px 0;
  background: var(--white);
}

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

.program-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.program-card:hover::before {
  transform: scaleX(1);
}

.prog-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.program-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.prog-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================
   IMPACT SECTION
============================= */
.impact {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
}

.impact .section-header h2 {
  color: var(--white);
}

.impact .section-header p {
  color: rgba(255,255,255,0.75);
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 72px;
}

.impact-num {
  background: rgba(255,255,255,0.05);
  padding: 44px 24px;
  text-align: center;
  transition: var(--transition);
}

.impact-num:hover {
  background: rgba(255,255,255,0.12);
}

.impact-num strong {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffb347;
  line-height: 1;
  display: inline-block;
}

.impact-num span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffb347;
}

.impact-num p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,179,71,0.5);
  transform: scale(1.03);
}

.stars {
  font-size: 1rem;
  color: #ffb347;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* Gallery Strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
  filter: brightness(0.85);
}

.gallery-strip img:hover {
  filter: brightness(1);
  transform: scale(1.03);
}

/* ============================
   DONATION SECTION
============================= */
.donate-section {
  padding: 100px 0;
  background: var(--bg);
}

.donate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.donate-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.donate-left p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.donate-promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.donate-promises li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}

.donate-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.donate-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.amount-btn {
  border: 2px solid var(--bg-2);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.amount-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(30,90,160,0.06);
}

.amount-btn.active {
  border-color: var(--accent);
  background: rgba(220,75,35,0.08);
  color: var(--accent);
}

.custom-amount-wrap {
  margin-bottom: 16px;
}

.custom-amount-wrap label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.custom-amount-wrap input {
  width: 100%;
  border: 2px solid var(--bg-2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.custom-amount-wrap input:focus {
  border-color: var(--primary);
}

.impact-label {
  background: rgba(30,90,160,0.08);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 3px solid var(--primary);
}

.donate-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
  justify-content: center;
}

/* ============================
   SOCIAL SECTION
============================= */
.social-section {
  padding: 100px 0;
  background: var(--white);
}

.social-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.social-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.social-text p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.facebook-preview {
  display: flex;
  justify-content: center;
}

.fb-page-preview {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.fb-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.fb-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.fb-header div:first-of-type {
  flex: 1;
}

.fb-header strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.fb-header span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.fb-badge {
  background: #1877f2;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.fb-post-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.fb-actions {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.fb-actions span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.fb-actions span:hover {
  color: #1877f2;
}

.fb-visit-btn {
  display: block;
  text-align: center;
  background: #1877f2;
  color: white;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.fb-visit-btn:hover {
  background: #155db2;
  transform: translateY(-1px);
}

/* ============================
   CONTACT SECTION
============================= */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(30,90,160,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ============================
   FINAL CTA SECTION
============================= */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(22,63,114,0.9) 0%,
    rgba(220,75,35,0.6) 100%
  );
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.final-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.final-cta-content h2 em {
  color: #ffb347;
  font-style: italic;
}

.final-cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   FOOTER
============================= */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

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

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: #1877f2;
  color: var(--white);
}

.footer-links h4,
.footer-contact h4,
.footer-cta-box h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffb347;
  padding-left: 4px;
}

.footer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: #ffb347;
}

.footer-cta-box {
  background: rgba(220,75,35,0.12);
  border: 1px solid rgba(220,75,35,0.3);
  border-radius: var(--radius);
  padding: 28px;
}

.footer-cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* ============================
   RESPONSIVE DESIGN
============================= */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(22,63,114,0.97);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 998;
  }

  .nav-links.open a {
    font-size: 1.4rem;
    color: var(--white);
  }

  .hamburger {
    display: flex;
    z-index: 999;
  }

  .problem-grid,
  .story-inner,
  .donate-inner,
  .social-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    transform: none;
  }

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

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 16px;
  }

  .donate-amounts {
    grid-template-columns: 1fr 1fr;
  }

  .story-image img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .impact-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .impact-num strong {
    font-size: 2.5rem;
  }

  .donate-card {
    padding: 28px 20px;
  }

  .footer-cta-box {
    padding: 20px;
  }
}
