/* =============================================
   ALTA GRACIA MISSIONS — Stylesheet v2
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
   Palette: Deep Navy · Vibrant Teal · Warm Gold
   ============================================= */

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

:root {
  --navy-deep:   #0D2137;
  --navy-900:    #122845;
  --navy-800:    #1A3560;
  --navy-700:    #254878;

  --teal-dark:   #0093AA;
  --teal-mid:    #00A8BF;
  --teal:        #00BCD4;
  --teal-light:  #4DD9E8;
  --teal-pale:   rgba(0, 188, 212, 0.10);

  --gold:        #F5A623;
  --gold-light:  #FFB84D;
  --gold-pale:   rgba(245, 166, 35, 0.12);

  --off-white:   #F7FAFC;
  --white:       #FFFFFF;
  --text-dark:   #0D1B2A;
  --text-mid:    #4A6275;
  --text-muted:  #6B8095;
  --text-light:  #8BA3B5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm:   0 2px 12px rgba(13,33,55,0.07);
  --shadow:      0 8px 32px rgba(13,33,55,0.11);
  --shadow-lg:   0 20px 60px rgba(13,33,55,0.17);
  --shadow-xl:   0 32px 80px rgba(13,33,55,0.22);
  --shadow-teal: 0 8px 32px rgba(0,188,212,0.28);
  --shadow-gold: 0 8px 32px rgba(245,166,35,0.32);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* =============================================
   SCROLL PROGRESS
   ============================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =============================================
   LAYOUT
   ============================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 112px 0; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal));
  color: var(--white);
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0.4px;
  transition: var(--transition); border: none; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,188,212,0.25);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  opacity: 0; transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,188,212,0.45); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); border: 2px solid rgba(255,255,255,0.35);
  padding: 13px 34px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: var(--transition); backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--teal-light); color: var(--teal-light);
  background: rgba(0,188,212,0.1); transform: translateY(-2px);
}

.btn-nav {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal));
  color: var(--white);
  padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,188,212,0.25);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,188,212,0.4); }

.btn-nav-shop {
  display: inline-block;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-family: var(--font-body); font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: var(--transition); letter-spacing: 0.3px; white-space: nowrap;
}
.btn-nav-shop:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-900);
  padding: 17px 42px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  transition: var(--transition); box-shadow: var(--shadow-gold);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(245,166,35,0.5); }

.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-weight: 700; font-size: 14px;
  padding-bottom: 2px; border-bottom: 2px solid var(--teal-light);
  transition: var(--transition);
}
.btn-link:hover { color: var(--teal-dark); border-color: var(--teal); gap: 10px; }

.btn-youtube {
  display: inline-flex; align-items: center; gap: 12px;
  background: #FF0000; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(255,0,0,0.28);
}
.btn-youtube:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,0,0,0.42); }

.btn-donate {
  width: 100%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white); border: none;
  padding: 17px; border-radius: 50px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
  margin-bottom: 14px; letter-spacing: 0.4px;
  box-shadow: var(--shadow-teal);
}
.btn-donate:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,188,212,0.45); }

.full-width { width: 100%; text-align: center; justify-content: center; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 4px; color: var(--teal);
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px; flex-shrink: 0;
}
.section-eyebrow.light { color: var(--teal-light); }
.section-eyebrow.light::before { background: var(--teal-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px); font-weight: 600;
  line-height: 1.08; color: var(--text-dark);
  margin-bottom: 20px; letter-spacing: -0.3px;
}

.section-desc {
  font-size: 17px; color: var(--text-muted);
  max-width: 580px; line-height: 1.85;
}

.section-header { margin-bottom: 64px; }

