/* ============================================================
   IDANRAKA CARE FOUNDATION - GLOBAL STYLESHEET
   Transforming Lives Across Zaria
   Brand: Gold (#BE9718) | Black/Near-Black (#111827)
   Fonts: Poppins, Inter, Lora
   ============================================================ */

/* ============================================================
   IMPORTS & TOKENS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Lora:ital,wght@1,400;1,500;1,600&display=swap');

:root {
  /* Brand gold spectrum */
  --gold:       #BE9718;
  --gold-d:     #B08A1A;
  --gold-lt:    #D4AF37;
  --gold-pale:  rgba(190,151,24,.12);
  --gold-mid:   rgba(190,151,24,.25);
  --gold-glow:  rgba(190,151,24,.35);

  /* Neutrals */
  --black:      #000000;
  --near-black: #111827;
  --charcoal:   #1F2937;
  --text:       #111827;
  --text-lt:    #6B7280;
  --text-xlt:   #9CA3AF;
  --white:      #FFFFFF;
  --off-white:  #F8F9FB;
  --gray-lt:    #E5E7EB;
  --gray-mid:   #D1D5DB;

  /* Accents */
  --red:        #D32F2F;
  --blue:       #2563EB;
  --blue-d:     #1D4ED8;
  --green:      #16A34A;
  --green-light:#86efac;

  /* Typography */
  --f-head: 'Poppins', sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-quote:'Lora', Georgia, serif;

  /* Motion */
  --ease:  cubic-bezier(.16,1,.3,1);
  --ease-b:cubic-bezier(.34,1.56,.64,1);

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Shadows */
  --sh-sm:   0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:   0 4px 16px rgba(0,0,0,.08);
  --sh-lg:   0 12px 36px rgba(0,0,0,.1);
  --sh-gold: 0 8px 24px rgba(190,151,24,.3);
  
  /* Modern effects */
  --glow-intensity: 0.6;
  --blur-amount: 12px;
  --motion-speed: 0.4s;
}

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

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

body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { 
  font-family:inherit; 
  cursor:pointer; 
  border:none; 
}

/* ============================================================
   MODERN EFFECTS & MOTION COMPONENTS
   ============================================================ */

/* Glass morphism */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--gold-mid);
}

.glass-dark {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid rgba(190, 151, 24, 0.15);
}

/* Glow effects */
.glow-text {
  text-shadow: 0 0 20px rgba(190, 151, 24, 0.5);
}

.glow-box {
  box-shadow: 0 0 30px rgba(190, 151, 24, 0.3);
}

.glow-border {
  border: 1px solid rgba(190, 151, 24, 0.3);
  box-shadow: 0 0 20px rgba(190, 151, 24, 0.2);
}

/* Motion animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Motion classes */
.float { animation: float 6s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.slide-in-left { animation: slide-in-left var(--motion-speed) var(--ease) forwards; }
.slide-in-right { animation: slide-in-right var(--motion-speed) var(--ease) forwards; }
.scale-in { animation: scale-in var(--motion-speed) var(--ease) forwards; }

/* Shimmer effect */
.shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 151, 24, 0.1),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

