/* =============================================
   NGO WEBSITE - GLOBAL STYLES
   ============================================= */

/* CSS Variables */
:root {
  --primary: #e85d26;
  --primary-dark: #c44d1b;
  --primary-light: #f7936a;
  --secondary: #2c6e49;
  --secondary-dark: #1e4d33;
  --secondary-light: #4c9a70;
  --accent: #f5a623;
  --text-dark: #1a1a2e;
  --text-medium: #444460;
  --text-light: #6b6b8a;
  --bg-light: #fafaf8;
  --bg-white: #ffffff;
  --bg-soft: #f4f6f0;
  --border: #e2e8df;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: 'Inter', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-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; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-medium); }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(232,93,38,0.08);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(232,93,38,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,93,38,0.45);
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-green {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 15px rgba(44,110,73,0.3);
}
.btn-green:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling */
.logo-img {
  height: 50px;   /* perfect navbar size */
  width: auto;
  object-fit: contain;
}

/* Optional: Bigger logo on desktop */
@media (min-width: 768px) {
  .logo-img {
    height: 60px;
  }
}

/* Mobile Optimization */
@media (max-width: 480px) {
  .logo-img {
    height: 40px;
  }
}


#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: white;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}
#navbar:not(.scrolled) .nav-logo { color: white; }
#navbar:not(.scrolled) .nav-logo .logo-icon { background: white; color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: white;
  transition: var(--transition);
  position: relative;
}
#navbar.scrolled .nav-links a { color: var(--text-medium); }
.nav-links a:hover,
.nav-links a.active { color: var(--primary) !important; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--text-dark); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--bg-soft); color: var(--primary); }

/* =============================================
   STICKY DONATE BUTTON
   ============================================= */
.sticky-donate {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--primary);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(232,93,38,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  animation: pulse-donate 3s infinite;
}
.sticky-donate:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,93,38,0.55);
  background: var(--primary-dark);
}
@keyframes pulse-donate {
  0%, 100% { box-shadow: 0 6px 24px rgba(232,93,38,0.45); }
  50% { box-shadow: 0 6px 32px rgba(232,93,38,0.7); }
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--secondary);
  color: white;
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 500;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}
.trust-item span.icon { font-size: 0.9rem; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,77,51,0.85) 0%, rgba(26,26,46,0.75) 60%, rgba(232,93,38,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 60px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* =============================================
   IMPACT COUNTERS
   ============================================= */
.counters-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 70px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.counter-item { color: white; }
.counter-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.counter-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  margin: 10px auto 0;
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-preview { background: var(--bg-light); }
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-preview-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-preview-img .img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.img-badge .badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.img-badge .badge-text {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}
.about-preview-content .section-tag { margin-bottom: 10px; }
.about-preview-content h2 { margin-bottom: 18px; }
.about-preview-content p { margin-bottom: 16px; font-size: 1rem; }
.about-values {
  display: flex;
  gap: 20px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}
.about-value::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(44,110,73,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--secondary);
  flex-shrink: 0;
  text-align: center;
  line-height: 22px;
}

/* =============================================
   PROGRAMS CARDS
   ============================================= */
.programs-section { background: var(--bg-white); }
.program-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.program-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: white;
  border: 1px solid var(--border);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.program-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.program-card:hover .program-card-img img { transform: scale(1.06); }
.program-card-body { padding: 22px; }
.program-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,93,38,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.program-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text-dark); }
.program-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.program-card .card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.program-card .card-link:hover { gap: 8px; }

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section { background: var(--text-dark); padding: 80px 0; }
.video-section .section-title,
.video-section .section-tag { color: white; }
.video-section .section-subtitle { color: rgba(255,255,255,0.6); }
.video-wrapper {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  position: relative;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-placeholder {
  background: #1a1a2e;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 16px;
  min-height: 400px;
}
.play-btn-large {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(232,93,38,0.5);
  animation: pulse-play 2s infinite;
}
@keyframes pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(232,93,38,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(232,93,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,93,38,0); }
}

/* =============================================
   REAL STORY
   ============================================= */
.story-section { background: var(--bg-soft); }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-content .story-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-medium);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 20px 0;
  line-height: 1.8;
}
.story-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.before-card, .after-card {
  padding: 18px;
  border-radius: var(--radius-md);
}
.before-card { background: rgba(200,50,50,0.07); border: 1px solid rgba(200,50,50,0.15); }
.after-card { background: rgba(44,110,73,0.07); border: 1px solid rgba(44,110,73,0.15); }
.before-card .label { color: #c83232; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.after-card .label { color: var(--secondary); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.ba-text { font-size: 0.92rem; color: var(--text-medium); }
.story-image-area { position: relative; }
.story-image-area img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--bg-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.author-location { font-size: 0.78rem; color: var(--text-light); }
.testimonial-stars { color: var(--accent); font-size: 0.8rem; margin-bottom: 12px; }

/* =============================================
   INSTAGRAM / GALLERY GRID
   ============================================= */
.instagram-section { background: var(--bg-white); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,93,38,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 1.4rem;
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-preview-section { background: var(--bg-soft); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
.gallery-preview-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gallery-preview-item:first-child { grid-row: span 2; }
.gallery-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.gallery-preview-item:hover img { transform: scale(1.05); }

/* =============================================
   DONATION CTA BANNER
   ============================================= */
.donation-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #8b2500 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donation-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.donation-cta-banner h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
}
.donation-cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}
.donation-cta-banner .amounts-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
}
.donation-cta-banner .amount-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  cursor: pointer;
}
.donation-cta-banner .amount-badge:hover {
  background: rgba(255,255,255,0.3);
}
.donation-cta-banner .btn {
  position: relative;
  background: white;
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  font-size: 1.05rem;
}
.donation-cta-banner .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  background: var(--accent);
  color: white;
}
.tax-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #0f1923;
  color: white;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}
.footer-brand .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social:hover { background: var(--primary); color: white; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: white; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--text-dark) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1400&q=80') center/cover;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* =============================================
   CARDS GENERAL
   ============================================= */
.card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,93,38,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .program-cards { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-preview-inner { grid-template-columns: 1fr; gap: 36px; }
  .story-inner { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-preview-item:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-btns { flex-direction: column; width: fit-content; }
  .story-before-after { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 16px; }
  .sticky-donate { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .program-cards { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
}