/* =============================================
   NAVBAR
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,33,55,0.82);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(0,188,212,0.1);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(13,33,55,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

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

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 44px; width: auto;
  background: var(--white); padding: 5px 10px; border-radius: 10px;
  display: block;
}

.nav-links {
  display: flex; gap: 24px; list-style: none; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 600;
  transition: var(--transition); position: relative; padding: 4px 0; letter-spacing: 0.2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px; transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(13,33,55,0.98); backdrop-filter: blur(24px);
  border-top: 1px solid rgba(0,188,212,0.1);
  padding: 32px 28px;
  transform: translateY(-110%); opacity: 0;
  transition: var(--transition); pointer-events: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  color: rgba(255,255,255,0.72); font-size: 18px; font-family: var(--font-display);
  transition: var(--transition); padding: 10px 0; display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:hover { color: var(--teal-light); padding-left: 8px; }
.mobile-donate { color: var(--gold-light) !important; }
.mobile-shop   { color: var(--teal-light) !important; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(125deg, rgba(13,33,55,0.96) 0%, rgba(18,40,69,0.83) 50%, rgba(26,53,96,0.65) 100%),
    linear-gradient(to top, rgba(13,33,55,1) 0%, transparent 45%);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 30%, var(--gold) 65%, var(--teal-light) 100%);
  z-index: 3;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(0,212,255,0.25), transparent),
    radial-gradient(2px 2px at 45% 55%, rgba(245,166,35,0.18), transparent),
    radial-gradient(1.5px 1.5px at 72% 18%, rgba(0,212,255,0.2), transparent),
    radial-gradient(2px 2px at 88% 72%, rgba(245,166,35,0.15), transparent),
    radial-gradient(1px 1px at 58% 82%, rgba(0,212,255,0.18), transparent);
  animation: float 22s ease-in-out infinite;
  z-index: 1; pointer-events: none;
}
@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25%     { transform: translate(12px,-18px) rotate(1deg); }
  50%     { transform: translate(-6px,12px) rotate(-0.5deg); }
  75%     { transform: translate(10px,6px) rotate(0.8deg); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; padding: 80px 32px 80px 80px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 5px;
  color: var(--teal-light); margin-bottom: 24px; display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light)); border-radius: 2px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 96px); font-weight: 600;
  color: var(--white); line-height: 1.0; margin-bottom: 28px; letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.62); font-size: 17px;
  line-height: 1.85; max-width: 500px; margin-bottom: 48px; font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Hero trust badge */
.hero-trust {
  position: absolute; bottom: 52px; right: 64px; z-index: 2;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  padding: 16px 24px; display: flex; align-items: center; gap: 14px;
}
.hero-trust-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--navy-900); flex-shrink: 0;
}
.hero-trust-text strong {
  display: block; font-size: 13px; color: var(--white); font-weight: 700; margin-bottom: 2px;
}
.hero-trust-text span { font-size: 11px; color: rgba(255,255,255,0.45); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 48px; left: 80px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--teal-light), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse {
  0%,100% { opacity: 0.35; transform: scaleY(1); }
  50%     { opacity: 1;    transform: scaleY(1.2); }
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 52px 64px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
}
.stats-strip::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,188,212,0.07), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.05), transparent 60%);
}
.stat-item { flex: 1; min-width: 160px; text-align: center; padding: 16px 32px; position: relative; z-index: 1; }
.stat-number { font-family: var(--font-display); font-size: 60px; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 10px; }
.stat-label  { font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(255,255,255,0.45); font-weight: 600; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--white); position: relative; overflow: hidden; }
.about::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,188,212,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.about-text p { color: var(--text-muted); margin-bottom: 18px; font-size: 16px; line-height: 1.85; }
.about-text .btn-link { margin-top: 12px; }

.about-photo-stack { position: relative; padding: 24px; }
.about-photo-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.about-photo-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 7s ease; }
.about-photo-stack:hover .about-photo-main img { transform: scale(1.04); }
.about-photo-main::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(0,188,212,0.12); }
.about-photo-accent {
  position: absolute; bottom: -12px; right: -20px; width: 45%;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-photo-accent img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* =============================================
   MISSION
   ============================================= */
.mission { background: var(--off-white); }
.mission-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 48px;
  border: 1px solid rgba(0,188,212,0.08);
}
.mission-featured-img { position: relative; overflow: hidden; }
.mission-featured-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; transition: transform 7s ease; }
.mission-featured:hover .mission-featured-img img { transform: scale(1.05); }
.mission-featured-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, rgba(255,255,255,0.05)); }
.mission-featured-content { padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; }
.mission-featured-content h3 { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--navy-900); margin-bottom: 16px; line-height: 1.15; }
.mission-featured-content p { color: var(--text-muted); font-size: 15px; line-height: 1.85; margin-bottom: 28px; }