/* Hover scale effect */
.hover-scale {
  transition: transform 0.3s var(--ease);
}
.hover-scale:hover {
  transform: scale(1.02);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blur background */
.blur-bg {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.text-shadow {
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hover-glow:hover {
  box-shadow: 0 0 25px var(--gold-glow);
}

.transition-all {
  transition: all var(--motion-speed) var(--ease);
}

.delay-1 { transition-delay: 0.07s; }
.delay-2 { transition-delay: 0.14s; }
.delay-3 { transition-delay: 0.21s; }
.delay-4 { transition-delay: 0.28s; }
.delay-5 { transition-delay: 0.35s; }
.delay-6 { transition-delay: 0.42s; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal   { 
  opacity:0; 
  transform:translateY(24px); 
  transition:opacity .7s var(--ease),transform .7s var(--ease); 
}
.reveal.in { 
  opacity:1; 
  transform:none; 
}
.reveal-l { 
  opacity:0; 
  transform:translateX(-24px); 
  transition:opacity .75s var(--ease),transform .75s var(--ease); 
}
.reveal-r { 
  opacity:0; 
  transform:translateX(24px);  
  transition:opacity .75s var(--ease),transform .75s var(--ease); 
}
.reveal-l.in,.reveal-r.in { 
  opacity:1; 
  transform:none; 
}

/* ============================================================
   LAYOUT & CONTAINERS
   ============================================================ */
.container { 
  max-width:1280px; 
  margin:0 auto; 
  padding:0 2.5rem; 
}
@media(max-width:768px){
  .container { 
    padding:0 1.5rem; 
  }
}

.section { 
  padding:100px 2.5rem; 
}
@media(max-width:768px){
  .section { 
    padding:72px 1.5rem; 
  }
}
@media(max-width:480px){
  .section { 
    padding:60px 1rem; 
  }
}

.section-white    { background:var(--white); }
.section-off      { background:var(--off-white); }
.section-dark     { background:var(--near-black); }
.section-charcoal { background:var(--charcoal); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family:var(--f-head); 
  font-size:.64rem; 
  font-weight:700;
  letter-spacing:.22em; 
  text-transform:uppercase; 
  color:var(--gold-d);
  display:flex; 
  align-items:center; 
  gap:10px; 
  margin-bottom:.7rem;
}
.eyebrow::before { 
  content:''; 
  width:22px; 
  height:2px; 
  background:var(--gold-d); 
  border-radius:2px; 
}
.eyebrow-w { 
  color:var(--gold); 
}
.eyebrow-w::before { 
  background:var(--gold); 
  opacity:.7; 
}

.section-h2 {
  font-family:var(--f-head);
  font-size:clamp(1.9rem,3.5vw,2.8rem);
  font-weight:800; 
  line-height:1.1; 
  letter-spacing:-.022em;
}
.h2-dark  { color:var(--near-black); }
.h2-gold  { color:var(--gold-d); }
.h2-white { color:var(--white); }

.section-p { 
  font-size:.97rem; 
  font-weight:300; 
  line-height:1.82; 
  max-width:560px; 
  margin-top:.75rem; 
}
.p-mid   { color:var(--text-lt); }
.p-white { color:rgba(255,255,255,.55); }

/* Gold rule */
.rule-gold { 
  width:48px; 
  height:3px; 
  background:var(--gold); 
  border-radius:2px; 
  margin:1.25rem 0; 
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display:inline-flex; 
  align-items:center; 
  gap:9px;
  padding:13px 26px; 
  background:var(--gold); 
  color:var(--white);
  font-family:var(--f-head); 
  font-size:.8rem; 
  font-weight:700; 
  letter-spacing:.04em;
  border-radius:var(--r-sm); 
  border:2px solid transparent; 
  transition:all .3s var(--ease);
}
.btn-gold:hover { 
  background:var(--gold-d); 
  transform:translateY(-2px); 
  box-shadow:var(--sh-gold); 
}
.btn-gold i { transition:transform .3s; }
.btn-gold:hover i { transform:translateX(4px); }

.btn-gold-outline {
  display:inline-flex; 
  align-items:center; 
  gap:9px;
  padding:12px 24px; 
  background:transparent; 
  color:var(--gold-lt);
  border:2px solid rgba(190,151,24,.5);
  font-family:var(--f-head); 
  font-size:.8rem; 
  font-weight:600;
  border-radius:var(--r-sm); 
  transition:all .3s var(--ease);
}
.btn-gold-outline:hover { 
  border-color:var(--gold-lt); 
  color:var(--white); 
  background:rgba(190,151,24,.08); 
  transform:translateY(-2px); 
}

.btn-primary {
  display:inline-flex; 
  align-items:center; 
  gap:10px; 
  padding:14px 32px;
  background:var(--gold); 
  color:var(--near-black); 
  border-radius:var(--r-sm);
  font-family:var(--f-head); 
  font-size:.78rem; 
  font-weight:700; 
  letter-spacing:.08em; 
  text-transform:uppercase;
  border:2px solid transparent; 
  transition:all .35s var(--ease); 
  cursor:pointer;
}
.btn-primary:hover { 
  background:transparent; 
  border-color:var(--gold); 
  color:var(--gold); 
  transform:translateY(-2px); 
  box-shadow:var(--sh-gold); 
}
.btn-primary i { transition:transform .3s; }
.btn-primary:hover i { transform:translateX(4px); }

.btn-ghost {
  display:inline-flex; 
  align-items:center; 
  gap:10px; 
  padding:13px 28px;
  background:transparent; 
  color:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.2); 
  border-radius:var(--r-sm);
  font-family:var(--f-head); 
  font-size:.78rem; 
  font-weight:600; 
  letter-spacing:.08em; 
  text-transform:uppercase;
  transition:all .3s;
}
.btn-ghost:hover { 
  border-color:var(--gold); 
  color:var(--gold); 
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position:fixed; 
  top:0; 
  left:0; 
  right:0; 
  z-index:900;
  transition:all .4s var(--ease);
}
.nav.scrolled {
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(20px); 
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 1px 0 var(--gray-lt), 0 4px 20px rgba(0,0,0,.06);
}
.nav-inner {
  max-width:1280px; 
  margin:0 auto; 
  padding:0 2.5rem;
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  height:70px;
}
@media(max-width:768px){
  .nav-inner { 
    padding:0 1.5rem; 
  }
}

/* Logo mark */
.nav-brand {
  display:flex; 
  align-items:center; 
  gap:11px; 
  text-decoration:none;
}
.nav-logo-mark {
  width:40px; 
  height:40px; 
  border-radius:var(--r-sm);
  background:var(--near-black); 
  display:flex; 
  align-items:center; 
  justify-content:center;
  position:relative; 
  overflow:hidden; 
  flex-shrink:0;
}
.nav-logo-mark::after {
  content:''; 
  position:absolute; 
  bottom:0; 
  left:0; 
  right:0; 
  height:3px;
  background:var(--gold);
}
.nav-logo-mark svg { width:22px; height:22px; }
.nav-logo-text { line-height:1.2; }
.nav-logo-title { 
  font-family:var(--f-head); 
  font-size:.88rem; 
  font-weight:700; 
  color:var(--near-black); 
}
.nav.scrolled .nav-logo-title { color:var(--near-black); }
.nav-logo-sub { 
  font-size:.55rem; 
  font-weight:500; 
  letter-spacing:.14em; 
  text-transform:uppercase; 
  color:var(--text-lt); 
  display:block; 
}

.nav-links { 
  display:flex; 
  align-items:center; 
  gap:.15rem; 
  list-style:none; 
}
.nav-links a {
  padding:8px 13px; 
  border-radius:var(--r-sm);
  font-size:.8rem; 
  font-weight:500; 
  color:rgba(255,255,255,.75);
  transition:all .25s;
}
.nav.scrolled .nav-links a { color:var(--text-lt); }
.nav-links a:hover { color:var(--gold-d); background:var(--gold-pale); }
.nav.scrolled .nav-links a:hover { color:var(--gold-d); }

.nav-cta {
  padding:9px 22px; 
  background:var(--gold); 
  color:var(--white);
  border-radius:var(--r-sm); 
  font-family:var(--f-head); 
  font-size:.76rem; 
  font-weight:700; 
  letter-spacing:.04em;
  transition:all .3s var(--ease); 
  white-space:nowrap;
}
.nav-cta:hover { 
  background:var(--gold-d); 
  transform:translateY(-1px); 
  box-shadow:var(--sh-gold); 
}

.nav-ham { 
  display:none; 
  background:none; 
  color:var(--white); 
  font-size:1.2rem; 
  padding:6px; 
}
.nav.scrolled .nav-ham { color:var(--near-black); }

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

/* Mobile Navigation */
.mob-nav {
  display:none; 
  background:rgba(255,255,255,.98);
  padding:1rem 2rem 1.5rem; 
  border-top:1px solid var(--gray-lt);
  animation:mobIn .3s var(--ease);
}
.mob-nav.open { display:block; }
@keyframes mobIn { 
  from{opacity:0;transform:translateY(-8px);}
  to{opacity:1;transform:none;} 
}
.mob-nav a {
  display:block; 
  padding:.8rem 0; 
  color:var(--text-lt);
  font-size:.92rem; 
  font-weight:500; 
  border-bottom:1px solid var(--gray-lt); 
  transition:color .25s;
}
.mob-nav a:last-child { border-bottom:none; }
.mob-nav a:hover { color:var(--gold-d); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height:100vh; 
  background:var(--near-black);
  display:flex; 
  flex-direction:column; 
  justify-content:center;
  position:relative; 
  overflow:hidden; 
  padding-top:70px;
}

.hero-grid {
  position:absolute; 
  inset:0; 
  pointer-events:none;
  background-image:
    linear-gradient(rgba(190,151,24,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190,151,24,.05) 1px, transparent 1px);
  background-size:60px 60px;
}
.hero-grid::after {
  content:''; 
  position:absolute; 
  inset:0;
  background:radial-gradient(ellipse 70% 80% at 100% 50%, rgba(190,151,24,.08) 0%, transparent 55%),
             radial-gradient(ellipse 40% 50% at 0% 20%, rgba(212,175,55,.04) 0%, transparent 50%);
}

.hero-stripe {
  position:absolute; 
  top:0; 
  right:0; 
  bottom:0; 
  width:45%;
  background:linear-gradient(180deg, rgba(190,151,24,.04) 0%, rgba(190,151,24,.02) 100%);
  clip-path:polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events:none;
}

.hero-inner {
  max-width:1280px; 
  width:100%; 
  margin:0 auto;
  padding:5rem 2.5rem 7rem;
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:5rem; 
  align-items:center;
  position:relative; 
  z-index:2;
}
@media(max-width:1024px){
  .hero-inner { 
    grid-template-columns:1fr; 
    gap:3rem; 
    padding:3rem 1.5rem 5.5rem;
  }
}

.hero-badge {
  display:inline-flex; 
  align-items:center; 
  gap:8px;
  padding:6px 14px; 
  margin-bottom:1.5rem;
  background:var(--gold); 
  color:var(--white);
  border-radius:var(--r-xl);
  font-family:var(--f-head); 
  font-size:.66rem; 
  font-weight:700; 
  letter-spacing:.12em; 
  text-transform:uppercase;
  animation:badgeIn .7s var(--ease) .3s both;
}
.badge-dot { 
  width:6px; 
  height:6px; 
  border-radius:50%; 
  background:var(--white); 
  animation:dotPulse 2.5s ease-in-out infinite; 
}
@keyframes dotPulse { 
  0%,100%{opacity:1;}
  50%{opacity:.3;} 
}
@keyframes badgeIn { 
  from{opacity:0;transform:translateY(-10px);}
  to{opacity:1;transform:none;} 
}

.hero-h1 {
  font-family:var(--f-head);
  font-size:clamp(2.4rem,4.5vw,4.2rem);
  font-weight:900; 
  line-height:1.08; 
  letter-spacing:-.02em; 
  color:var(--white);
  margin-bottom:.75rem;
}
.hero-h1 .brand { color:var(--gold-lt); }

.hero-tagline {
  font-family:var(--f-head); 
  font-size:1.05rem; 
  font-weight:600;
  color:var(--gold); 
  letter-spacing:.04em; 
  margin-bottom:.85rem;
}

.hero-sub {
  font-size:.97rem; 
  font-weight:300; 
  line-height:1.82; 
  color:rgba(255,255,255,.58);
  margin-bottom:2.25rem; 
  max-width:460px;
}

.hero-btns { 
  display:flex; 
  gap:12px; 
  flex-wrap:wrap; 
  margin-bottom:2rem; 
}
@media(max-width:640px){
  .hero-btns { flex-direction:column; }
  .btn-gold, .btn-gold-outline { width:100%; justify-content:center; }
}

.hero-trust { 
  display:flex; 
  flex-wrap:wrap; 
  gap:1.5rem; 
}
.trust-tag { 
  display:flex; 
  align-items:center; 
  gap:7px; 
  font-size:.75rem; 
  font-weight:500; 
  color:rgba(255,255,255,.5); 
}
.trust-tag i { color:var(--gold); font-size:.75rem; }

/* Hero Visual */
.hero-visual { 
  position:relative; 
}
.hero-collage {
  aspect-ratio:1; 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:8px;
  border-radius:var(--r-xl); 
  overflow:hidden;
  box-shadow:var(--sh-lg), 0 0 0 1px rgba(190,151,24,.2);
}
@media(max-width:1024px){
  .hero-collage { 
    max-width:480px; 
    margin:0 auto; 
    aspect-ratio:3/2; 
  }
  .hero-collage-item:first-child { grid-row:auto; }
}
.hero-collage-item {
  background:var(--charcoal); 
  overflow:hidden; 
  position:relative;
}
.hero-collage-item:first-child { grid-row:span 2; }
.hero-collage-item img { 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  filter:brightness(.8) saturate(.9); 
  transition:transform .5s; 
}
.hero-collage-item:hover img { transform:scale(1.04); }

.float-impact {
  position:absolute; 
  bottom:-1.5rem; 
  left:-2rem;
  background:var(--white); 
  border-radius:var(--r-lg);
  padding:1rem 1.35rem; 
  min-width:220px;
  box-shadow:var(--sh-lg); 
  border-left:4px solid var(--gold);
  animation:floatCard 5.5s ease-in-out infinite;
}
@media(max-width:1024px){
  .float-impact { 
    position:static; 
    margin-top:1rem; 
    width:100%; 
  }
}
@keyframes floatCard { 
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);} 
}
.fi-num  { 
  font-family:var(--f-head); 
  font-size:1.6rem; 
  font-weight:900; 
  color:var(--gold-d); 
  display:block; 
  line-height:1; 
}
.fi-label{ font-size:.72rem; font-weight:500; color:var(--text-lt); margin-top:2px; }
.fi-icon { color:var(--gold); font-size:.85rem; margin-top:.5rem; }

.scroll-cue {
  position:absolute; 
  bottom:2.5rem; 
  left:50%; 
  transform:translateX(-50%);
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  gap:6px;
  font-size:.58rem; 
  font-weight:600; 
  letter-spacing:.2em; 
  text-transform:uppercase;
  color:rgba(255,255,255,.3); 
  z-index:2;
}
.scroll-arr { 
  animation:arrBob 2.4s ease-in-out infinite; 
  color:var(--gold); 
}
@keyframes arrBob { 
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(6px);} 
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid { 
  display:grid; 
  grid-template-columns:1.15fr 1fr; 
  gap:5.5rem; 
  align-items:start; 
}
@media(max-width:1024px){
  .about-grid { 
    grid-template-columns:1fr; 
    gap:3rem; 
  }
}

.about-body { 
  font-size:.97rem; 
  font-weight:300; 
  line-height:1.88; 
  color:var(--text-lt); 
  margin-bottom:1.25rem; 
}
.about-body strong { color:var(--near-black); font-weight:500; }

.founder-note {
  display:flex; 
  align-items:center; 
  gap:12px; 
  padding:1rem 1.25rem;
  background:var(--gold-pale); 
  border:1px solid var(--gold-mid);
  border-radius:var(--r-md); 
  margin-top:1.25rem;
}
.founder-note i { color:var(--gold-d); font-size:1.1rem; flex-shrink:0; }
.founder-note span { font-size:.85rem; font-weight:500; color:var(--near-black); font-style:italic; }

.about-photo {
  aspect-ratio:4/5; 
  border-radius:var(--r-xl); 
  overflow:hidden;
  background:var(--charcoal);
  box-shadow:var(--sh-lg), 8px 8px 0 0 var(--gold-pale), 0 0 0 1px var(--gold-mid);
  position:relative; 
  margin-bottom:1rem;
}
.about-photo img { width:100%; height:100%; object-fit:cover; }

.about-stats { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:8px; 
}
.astat {
  background:var(--white); 
  padding:1rem; 
  text-align:center;
  border:1px solid var(--gray-lt); 
  border-radius:var(--r-md);
  box-shadow:var(--sh-sm); 
  transition:all .3s;
}
.astat:hover { 
  border-color:var(--gold-mid); 
  box-shadow:0 4px 16px rgba(190,151,24,.12); 
}
.astat-n { 
  font-family:var(--f-head); 
  font-size:1.4rem; 
  font-weight:800; 
  color:var(--gold-d); 
  display:block; 
  line-height:1; 
}
.astat-l { 
  font-size:.65rem; 
  font-weight:600; 
  letter-spacing:.06em; 
  text-transform:uppercase; 
  color:var(--text-lt); 
  margin-top:4px; 
}

/* ============================================================
   FOCUS AREAS (PILLARS)
   ============================================================ */
.pillars-grid { 
  display:grid; 
  grid-template-columns:repeat(4,1fr); 
  gap:1.25rem; 
  margin-top:3rem; 
}
@media(max-width:1200px){
  .pillars-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px){
  .pillars-grid { grid-template-columns:1fr; }
}

.pillar-card {
  background:var(--white); 
  border-radius:var(--r-xl);
  border:1px solid var(--gray-lt); 
  padding:2.25rem 1.75rem;
  box-shadow:var(--sh-sm); 
  transition:all .4s var(--ease);
  position:relative; 
  overflow:hidden;
}
.pillar-card::before {
  content:''; 
  position:absolute; 
  top:0; 
  left:0; 
  right:0; 
  height:3px;
  background:linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform:scaleX(0); 
  transform-origin:left; 
  transition:transform .4s var(--ease);
}
.pillar-card:hover { 
  transform:translateY(-6px); 
  box-shadow:0 12px 36px rgba(190,151,24,.15); 
  border-color:var(--gold-mid); 
}
.pillar-card:hover::before { transform:scaleX(1); }

.pillar-icon {
  width:58px; 
  height:58px; 
  border-radius:var(--r-lg); 
  margin-bottom:1.25rem;
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:1.4rem;
  background:var(--gold-pale); 
  color:var(--gold-d);
  transition:all .4s var(--ease-b);
}
.pillar-card:hover .pillar-icon { 
  transform:scale(1.1) rotate(-4deg); 
  background:rgba(190,151,24,.18); 
}
.pillar-title { 
  font-family:var(--f-head); 
  font-size:1.05rem; 
  font-weight:700; 
  color:var(--near-black); 
  margin-bottom:.55rem; 
}
.pillar-desc  { 
  font-size:.85rem; 
  color:var(--text-lt); 
  line-height:1.7; 
  margin-bottom:.85rem; 
}
.pillar-stat  {
  display:inline-flex; 
  align-items:center; 
  gap:6px;
  padding:3px 12px; 
  background:var(--gold-pale); 
  border:1px solid var(--gold-mid); 
  border-radius:20px;
  font-size:.68rem; 
  font-weight:700; 
  color:var(--gold-d); 
  letter-spacing:.04em;
}
.pillar-link {
  display:flex; 
  align-items:center; 
  gap:4px; 
  margin-top:.75rem;
  font-size:.72rem; 
  font-weight:700; 
  letter-spacing:.06em; 
  text-transform:uppercase;
  color:var(--gold-d); 
  transition:gap .3s;
}
.pillar-link:hover { gap:7px; }

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-grid { 
  display:grid; 
  grid-template-columns:repeat(3,1fr); 
  gap:1.25rem; 
  margin-top:3rem; 
}
@media(max-width:1200px){
  .programs-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px){
  .programs-grid { grid-template-columns:1fr; }
}

.prog-card {
  background:var(--white); 
  border-radius:var(--r-xl);
  border:1px solid var(--gray-lt); 
  padding:1.75rem;
  box-shadow:var(--sh-sm); 
  transition:all .35s var(--ease);
  display:flex; 
  flex-direction:column;
}
.prog-card:hover { 
  transform:translateY(-5px); 
  box-shadow:0 10px 30px rgba(0,0,0,.1); 
  border-color:var(--gold-mid); 
}
.prog-card-top {
  display:flex; 
  align-items:flex-start; 
  justify-content:space-between; 
  gap:.75rem; 
  margin-bottom:1rem;
}
.prog-icon {
  width:46px; 
  height:46px; 
  border-radius:var(--r-md); 
  flex-shrink:0;
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:1.05rem;
  background:var(--gold-pale); 
  color:var(--gold-d);
  transition:all .3s var(--ease-b);
}
.prog-card:hover .prog-icon { 
  transform:scale(1.08); 
  background:rgba(190,151,24,.18); 
}
.prog-stat-badge {
  padding:3px 10px; 
  background:var(--near-black); 
  color:var(--gold-lt);
  border-radius:20px; 
  font-family:var(--f-head); 
  font-size:.6rem; 
  font-weight:700; 
  letter-spacing:.06em;
  white-space:nowrap;
}
.prog-title { 
  font-family:var(--f-head); 
  font-size:.98rem; 
  font-weight:700; 
  color:var(--near-black); 
  margin-bottom:.5rem; 
}
.prog-desc  { 
  font-size:.84rem; 
  color:var(--text-lt); 
  line-height:1.7; 
  flex:1; 
  margin-bottom:1rem; 
}
.prog-link  {
  font-size:.72rem; 
  font-weight:700; 
  letter-spacing:.08em; 
  text-transform:uppercase;
  color:var(--gold-d); 
  display:inline-flex; 
  align-items:center; 
  gap:4px; 
  transition:gap .3s; 
  margin-top:auto;
}
.prog-link:hover { gap:7px; }

/* ============================================================
   IMPACT DASHBOARD
   ============================================================ */
.impact-grid { 
  display:grid; 
  grid-template-columns:repeat(3,1fr); 
  gap:1.25rem; 
  margin-top:3rem; 
}
@media(max-width:1200px){
  .impact-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px){
  .impact-grid { grid-template-columns:1fr; }
}

.impact-stat {
  background:rgba(255,255,255,.06); 
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-xl); 
  padding:2rem 1.75rem; 
  text-align:center;
  transition:all .35s var(--ease); 
  position:relative; 
  overflow:hidden;
}
.impact-stat::before {
  content:''; 
  position:absolute; 
  bottom:0; 
  left:0; 
  right:0; 
  height:3px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  transform:scaleX(0); 
  transition:transform .4s;
}
.impact-stat:hover { 
  background:rgba(255,255,255,.1); 
  border-color:rgba(190,151,24,.25); 
  transform:translateY(-4px); 
}
.impact-stat:hover::before { transform:scaleX(1); }
.impact-stat-icon {
  width:48px; 
  height:48px; 
  border-radius:var(--r-md); 
  margin:0 auto .85rem;
  background:var(--gold-pale); 
  color:var(--gold);
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:1.15rem;
}
.impact-n {
  font-family:var(--f-head); 
  font-size:2.8rem; 
  font-weight:900; 
  color:var(--gold);
  display:block; 
  line-height:1; 
  margin-bottom:.35rem;
}
.impact-l { 
  font-size:.78rem; 
  font-weight:500; 
  color:rgba(255,255,255,.55); 
  letter-spacing:.04em; 
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:1.5rem; 
  margin-top:3rem; 
}
@media(max-width:1024px){
  .testi-grid { grid-template-columns:1fr; }
}