.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mission-card {
  background: var(--white); border: 1px solid rgba(0,188,212,0.08);
  border-radius: var(--radius); padding: 36px 30px;
  position: relative; transition: var(--transition); overflow: hidden;
}
.mission-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0,188,212,0.2); }
.mission-card:hover::before { transform: scaleX(1); }
.card-num { font-family: var(--font-display); font-size: 80px; font-weight: 600; color: rgba(0,188,212,0.04); position: absolute; top: 8px; right: 18px; line-height: 1; }
.card-icon { width: 52px; height: 52px; color: var(--teal); margin-bottom: 24px; background: var(--teal-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 12px; transition: var(--transition); }
.mission-card:hover .card-icon { background: linear-gradient(135deg, var(--teal-mid), var(--teal)); color: var(--white); box-shadow: var(--shadow-teal); transform: scale(1.08); }
.card-icon svg { width: 100%; height: 100%; }
.mission-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy-900); margin-bottom: 10px; }
.mission-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   IMPACT BANNER
   ============================================= */
.impact-banner { padding: 140px 32px; text-align: center; position: relative; overflow: hidden; }
.impact-banner-bg { position: absolute; inset: 0; }
.impact-banner-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.impact-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.96) 0%, rgba(18,40,69,0.92) 50%, rgba(26,53,96,0.9) 100%);
}
.impact-banner::after {
  content: ''; position: absolute;
  width: 800px; height: 800px;
  border: 1px solid rgba(0,188,212,0.07); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.banner-content { position: relative; z-index: 1; }
.banner-content h2 { font-family: var(--font-display); font-size: clamp(40px,5.5vw,72px); font-weight: 600; color: var(--white); line-height: 1.06; margin-bottom: 22px; }
.banner-content p  { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 520px; margin: 0 auto 44px; line-height: 1.85; }

/* =============================================
   VOLUNTEER
   ============================================= */
.volunteer { background: var(--white); position: relative; overflow: hidden; }
.volunteer::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(0,188,212,0.04), transparent 70%); pointer-events: none;
}
.volunteer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.volunteer-visual { position: relative; }
.volunteer-photo-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.volunteer-photo-main img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.volunteer-illustration { position: absolute; bottom: -30px; right: -30px; width: 55%; z-index: 2; filter: drop-shadow(0 8px 28px rgba(0,0,0,0.18)); animation: illustrationBounce 4.5s ease-in-out infinite; }
@keyframes illustrationBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.volunteer-illustration img { width: 100%; }
.volunteer-content .section-title { color: var(--navy-900); }
.volunteer-content > p { color: var(--text-muted); font-size: 16px; line-height: 1.85; margin-bottom: 32px; }
.volunteer-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.perk {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px; background: var(--off-white);
  border-radius: var(--radius); border: 1px solid rgba(0,188,212,0.08); transition: var(--transition);
}
.perk:hover { border-color: var(--teal-light); box-shadow: 0 4px 24px rgba(0,188,212,0.1); transform: translateX(6px); background: white; }
.perk-icon { width: 42px; height: 42px; min-width: 42px; color: var(--teal); background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 8px; transition: var(--transition); }
.perk:hover .perk-icon { background: linear-gradient(135deg, var(--teal-mid), var(--teal)); color: white; }
.perk-icon svg { width: 100%; height: 100%; }
.perk strong { display: block; font-size: 15px; color: var(--navy-900); margin-bottom: 3px; font-weight: 700; }
.perk p      { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* =============================================
   NEWS
   ============================================= */
.news { background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.news-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(0,188,212,0.07); transition: var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0,188,212,0.15); }
.news-img { height: 220px; position: relative; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.08); }
.news-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,33,55,0.35), transparent 55%); }
.news-body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.news-tag { display: inline-block; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--teal-dark); font-weight: 700; margin-bottom: 12px; background: var(--teal-pale); padding: 4px 12px; border-radius: 30px; width: fit-content; }
.news-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--navy-900); line-height: 1.3; margin-bottom: 10px; }
.news-card p  { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; flex: 1; line-height: 1.7; }
.news-link    { font-size: 13px; color: var(--teal); font-weight: 700; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.news-link:hover { color: var(--teal-dark); gap: 10px; }

/* =============================================
   ACTIVITIES / GALLERY
   ============================================= */
.activities { background: var(--white); }
.activities .section-header { text-align: center; margin-bottom: 64px; }
.activity-block { margin-bottom: 80px; }
.activity-block:last-child { margin-bottom: 0; }
.activity-block-header { margin-bottom: 28px; }
.activity-tag { display: inline-block; background: linear-gradient(135deg, var(--teal-mid), var(--teal)); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; margin-bottom: 12px; box-shadow: 0 4px 16px rgba(0,188,212,0.25); }
.activity-block-title { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--navy-900); margin-bottom: 10px; line-height: 1.2; }
.activity-block-desc  { color: var(--text-muted); font-size: 15px; max-width: 640px; line-height: 1.8; }
.activity-masonry { columns: 4; column-gap: 10px; }
.activity-masonry .activity-photo { break-inside: avoid; margin-bottom: 10px; }
.activity-masonry .activity-photo.tall img { aspect-ratio: 3/4; }
.activity-two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.activity-three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.activity-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; transition: transform 0.45s ease, box-shadow 0.45s ease; }
.activity-photo-wide img { aspect-ratio: 16/9; object-fit: cover; }
.activity-photo:hover img { transform: scale(1.025); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }

/* =============================================
   YOUTUBE
   ============================================= */
.youtube-section { background: var(--navy-deep); color: var(--white); position: relative; overflow: hidden; }
.youtube-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(0,188,212,0.06), transparent 55%),
    radial-gradient(ellipse at 90% 50%, rgba(245,166,35,0.04), transparent 55%);
}
.youtube-section .section-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.youtube-section .section-eyebrow { color: var(--teal-light); justify-content: center; }
.youtube-section .section-eyebrow::before { background: var(--teal-light); }
.youtube-section .section-title  { color: var(--white); }
.youtube-embed  { position: relative; z-index: 1; }
.youtube-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
.youtube-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.youtube-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.youtube-cta  { text-align: center; }
.section-sub  { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* =============================================
   DONATE
   ============================================= */
.donate { background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%); position: relative; overflow: hidden; }
.donate::before { content: ''; position: absolute; top: 0; inset: 0; background: radial-gradient(ellipse at 80% 0%, rgba(0,188,212,0.05), transparent 60%); pointer-events: none; }
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.donate-text p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.85; }
.impact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.impact-list li { display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--text-muted); padding: 16px 20px; background: var(--white); border-radius: var(--radius-sm); border-left: 3px solid var(--teal); box-shadow: var(--shadow-sm); transition: var(--transition); }
.impact-list li:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(245,166,35,0.12); transform: translateX(4px); }
.impact-list li span { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy-900); min-width: 68px; }
.form-card {
  background: var(--white); border: 1px solid rgba(0,188,212,0.1);
  border-radius: var(--radius-xl); padding: 48px 44px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-light)); }
.form-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin-bottom: 28px; color: var(--navy-900); }
.amount-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 20px; }
.amount-btn { background: var(--off-white); border: 2px solid rgba(0,188,212,0.12); border-radius: 50px; padding: 11px; font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: var(--font-body); color: var(--text-dark); }
.amount-btn:hover, .amount-btn.active { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: var(--white); border-color: var(--navy-800); box-shadow: 0 4px 20px rgba(18,40,69,0.25); }
.custom-amount, .form-field { margin-bottom: 16px; }
.custom-amount label, .form-field label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-mid); margin-bottom: 7px; }
.custom-amount input, .form-field input, .form-field textarea { width: 100%; background: var(--off-white); border: 1.5px solid rgba(0,188,212,0.12); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 15px; font-family: var(--font-body); color: var(--text-dark); transition: var(--transition); resize: vertical; }
.custom-amount input:focus, .form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 4px rgba(0,188,212,0.1); }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); }

/* =============================================
 /* ---- EVENTS SECTION ---- */
.events-section {
  background: white;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; }
}

.event-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(10, 36, 99, 0.15);
  border-color: var(--primary);
}