.testi-card {
  background:var(--white); 
  border-radius:var(--r-xl); 
  padding:2.25rem;
  border:1px solid var(--gray-lt); 
  box-shadow:var(--sh-sm);
  transition:all .35s var(--ease); 
  position:relative; 
  overflow:hidden;
}
.testi-card::before {
  content:'"'; 
  position:absolute; 
  top:-.5rem; 
  right:1.5rem;
  font-family:var(--f-quote); 
  font-size:6rem; 
  line-height:1;
  color:rgba(190,151,24,.08);
}
.testi-card:hover { 
  transform:translateY(-5px); 
  box-shadow:0 12px 32px rgba(190,151,24,.15); 
  border-color:var(--gold-mid); 
}
.testi-icon { color:var(--gold); font-size:1.25rem; margin-bottom:1rem; }
.testi-text {
  font-family:var(--f-quote); 
  font-style:italic; 
  font-size:.97rem; 
  line-height:1.82;
  color:var(--text); 
  margin-bottom:1.5rem;
}
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-ava {
  width:44px; 
  height:44px; 
  border-radius:50%; 
  flex-shrink:0;
  background:var(--gold-pale); 
  border:2px solid var(--gold-mid);
  display:flex; 
  align-items:center; 
  justify-content:center;
  font-family:var(--f-head); 
  font-size:.88rem; 
  font-weight:800; 
  color:var(--gold-d);
}
.testi-name { 
  font-family:var(--f-head); 
  font-size:.88rem; 
  font-weight:700; 
  color:var(--near-black); 
  display:block; 
}
.testi-role { font-size:.74rem; color:var(--gold-d); }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
  display:grid; 
  grid-template-columns:repeat(3,1fr);
  gap:10px; 
  margin-top:3rem;
}
@media(max-width:768px){
  .gallery-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .gallery-grid { grid-template-columns:1fr; }
}