.event-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.event-month {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
}

.event-day {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.event-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.05);
}

.event-info {
  padding: 28px;
}

.event-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 20px;
}
/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; padding: 22px 24px; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(0,188,212,0.07); box-shadow: var(--shadow-sm); transition: var(--transition); }
.contact-item:hover { border-color: var(--teal-light); box-shadow: 0 8px 32px rgba(0,188,212,0.12); transform: translateX(4px); }
.contact-icon { width: 48px; height: 48px; min-width: 48px; background: var(--teal-pale); color: var(--teal); border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 11px; transition: var(--transition); }
.contact-item:hover .contact-icon { background: linear-gradient(135deg, var(--teal-mid), var(--teal)); color: white; }
.contact-icon svg { width: 100%; height: 100%; }
.contact-item strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--navy-900); font-weight: 700; }
.contact-item p { font-size: 14px; color: var(--text-muted); margin: 0; }
.contact-form .form-field input, .contact-form .form-field textarea { background: var(--white); }

.contact-form-container {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,188,212,0.08);
}

.form-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--off-white);
}

.form-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid rgba(0,188,212,0.15);
  background: transparent;
  color: var(--text-mid);
  font-family: var(--font-body);
}

.form-tab.active {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: 0 4px 16px rgba(18,40,69,0.2);
}

.contact-form {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.contact-form.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -8px;
  margin-bottom: 24px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--teal);
}

.checkbox-field label {
  margin-bottom: 0;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.form-status {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* =============================================
   PARTNERS STRIP
   ============================================= */
.partners-strip {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid #f1f5f9;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
  background: var(--off-white);
  border-radius: 24px;
  border: 1px solid rgba(0,188,212,0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.partner-item:hover {
  transform: translateY(-8px);
  background: white;
  border-color: var(--teal-light);
  box-shadow: 0 20px 40px rgba(0,188,212,0.12);
}
.partner-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}
.partner-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}
.partner-item span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  transition: all 0.4s ease;
}
.partner-item:hover span {
  color: var(--navy-900);
}

@media (max-width: 768px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partner-item { padding: 24px 16px; }
  .partner-item img { width: 60px; height: 60px; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy-deep); position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--gold), var(--teal-light)); }
.footer::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 40%, rgba(0,188,212,0.05), transparent 50%), radial-gradient(ellipse at 85% 60%, rgba(245,166,35,0.03), transparent 50%); pointer-events: none; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 80px 32px 52px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 1; }
.footer-logo { margin-bottom: 18px; }
.footer-logo-img { height: 52px; width: auto; background: var(--white); padding: 6px 12px; border-radius: 10px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 26px; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-socials a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,188,212,0.35); }
.footer-azure { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); padding: 8px 14px; transition: var(--transition); }
.footer-azure:hover { background: rgba(255,255,255,0.08); }
.footer-azure span { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-col h4 { font-size: 10px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--teal-light); margin-bottom: 20px; font-weight: 700; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.38); margin-bottom: 12px; transition: var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,0.82); transform: translateX(4px); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 32px; font-size: 12px; color: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a { color: rgba(255,255,255,0.25); font-size: 12px; transition: var(--transition); }
.footer-bottom-right a:hover { color: rgba(255,255,255,0.6); }

/* =============================================
   IMPACT REPORT 2023-2025
   ============================================= */