.gallery-item {
  aspect-ratio:4/3; 
  border-radius:var(--r-md); 
  overflow:hidden;
  position:relative; 
  cursor:pointer;
  background:var(--charcoal);
}
.gallery-item.tall { aspect-ratio:4/5; }
.gallery-item img { 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  transition:transform .5s var(--ease); 
}
.gallery-item:hover img { transform:scale(1.06); }
.gallery-overlay {
  position:absolute; 
  inset:0;
  background:linear-gradient(to top, rgba(17,24,39,.8) 0%, rgba(190,151,24,.25) 100%);
  opacity:0; 
  transition:opacity .35s;
  display:flex; 
  align-items:center; 
  justify-content:center;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-view {
  width:52px; 
  height:52px; 
  border-radius:50%;
  background:rgba(190,151,24,.85); 
  color:var(--white);
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:1rem;
  transform:scale(.8); 
  transition:all .3s var(--ease);
}
.gallery-item:hover .gallery-view { 
  transform:scale(1); 
  box-shadow:0 0 0 4px rgba(190,151,24,.3); 
}

/* Gallery Modal */
.g-modal {
  display:none; 
  position:fixed; 
  inset:0; 
  z-index:999;
  background:rgba(0,0,0,.92); 
  align-items:center; 
  justify-content:center; 
  padding:2rem;
}
.g-modal.open { display:flex; }
.g-modal img { 
  max-width:90vw; 
  max-height:86vh; 
  border-radius:var(--r-md); 
  box-shadow:0 32px 80px rgba(0,0,0,.5); 
}
.g-close {
  position:absolute; 
  top:1.5rem; 
  right:1.5rem; 
  width:44px; 
  height:44px;
  background:rgba(190,151,24,.2); 
  border:1px solid rgba(190,151,24,.3);
  border-radius:50%; 
  color:var(--white); 
  font-size:1.1rem;
  display:flex; 
  align-items:center; 
  justify-content:center; 
  cursor:pointer; 
  transition:all .3s;
}
.g-close:hover { background:rgba(190,151,24,.4); }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-grid {
  display:grid; 
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem; 
  margin-top:3rem;
}
@media(max-width:768px){
  .news-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:480px){
  .news-grid { grid-template-columns:1fr; }
}

.news-card {
  background:var(--white);
  border-radius:var(--r-xl);
  overflow:hidden;
  border:1px solid var(--gray-lt);
  transition:all .35s var(--ease);
}
.news-card:hover {
  transform:translateY(-5px);
  box-shadow:var(--sh-lg);
  border-color:var(--gold-mid);
}
.news-img {
  height:200px;
  overflow:hidden;
}
.news-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s;
}
.news-card:hover .news-img img {
  transform:scale(1.05);
}
.news-content {
  padding:1.5rem;
}
.news-date {
  font-size:.7rem;
  color:var(--gold-d);
  font-weight:500;
  margin-bottom:.5rem;
  display:block;
}
.news-title {
  font-family:var(--f-head);
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:.75rem;
  color:var(--near-black);
  line-height:1.4;
}
.news-excerpt {
  font-size:.85rem;
  color:var(--text-lt);
  line-height:1.7;
  margin-bottom:1rem;
}
.news-link {
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--gold-d);
  display:inline-flex;
  align-items:center;
  gap:4px;
  transition:gap .3s;
}
.news-link:hover { gap:7px; }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-cloud { 
  display:flex; 
  flex-wrap:wrap; 
  gap:10px; 
  justify-content:center; 
  margin-top:2.5rem; 
}
.partner-item {
  padding:.85rem 1.75rem; 
  background:var(--white);
  border:1px solid var(--gray-lt); 
  border-radius:var(--r-sm);
  font-family:var(--f-head); 
  font-size:.76rem; 
  font-weight:600; 
  color:var(--text-lt);
  display:flex; 
  align-items:center; 
  gap:7px;
  transition:all .3s var(--ease);
}
.partner-item i { color:var(--gold); }
.partner-item:hover { 
  border-color:var(--gold-mid); 
  color:var(--near-black); 
  transform:translateY(-2px); 
  box-shadow:var(--sh-sm); 
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background:var(--near-black); 
  padding:100px 2.5rem;
  position:relative; 
  overflow:hidden;
}
.cta-grid-bg {
  position:absolute; 
  inset:0; 
  pointer-events:none; 
  opacity:.04;
  background-image:
    linear-gradient(rgba(190,151,24,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190,151,24,1) 1px, transparent 1px);
  background-size:60px 60px;
}
.cta-card {
  max-width:820px; 
  margin:0 auto; 
  text-align:center; 
  position:relative; 
  z-index:1;
}
.cta-icon {
  width:64px; 
  height:64px; 
  background:var(--gold-pale); 
  border:1px solid var(--gold-mid);
  border-radius:var(--r-xl); 
  display:flex; 
  align-items:center; 
  justify-content:center;
  margin:0 auto 1.5rem; 
  font-size:1.6rem; 
  color:var(--gold);
  animation:floatCard 5s ease-in-out infinite;
}
.cta-h2 { 
  font-family:var(--f-head); 
  font-size:clamp(1.9rem,4vw,3rem); 
  font-weight:800; 
  color:var(--white); 
  margin-bottom:.75rem; 
  letter-spacing:-.02em; 
}
.cta-p { 
  font-size:.97rem; 
  color:rgba(255,255,255,.55); 
  margin-bottom:2.5rem; 
  line-height:1.78; 
  font-weight:300; 
}
.cta-btns { 
  display:flex; 
  gap:12px; 
  justify-content:center; 
  flex-wrap:wrap; 
}
@media(max-width:640px){
  .cta-btns { flex-direction:column; }
  .btn-cta-primary, .btn-cta-outline { width:100%; justify-content:center; }
}
.btn-cta-primary {
  display:inline-flex; 
  align-items:center; 
  gap:9px;
  padding:14px 30px; 
  background:var(--gold); 
  color:var(--white);
  font-family:var(--f-head); 
  font-size:.82rem; 
  font-weight:700; 
  letter-spacing:.04em;
  border-radius:var(--r-sm); 
  border:2px solid transparent; 
  transition:all .3s var(--ease);
}
.btn-cta-primary:hover { 
  background:var(--gold-d); 
  transform:translateY(-2px); 
  box-shadow:var(--sh-gold); 
}
.btn-cta-outline {
  display:inline-flex; 
  align-items:center; 
  gap:9px;
  padding:13px 26px; 
  background:transparent; 
  color:rgba(255,255,255,.75);
  border:2px solid rgba(255,255,255,.25);
  font-family:var(--f-head); 
  font-size:.82rem; 
  font-weight:600;
  border-radius:var(--r-sm); 
  transition:all .3s var(--ease);
}
.btn-cta-outline:hover { 
  border-color:var(--gold-mid); 
  color:var(--gold-lt); 
  transform:translateY(-2px); 
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid { 
  display:grid; 
  grid-template-columns:1.15fr 1fr; 
  gap:5rem; 
}
@media(max-width:1024px){
  .contact-grid { 
    grid-template-columns:1fr; 
    gap:3rem; 
  }
}
.contact-h3 { 
  font-family:var(--f-head); 
  font-size:1.4rem; 
  font-weight:700; 
  color:var(--near-black); 
  margin-bottom:.75rem; 
}
.contact-p  { 
  font-size:.9rem; 
  color:var(--text-lt); 
  line-height:1.78; 
  margin-bottom:1.75rem; 
}

.form-group { margin-bottom:.85rem; }
.form-in, .form-ta, .form-select {
  width:100%; 
  padding:12px 16px;
  border:1.5px solid var(--gray-lt); 
  border-radius:var(--r-sm);
  font-family:var(--f-body); 
  font-size:.9rem; 
  color:var(--text);
  outline:none; 
  transition:border-color .25s, box-shadow .25s; 
  background:var(--white);
}
.form-in:focus, .form-ta:focus, .form-select:focus {
  border-color:var(--gold); 
  box-shadow:0 0 0 3px rgba(190,151,24,.12);
}
.form-in::placeholder, .form-ta::placeholder { color:var(--text-xlt); }
.form-ta { resize:vertical; min-height:110px; }
.form-submit {
  width:100%; 
  padding:13px; 
  background:var(--gold); 
  color:var(--white);
  font-family:var(--f-head); 
  font-size:.8rem; 
  font-weight:700; 
  letter-spacing:.06em; 
  text-transform:uppercase;
  border-radius:var(--r-sm); 
  transition:all .3s; 
  cursor:pointer; 
  border:none;
}
.form-submit:hover { background:var(--gold-d); transform:translateY(-1px); }
.form-ok { 
  display:none; 
  margin-top:.7rem; 
  padding:.75rem 1rem; 
  background:rgba(190,151,24,.1); 
  border:1px solid rgba(190,151,24,.3); 
  border-radius:var(--r-sm); 
  font-size:.82rem; 
  color:var(--gold-d); 
}
.form-ok.show { display:flex; align-items:center; gap:7px; }

.conn-h3 { 
  font-family:var(--f-head); 
  font-size:1.2rem; 
  font-weight:700; 
  color:var(--near-black); 
  margin-bottom:1.5rem; 
  padding-bottom:.85rem; 
  border-bottom:2px solid var(--gold-pale); 
}
.conn-detail { display:flex; align-items:flex-start; gap:12px; margin-bottom:1.1rem; }
.conn-icon { 
  width:40px; 
  height:40px; 
  border-radius:var(--r-sm); 
  flex-shrink:0; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:.9rem; 
}
.ci-email { background:var(--gold-pale); color:var(--gold-d); }
.ci-loc   { background:rgba(37,99,235,.08); color:var(--blue); }
.conn-detail label { 
  font-size:.62rem; 
  font-weight:700; 
  letter-spacing:.12em; 
  text-transform:uppercase; 
  color:var(--text-xlt); 
  display:block; 
  margin-bottom:2px; 
}
.conn-detail a, .conn-detail span { 
  font-size:.88rem; 
  font-weight:500; 
  color:var(--text); 
  transition:color .25s; 
}
.conn-detail a:hover { color:var(--gold-d); }

.social-row { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:1.5rem; }
@media(max-width:768px){
  .social-row { grid-template-columns:1fr; }
}
.soc-btn {
  display:flex; 
  align-items:center; 
  gap:10px; 
  padding:.85rem 1rem;
  border:1px solid var(--gray-lt); 
  border-radius:var(--r-sm);
  transition:all .3s; 
  text-decoration:none;
}
.soc-btn:hover { 
  border-color:var(--gold-mid); 
  background:var(--gold-pale); 
  transform:translateY(-2px); 
}
.soc-ico { 
  width:34px; 
  height:34px; 
  border-radius:var(--r-sm); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:.9rem; 
  flex-shrink:0; 
}
.si-ig { background:rgba(193,53,132,.1); color:#c13584; }
.si-fb { background:rgba(24,119,242,.1); color:#1877f2; }
.si-tw { background:rgba(0,0,0,.06); color:#333; }
.si-yt { background:rgba(255,0,0,.08); color:#ff0000; }
.soc-lbl { font-family:var(--f-head); font-size:.8rem; font-weight:600; color:var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background:var(--near-black); 
  padding:4rem 2.5rem 2rem;
  border-top:3px solid var(--gold);
}
.footer-inner { max-width:1280px; margin:0 auto; }
.footer-top {
  display:flex; 
  align-items:flex-start; 
  justify-content:space-between; 
  flex-wrap:wrap; 
  gap:2rem;
  padding-bottom:2.5rem; 
  border-bottom:1px solid rgba(255,255,255,.08); 
  margin-bottom:2rem;
}
@media(max-width:768px){
  .footer-top { flex-direction:column; }
}
.footer-brand-name { 
  font-family:var(--f-head); 
  font-size:1.15rem; 
  font-weight:800; 
  color:var(--white); 
  margin-bottom:.3rem; 
}
.footer-brand-tagline { 
  font-size:.82rem; 
  color:rgba(255,255,255,.4); 
  max-width:320px; 
  line-height:1.65; 
  margin-top:.3rem; 
}
.footer-brand-tagline span { color:var(--gold); }
.footer-nav { 
  list-style:none; 
  display:flex; 
  flex-wrap:wrap; 
  gap:.4rem 1.5rem; 
}
@media(max-width:768px){
  .footer-nav { flex-direction:column; gap:.25rem; }
}
.footer-nav a { 
  font-size:.82rem; 
  font-weight:500; 
  color:rgba(255,255,255,.5); 
  transition:color .25s; 
}
.footer-nav a:hover { color:var(--gold); }
.footer-bottom {
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  flex-wrap:wrap; 
  gap:.75rem;
  font-size:.75rem; 
  color:rgba(255,255,255,.28);
}

/* ============================================================
   DONATION PAGE SPECIFIC
   ============================================================ */
.donation-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
}
@media(max-width:768px){
  .donation-grid {
    grid-template-columns:1fr;
    gap:2rem;
  }
}
.bank-details {
  background:var(--gold-pale);
  border:1px solid var(--gold-mid);
  border-radius:var(--r-lg);
  padding:1.5rem;
  margin-top:1rem;
}
.bank-row {
  display:flex;
  justify-content:space-between;
  padding:.75rem 0;
  border-bottom:1px solid rgba(190,151,24,.2);
}
.bank-row:last-child {
  border-bottom:none;
}
.bank-label {
  font-weight:600;
  color:var(--near-black);
}
.bank-value {
  color:var(--gold-d);
  font-family:monospace;
  font-size:.9rem;
}

/* ============================================================
   VOLUNTEER PAGE SPECIFIC
   ============================================================ */
.volunteer-grid {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:3rem;
}
@media(max-width:768px){
  .volunteer-grid {
    grid-template-columns:1fr;
  }
}
.volunteer-benefits {
  background:var(--white);
  border-radius:var(--r-xl);
  padding:2rem;
  border:1px solid var(--gray-lt);
}
.benefit-item {
  display:flex;
  gap:1rem;
  margin-bottom:1.5rem;
}
.benefit-icon {
  width:48px;
  height:48px;
  background:var(--gold-pale);
  border-radius:var(--r-md);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:1.2rem;
  flex-shrink:0;
}
.benefit-text h4 {
  font-family:var(--f-head);
  font-size:1rem;
  font-weight:700;
  margin-bottom:.25rem;
}
.benefit-text p {
  font-size:.85rem;
  color:var(--text-lt);
}

/* ============================================================
   PROGRAM SINGLE PAGE
   ============================================================ */
.program-hero {
  background:var(--near-black);
  padding:140px 2.5rem 80px;
  position:relative;
}
.program-hero-content {
  max-width:800px;
  margin:0 auto;
  text-align:center;
  color:var(--white);
}
.program-hero h1 {
  font-family:var(--f-head);
  font-size:clamp(2rem,4vw,3.5rem);
  font-weight:800;
  margin-bottom:1rem;
}
.program-hero p {
  font-size:1rem;
  color:rgba(255,255,255,.7);
}
.program-content {
  padding:80px 2.5rem;
  max-width:900px;
  margin:0 auto;
}
.program-content h2 {
  font-family:var(--f-head);
  font-size:1.6rem;
  font-weight:700;
  margin:2rem 0 1rem;
}
.program-content h3 {
  font-family:var(--f-head);
  font-size:1.2rem;
  font-weight:600;
  margin:1.5rem 0 .75rem;
}
.program-content p {
  margin-bottom:1rem;
  line-height:1.8;
  color:var(--text-lt);
}
.program-content ul, .program-content ol {
  margin:1rem 0 1rem 2rem;
  color:var(--text-lt);
}
.program-content li {
  margin-bottom:.5rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display:flex;
  justify-content:center;
  gap:.5rem;
  margin-top:3rem;
}
.pagination a, .pagination span {
  padding:.6rem 1rem;
  border:1px solid var(--gray-lt);
  border-radius:var(--r-sm);
  font-size:.85rem;
  transition:all .3s;
}
.pagination a:hover {
  background:var(--gold);
  color:var(--white);
  border-color:var(--gold);
}
.pagination .active {
  background:var(--gold);
  color:var(--white);
  border-color:var(--gold);
}

/* ============================================================
   ALERT MESSAGES
   ============================================================ */
.alert {
  padding:1rem 1.25rem;
  border-radius:var(--r-md);
  margin-bottom:1.5rem;
  display:flex;
  align-items:center;
  gap:12px;
}
.alert-success {
  background:#d4edda;
  border:1px solid #c3e6cb;
  color:#155724;
}
.alert-error {
  background:#f8d7da;
  border:1px solid #f5c6cb;
  color:#721c24;
}
.alert-warning {
  background:#fff3cd;
  border:1px solid #ffeeba;
  color:#856404;
}
.alert-info {
  background:#d1ecf1;
  border:1px solid #bee5eb;
  color:#0c5460;
}

/* ============================================================
   LOADING STATES
   ============================================================ */
.loading {
  display:inline-block;
  width:20px;
  height:20px;
  border:2px solid var(--gray-lt);
  border-top-color:var(--gold);
  border-radius:50%;
  animation:spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform:rotate(360deg); }
}

/* ============================================================
   HOMEPAGE SPECIFIC STYLES (Albums, News Grid, Contact, Newsletter)
   ============================================================ */

/* Albums Grid Home */
.albums-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .albums-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .albums-grid-home {
        grid-template-columns: 1fr;
    }
}

/* Album Card */
.album-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--gray-lt);
    transition: all 0.35s var(--ease);
}
.album-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-mid);
    box-shadow: var(--sh-lg);
}
.album-card a {
    text-decoration: none;
    display: block;
}
.album-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.album-card:hover .album-cover img {
    transform: scale(1.05);
}
.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.album-card:hover .album-overlay {
    opacity: 1;
}
.album-view-btn {
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--near-black);
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.album-photo-count {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.7);
    padding: 0.25rem 0.75rem;
    border-radius: var(--r-full);
    font-size: 0.65rem;
    color: var(--gold);
}
.album-info {
    padding: 1rem;
}
.album-info h3 {
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--near-black);
}
.album-date {
    font-size: 0.65rem;
    color: var(--gold-d);
    margin-bottom: 0.25rem;
}
.album-date i {
    margin-right: 0.25rem;
}
.album-info p {
    font-size: 0.75rem;
    color: var(--text-lt);
    line-height: 1.5;
}

/* News Grid Home */
.news-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .news-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .news-grid-home {
        grid-template-columns: 1fr;
    }
}
.news-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--gray-lt);
    transition: all 0.35s var(--ease);
}
.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-mid);
    box-shadow: var(--sh-lg);
}
.news-image {
    height: 180px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-card:hover .news-image img {
    transform: scale(1.05);
}
.news-content-home {
    padding: 1rem;
}
.news-date {
    font-size: 0.65rem;
    color: var(--gold-d);
    margin-bottom: 0.5rem;
}
.news-date i {
    margin-right: 0.25rem;
}
.news-title-home {
    font-family: var(--f-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--near-black);
    line-height: 1.4;
}
.news-excerpt-home {
    font-size: 0.75rem;
    color: var(--text-lt);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.read-more-link {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-d);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s;
}
.read-more-link:hover {
    gap: 0.5rem;
    color: var(--gold);
}

/* Empty State Mini */
.empty-state-mini {
    text-align: center;
    padding: 3rem;
    background: var(--off-white);
    border-radius: var(--r-lg);
    margin: 1rem 0;
}
.empty-state-mini i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}
.empty-state-mini p {
    color: var(--text-lt);
    font-size: 0.85rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-header.center {
    text-align: center;
}
.rule-gold.center {
    margin: 1rem auto;
}

/* Contact Home Grid */
.contact-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .contact-home-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Form Column */
.contact-card-home, .connect-card-home {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 2rem;
    border: 1px solid var(--gray-lt);
    box-shadow: var(--sh-sm);
    height: 100%;
}
@media (max-width: 768px) {
    .contact-card-home, .connect-card-home {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .contact-card-home, .connect-card-home {
        padding: 1.25rem;
    }
}

.contact-header, .connect-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.contact-header i, .connect-header i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
    .contact-header i, .connect-header i {
        font-size: 2rem;
    }
}
.contact-header h2, .connect-header h2 {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
    .contact-header h2, .connect-header h2 {
        font-size: 1.25rem;
    }
}
.contact-header p, .connect-header p {
    font-size: 0.9rem;
    color: var(--text-lt);
}
@media (max-width: 480px) {
    .contact-header p, .connect-header p {
        font-size: 0.8rem;
    }
}

/* Form Styles for Contact Home */
.contact-form-home .form-row-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 640px) {
    .contact-form-home .form-row-home {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}
.form-group-home {
    margin-bottom: 1rem;
}
.form-group-home input,
.form-group-home select,
.form-group-home textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--gray-lt);
    border-radius: var(--r-sm);
    font-family: var(--f-body);
    font-size: 0.9rem;
    transition: all 0.3s;
}
@media (max-width: 480px) {
    .form-group-home input,
    .form-group-home select,
    .form-group-home textarea {
        padding: 0.7rem 0.85rem;
        font-size: 0.85rem;
    }
}
.form-group-home input:focus,
.form-group-home select:focus,
.form-group-home textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(190,151,24,.1);
}
.form-group-home textarea {
    resize: vertical;
}
.btn-submit-home {
    width: 100%;
    justify-content: center;
}