.impact-report { background: var(--off-white); position: relative; overflow: hidden; }
.impact-report::before {
  content: ''; position: absolute; top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.06), transparent 70%);
  pointer-events: none;
}
.impact-report::after {
  content: ''; position: absolute; bottom: -160px; left: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse, rgba(0,188,212,0.05), transparent 70%);
  pointer-events: none;
}
.impact-category {
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.impact-category:last-of-type { margin-bottom: 0; }
.impact-category-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600; letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 22px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.impact-category-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
}
.impact-cards {
  display: grid;
  gap: 18px;
}
.impact-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.impact-cards.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.impact-card {
  background: var(--white);
  border: 1px solid rgba(0,188,212,0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.impact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.impact-card:hover::before { transform: scaleX(1); }
.impact-card-icon {
  width: 44px; height: 44px;
  color: var(--teal);
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  margin-bottom: 6px;
  transition: var(--transition);
}
.impact-card-icon svg { width: 100%; height: 100%; }
.impact-card:hover .impact-card-icon {
  background: linear-gradient(135deg, var(--teal-mid), var(--teal));
  color: var(--white);
  transform: scale(1.06);
  box-shadow: var(--shadow-teal);
}
.impact-card-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--navy-900); font-weight: 700;
  margin-bottom: 0;
}
.impact-card-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 700;
  color: var(--navy-900); line-height: 1;
  margin: 4px 0 6px;
}
.impact-card-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--text-muted); font-weight: 600;
  line-height: 1.5;
}
.impact-card.highlight {
  background: linear-gradient(135deg, #fbe39a 0%, #f5a623 100%);
  border-color: rgba(245,166,35,0.35);
  box-shadow: 0 8px 28px rgba(245,166,35,0.22);
}
.impact-card.highlight::before {
  background: var(--navy-900);
}
.impact-card.highlight .impact-card-num { color: var(--navy-900); font-size: 48px; }
.impact-card.highlight .impact-card-label { color: var(--navy-900); }
.impact-card.highlight .impact-card-tag { color: var(--navy-900); }
.impact-report-note {
  text-align: center;
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 36px;
  font-style: italic;
  position: relative; z-index: 1;
}

/* =============================================
   2026 MISSION TRIP
   ============================================= */
.trip-section { background: var(--off-white); position: relative; overflow: hidden; }
.trip-section::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,188,212,0.05), transparent 70%);
  pointer-events: none;
}
.trip-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: stretch; position: relative; z-index: 1;
}
.trip-facts {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 44px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,188,212,0.08);
  display: flex; flex-direction: column; gap: 22px;
}
.trip-fact { padding-bottom: 18px; border-bottom: 1px solid rgba(0,188,212,0.08); }
.trip-fact:last-of-type { border-bottom: none; padding-bottom: 0; }
.trip-fact-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--teal); font-weight: 600; margin-bottom: 8px;
}
.trip-fact-value {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  color: var(--navy-900); line-height: 1.5;
}
.trip-cta { align-self: flex-start; margin-top: 8px; }
.trip-itinerary {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-xl); padding: 44px;
  color: var(--white); position: relative; overflow: hidden;
}
.trip-itinerary::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), transparent);
}
.trip-itinerary-header {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 28px;
}
.itinerary-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.itinerary-list li {
  display: flex; gap: 18px; align-items: baseline;
  font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.6;
}
.itinerary-list li span {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--teal-light); min-width: 56px;
  text-transform: uppercase; letter-spacing: 1px; flex-shrink: 0;
}

/* =============================================
   CURRENT PROGRAMS
   ============================================= */