/* Alerts for Contact Home */
.alert-success-home, .alert-error-home {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--r-md);
    margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
    .alert-success-home, .alert-error-home {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}
.alert-success-home {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}
.alert-error-home {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
.alert-success-home i, .alert-error-home i {
    font-size: 1.2rem;
}
.alert-success-home strong, .alert-error-home strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Connect Info List */
.connect-info-list {
    margin-bottom: 1.5rem;
}
.connect-item {
    display: flex;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-lt);
}
.connect-item:last-child {
    border-bottom: none;
}
@media (max-width: 480px) {
    .connect-item {
        gap: 0.75rem;
        padding: 0.65rem 0;
    }
}
.connect-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .connect-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
.connect-icon.location {
    background: rgba(190,151,24,.1);
    color: var(--gold-d);
}
.connect-icon.phone {
    background: rgba(37,99,235,.1);
    color: var(--blue);
}
.connect-icon.email {
    background: rgba(22,163,74,.1);
    color: var(--green);
}
.connect-details {
    flex: 1;
}
.connect-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-xlt);
    display: block;
    margin-bottom: 0.25rem;
}
.connect-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    word-break: break-word;
}
@media (max-width: 480px) {
    .connect-value {
        font-size: 0.8rem;
    }
}
.connect-value:hover {
    color: var(--gold-d);
}