.programs { background: var(--white); }
.programs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.program-card {
  background: var(--off-white); border: 1px solid rgba(0,188,212,0.08);
  border-radius: var(--radius); padding: 36px 32px;
  position: relative; transition: var(--transition); overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.program-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,0.2); background: var(--white);
}
.program-card:hover::before { transform: scaleX(1); }
.program-goal {
  font-family: var(--font-display); font-size: 32px; font-weight: 600;
  color: var(--navy-900); margin-bottom: 12px; line-height: 1;
}
.program-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--navy-900); margin-bottom: 10px; line-height: 1.3;
}
.program-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: repeat(2,1fr); }
  .mission-featured { grid-template-columns: 1fr; }
  .mission-featured-img img { min-height: 280px; }
  .mission-featured-content { padding: 40px 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content { padding: 80px 48px; }
  .hero-scroll { left: 48px; }
  .hero-trust { right: 32px; bottom: 32px; }
  .volunteer-illustration { width: 45%; bottom: -20px; right: -15px; }
  .activity-masonry { columns: 3; }
  .impact-cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav, .btn-nav-shop { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 60px 24px; }
  .hero-title { font-size: 46px; letter-spacing: -0.5px; }
  .hero-scroll { display: none; }
  .hero-trust  { display: none; }

  .stats-strip { padding: 28px 16px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 50%; }
  .stat-number { font-size: 44px; }

  .grid-2, .donate-grid, .contact-grid, .volunteer-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-grid { grid-template-columns: 1fr; }
  .news-grid    { grid-template-columns: 1fr; }
  .trip-grid    { grid-template-columns: 1fr; gap: 28px; }
  .programs-grid { grid-template-columns: 1fr; }
  .trip-facts, .trip-itinerary { padding: 32px 28px; }
  .impact-cards.cols-4,
  .impact-cards.cols-2 { grid-template-columns: 1fr 1fr; }
  .impact-card { padding: 22px 16px; }
  .impact-card-num { font-size: 36px; }
  .impact-card.highlight .impact-card-num { font-size: 40px; }
  .impact-category-header { padding: 14px 22px; font-size: 17px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .section      { padding: 80px 0; }
  .container    { padding: 0 20px; }

  .about-photo-accent { width: 40%; right: -10px; bottom: -5px; }

  .volunteer-illustration { position: relative; bottom: auto; right: auto; width: 65%; margin: -20px auto 0; }
  .activity-masonry { columns: 2; }
  .activity-three-col { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-right { justify-content: center; }
}

@media (max-width: 480px) {
  .impact-cards.cols-4,
  .impact-cards.cols-2 { grid-template-columns: 1fr; }
  .hero-title { font-size: 40px; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost  { text-align: center; justify-content: center; }
  .amount-grid { grid-template-columns: repeat(2,1fr); }
  .mission-featured-content { padding: 28px 24px; }
  .form-card  { padding: 32px 24px; }
  .activity-masonry  { columns: 1; }
  .activity-two-col,
  .activity-three-col { grid-template-columns: 1fr; }
  .activity-block-title { font-size: 24px; }
  .youtube-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG MODAL
   ============================================================ */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: stretch;
  pointer-events: none;
  visibility: hidden;
}
.blog-modal.is-open {
  pointer-events: all;
  visibility: visible;
}

/* Dark overlay */
.blog-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 55, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}
.blog-modal.is-open .blog-modal-overlay { opacity: 1; }

/* Slide-in panel */
.blog-modal-panel {
  position: relative;
  margin-left: auto;
  width: min(760px, 100vw);
  height: 100%;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.blog-modal.is-open .blog-modal-panel { transform: translateX(0); }

/* Close button */
.blog-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.blog-modal-close:hover { background: #fff; transform: rotate(90deg); }

/* Hero image area */
.blog-modal-hero {
  position: relative;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
}
.blog-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.75) 0%, rgba(13,33,55,0.1) 55%, transparent 100%);
}
.blog-modal-hero-text {
  position: absolute;
  bottom: 28px;
  left: 36px;
  right: 36px;
}
.blog-modal-hero-text .news-tag { margin-bottom: 10px; }
.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.blog-modal-sep { opacity: 0.6; }

/* Content area */
.blog-modal-content {
  padding: 40px 40px 60px;
  flex: 1;
}
.blog-modal-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* Author row */
.blog-modal-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid #eef0f3;
  border-bottom: 1px solid #eef0f3;
  margin-bottom: 32px;
}
.blog-modal-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.blog-modal-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}
.blog-modal-author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Body text */
.blog-modal-body {
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
}
.blog-modal-body p { margin-bottom: 20px; }
.blog-modal-body p:last-child { margin-bottom: 0; }
.blog-modal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 36px 0 14px;
}
.blog-modal-body blockquote {
  border-left: 4px solid var(--teal);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--teal-pale);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--navy-900);
  font-size: 17px;
  line-height: 1.65;
}
.blog-modal-body ul {
  padding-left: 22px;
  margin-bottom: 20px;
}
.blog-modal-body ul li {
  margin-bottom: 8px;
  color: #374151;
}
.blog-modal-body strong { color: var(--navy-900); font-weight: 700; }

/* CTA footer */
.blog-modal-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eef0f3;
  display: flex;
  justify-content: center;
}
.blog-modal-footer .btn-primary {
  padding: 14px 36px;
  font-size: 15px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .blog-modal-hero { height: 220px; }
  .blog-modal-hero-text { left: 20px; right: 20px; bottom: 20px; }
  .blog-modal-content { padding: 28px 20px 48px; }
}