/* Social Connect Home */
.social-connect-home h3 {
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-pale);
}
.social-icons-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
    .social-icons-home {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
.social-icon-home {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--gray-lt);
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: all 0.3s;
}
@media (max-width: 480px) {
    .social-icon-home {
        padding: 0.6rem 0.85rem;
    }
}
.social-icon-home i {
    font-size: 1.1rem;
    width: 24px;
}
.social-icon-home span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}
@media (max-width: 480px) {
    .social-icon-home span {
        font-size: 0.8rem;
    }
}
.social-icon-home.facebook:hover {
    border-color: #1877f2;
    background: rgba(24,119,242,.05);
}
.social-icon-home.facebook:hover i {
    color: #1877f2;
}
.social-icon-home.twitter:hover {
    border-color: #000;
    background: rgba(0,0,0,.05);
}
.social-icon-home.twitter:hover i {
    color: #000;
}
.social-icon-home.instagram:hover {
    border-color: #c13584;
    background: rgba(193,53,132,.05);
}
.social-icon-home.instagram:hover i {
    color: #c13584;
}
.social-icon-home.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37,211,102,.05);
}
.social-icon-home.whatsapp:hover i {
    color: #25D366;
}

/* Support Note */
.support-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gold-pale);
    border-radius: var(--r-md);
    margin-top: 1rem;
}
@media (max-width: 480px) {
    .support-note {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    .support-note i {
        font-size: 1rem;
    }
    .support-note div {
        font-size: 0.7rem;
    }
}
.support-note i {
    font-size: 1.2rem;
    color: var(--gold-d);
}
.support-note div {
    font-size: 0.8rem;
    color: var(--text-lt);
}
.support-note strong {
    color: var(--near-black);
}

/* ============================================================
   NEWSLETTER SECTION STYLES
   ============================================================ */
.section-newsletter {
    background: linear-gradient(135deg, var(--near-black) 0%, #1a2a3a 100%);
    padding: 60px 2rem;
    position: relative;
    overflow: hidden;
}
.section-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.section-newsletter::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(190,151,24,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190,151,24,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.newsletter-wrapper {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.newsletter-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.newsletter-title {
    font-family: var(--f-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
    .newsletter-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.3rem;
    }
}

.newsletter-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
@media (max-width: 480px) {
    .newsletter-subtitle {
        font-size: 0.85rem;
    }
}

.newsletter-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--r-md);
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}
.newsletter-alert.success {
    background: rgba(22,163,74,0.15);
    border: 1px solid rgba(22,163,74,0.3);
    color: #86efac;
}
.newsletter-alert.error {
    background: rgba(220,38,38,0.15);
    border: 1px solid rgba(220,38,38,0.3);
    color: #fca5a5;
}
.newsletter-alert i {
    font-size: 1rem;
}

.newsletter-form {
    background: rgba(255,255,255,0.05);
    border-radius: var(--r-lg);
    padding: 0.25rem;
    backdrop-filter: blur(10px);
}
.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}
@media (max-width: 640px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    .newsletter-form {
        padding: 1rem;
    }
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-md);
    font-family: var(--f-body);
    font-size: 0.95rem;
    color: var(--white);
    transition: all 0.3s;
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}
.newsletter-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-btn {
    padding: 0 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    border: none;
    border-radius: var(--r-md);
    font-family: var(--f-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--near-black);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .newsletter-btn {
        padding: 0.85rem 1.5rem;
        justify-content: center;
    }
}
.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

.newsletter-note {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.newsletter-note i {
    font-size: 0.65rem;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media(max-width:768px){
  .hide-mobile {
    display:none !important;
  }
}
@media(min-width:769px){
  .show-mobile {
    display:none !important;
  }
}

/* Print styles */
@media print {
  .nav, .footer, .cta-section, .hero-btns, .scroll-cue {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .hero {
    min-height: auto;
    padding: 20px;
  }
  .section {
    padding: 20px;
  }
}