/* ═══════════════════════════════════════════════════════════
   G.A.J.F — Great Achievers Judith Foundation
   Main stylesheet
   Color tokens preserved from original design:
   --blue:#1B4F8A  --blue-dark:#123670  --purple:#7B3FA0  --orange:#E8721A
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Brand palette (preserved) */
  --blue: #1B4F8A;
  --blue-dark: #123670;
  --blue-light: #e8f0fb;
  --purple: #7B3FA0;
  --purple-dark: #5a2080;
  --orange: #E8721A;
  --orange-dark: #c05518;
  --orange-light: #fef0e6;
  --green: #22863a;
  --green-light: #e8f8ee;
  --fb: #1877F2;
  --navy: #0d2a55;

  /* Neutrals */
  --white: #fff;
  --cream: #fafaf7;
  --text: #1a1a2e;
  --muted: #5c6478;
  --border: #e2e6f0;

  /* Effects */
  --shadow-sm: 0 4px 20px rgba(27, 79, 138, .08);
  --shadow-md: 0 12px 40px rgba(27, 79, 138, .12);
  --shadow-lg: 0 24px 70px rgba(27, 79, 138, .16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --transition: .3s ease;

  --container: 1140px;
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--blue-dark);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 6px;
  z-index: 999;
  text-decoration: none;
  font-size: .85rem;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* Focus visible (a11y) */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ═══ ANIMATIONS ═══ */
.reveal, .reveal-l, .reveal-r { opacity: 0; transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.reveal { transform: translateY(36px); }
.reveal-l { transform: translateX(-44px); }
.reveal-r { transform: translateX(44px); }
.reveal.on, .reveal-l.on, .reveal-r.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; }
}

/* ═══ NAVIGATION ═══ */
header { position: relative; }
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(18, 54, 112, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .3s, background .3s, height .3s;
}
#nav.scrolled {
  background: rgba(10, 28, 65, .99);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .35);
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img {
  height: 62px; width: 62px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}
.logo-text .name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.logo-text .loc {
  font-size: .63rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .87rem;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.hb {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hb span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.hb[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hb[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hb[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ═══ */
#hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  animation: hzoom 14s ease-in-out infinite alternate;
}
@keyframes hzoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(10, 28, 65, .92) 0%, rgba(18, 54, 112, .72) 55%, rgba(123, 63, 160, .28) 100%);
}
.hero-c { position: relative; z-index: 2; padding: 9rem 4rem 5rem; max-width: 780px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 114, 26, .18);
  border: 1px solid rgba(232, 114, 26, .45);
  color: #f4a05a;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fid .8s .2s both;
}
.pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2s infinite;
}
@keyframes fid { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.5); } }
h1.ht {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  animation: fiu .9s .4s both;
}
h1.ht em { font-style: normal; color: #f4a05a; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  max-width: 580px;
  margin-bottom: 2.5rem;
  animation: fiu .9s .6s both;
}
@keyframes fiu { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hbtns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fiu .9s .8s both;
}
.btn-o {
  background: var(--orange);
  color: #fff;
  padding: .88rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-o:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(232, 114, 26, .4); }
.btn-gh {
  border: 2px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: .88rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gh:hover { border-color: #fff; background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.hstats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 2.5rem;
  animation: fiu .9s 1s both;
}
.hstat .n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #f4a05a;
  line-height: 1;
  display: block;
}
.hstat .l {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .2rem;
}
.scroll-ind {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fiu 1s 1.4s both;
  cursor: pointer;
  text-decoration: none;
}
.scroll-ind span { font-size: .67rem; color: rgba(255, 255, 255, .45); letter-spacing: .1em; text-transform: uppercase; }
.scroll-arr {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  animation: sbounce 2s infinite;
}
@keyframes sbounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ═══ MARQUEE ═══ */
.mq { background: var(--orange); padding: .75rem 0; overflow: hidden; }
.mq-track { display: flex; animation: mq 30s linear infinite; white-space: nowrap; width: max-content; }
.mq-track span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 1.5rem;
}
.mq-track .sep { color: rgba(255, 255, 255, .4); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══ SECTION LAYOUT ═══ */
.sec { padding: 6rem 4rem; }
.wrap { max-width: var(--container); margin: 0 auto; }
.sec-cream { background: var(--cream); }
.sec-white { background: #fff; }
.sec-impact { background: linear-gradient(135deg, #0a1e3a 0%, var(--blue) 60%, #2d1b69 100%); }
.sec-video { background: #0a1e3a; padding: 3rem 4rem; }
.sec-team { background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%); }

.tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
  display: block;
}
.stitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.stitle span { color: var(--purple); }
.slead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
}
.center { text-align: center; }
.center .slead { margin: 0 auto; }
.section-head { margin-bottom: 2.5rem; }

/* ═══ ABOUT ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; }
.mosaic-main { grid-column: 1/3; border-radius: var(--radius-lg); overflow: hidden; height: 270px; box-shadow: var(--shadow-md); }
.mosaic-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mosaic-main:hover img { transform: scale(1.04); }
.mosaic-sm { border-radius: var(--radius-md); overflow: hidden; height: 170px; box-shadow: var(--shadow-sm); }
.mosaic-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mosaic-sm:hover img { transform: scale(1.05); }
.m-badge {
  position: absolute;
  bottom: 178px;
  right: -22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(232, 114, 26, .4);
  animation: fbadge 3s ease-in-out infinite;
}
@keyframes fbadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.m-badge .nb { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.9rem; font-weight: 700; line-height: 1; display: block; }
.m-badge .nl { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.about-text p { color: var(--muted); margin-bottom: 1.1rem; font-size: .97rem; }
.pillars { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.pillar:hover { box-shadow: 0 10px 30px rgba(27, 79, 138, .1); transform: translateX(4px); }
.picon {
  font-size: 1.2rem;
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.picon-b { background: var(--blue-light); }
.picon-p { background: #f3eafa; }
.picon-o { background: var(--orange-light); }
.pillar h4 { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: .1rem; }
.pillar p { font-size: .82rem; color: var(--muted); margin: 0; }

/* ═══ VISION / MISSION ═══ */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 4rem; }
.vm-card { border-radius: 20px; padding: 2.5rem; }
.vm-card-blue { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.vm-card-purple { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.vm-icon {
  width: 52px; height: 52px;
  background: rgba(255, 255, 255, .15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.vm-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #f4a05a;
  display: block;
  margin-bottom: .5rem;
}
.vm-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.vm-body { font-size: .95rem; color: rgba(255, 255, 255, .82); line-height: 1.8; }

/* ═══ CORE VALUES ═══ */
.cv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
}
.cv-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.cv-card:hover { box-shadow: 0 8px 24px rgba(27, 79, 138, .1); transform: translateY(-4px); }
.cv-card-wide { grid-column: span 2; }
.cv-ico { font-size: 1.8rem; margin-bottom: .7rem; }
.cv-card h4 { font-size: .9rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .3rem; }
.cv-card p { font-size: .76rem; color: var(--muted); }

/* ═══ AIMS & OBJECTIVES ═══ */
.ao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ao-lead { color: var(--muted); font-size: .97rem; margin-bottom: 1.5rem; }
.ao-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 240px;
  box-shadow: var(--shadow-md);
}
.obj-list { display: flex; flex-direction: column; gap: .85rem; list-style: none; }
.obj-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.obj-item:hover { box-shadow: 0 8px 24px rgba(27, 79, 138, .1); transform: translateX(4px); }
.obj-num {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}
.obj-num-b { background: var(--blue-light); color: var(--blue); }
.obj-num-p { background: #f3eafa; color: var(--purple); }
.obj-num-o { background: var(--orange-light); color: var(--orange); }
.obj-num-g { background: var(--green-light); color: var(--green); }
.obj-item p { font-size: .88rem; color: var(--muted); margin: 0; padding-top: .3rem; }

/* ═══ PROGRAMS ═══ */
.prog-header { text-align: center; margin-bottom: 1rem; }
.prog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.prog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform .35s, box-shadow .35s;
}
.prog-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0, 0, 0, .1); }
.prog-img { height: 240px; overflow: hidden; position: relative; }
.prog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prog-card:hover .prog-img img { transform: scale(1.08); }
.prog-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent); }
.prog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: #fff;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
}
.prog-body { padding: 1.6rem; }
.prog-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: .5rem;
}
.prog-body p { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.prog-location { font-size: .8rem; color: var(--orange); font-style: italic; font-weight: 500; margin-bottom: .5rem; }
.prog-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s, color .2s;
}
.prog-link:hover { color: var(--purple); gap: 8px; }

/* ═══ GALLERY ═══ */
#gallery { overflow: hidden; background: var(--blue-dark); }
.gallery-strip { display: flex; height: 280px; }
.gallery-strip img {
  flex: 1;
  object-fit: cover;
  opacity: .65;
  transition: opacity .4s, flex .5s ease;
  cursor: pointer;
}
.gallery-strip img:hover { opacity: 1; flex: 3.5; }

/* ═══ IMPACT ═══ */
.impact-hdr .tag { color: #f4a05a; }
.impact-hdr .stitle { color: #fff; }
.impact-hdr .slead { color: rgba(255, 255, 255, .6); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 3rem 0 4rem; }
.sbox {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background .3s, transform .3s;
}
.sbox:hover { background: rgba(255, 255, 255, .12); transform: translateY(-4px); }
.sn {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #f4a05a;
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}
.sl { font-size: .82rem; color: rgba(255, 255, 255, .6); }
.ss { font-size: .7rem; color: rgba(255, 255, 255, .3); display: block; margin-top: .2rem; }
.bars { max-width: 680px; margin: 0 auto; }
.bars h3 { text-align: center; color: rgba(255, 255, 255, .8); font-size: .95rem; font-weight: 500; margin-bottom: 2rem; }
.bar-item { margin-bottom: 1.3rem; }
.bar-meta { display: flex; justify-content: space-between; margin-bottom: .4rem; }
.bar-meta span { font-size: .82rem; color: rgba(255, 255, 255, .6); }
.bar-meta strong { font-size: .82rem; color: #f4a05a; font-weight: 600; }
.bar-track { height: 8px; background: rgba(255, 255, 255, .08); border-radius: 4px; overflow: hidden; }
.bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  width: 0;
  transition: width 1.5s cubic-bezier(.4, 0, .2, 1);
}

/* ═══ VIDEO ═══ */
.video-title { color: #fff; }
.video-title span { color: #f4a05a; }
.video-frame {
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}
.video-frame video { width: 100%; height: 260px; display: block; background: #000; object-fit: contain; }
.video-fallback { color: #fff; padding: 1rem; text-align: center; font-size: .82rem; }
.video-fallback a { color: #f4a05a; font-weight: 600; }

/* ═══ CEO PROFILE ═══ */
.ceo-top-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.ceo-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ceo-photo-wrap img { width: 100%; display: block; object-fit: cover; object-position: 50% 5%; }
.ceo-photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(18, 54, 112, .9), transparent);
  padding: 1.5rem 1.5rem 1.2rem;
}
.cap-eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #f4a05a; margin-bottom: .3rem; }
.cap-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1.2; }
.cap-org { font-size: .75rem; color: rgba(255, 255, 255, .7); margin-top: .3rem; }
.ceo-bio .tag { color: var(--orange); }
.ceo-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ceo-bio p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1.2rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.chip {
  font-size: .72rem;
  padding: .3rem .85rem;
  border-radius: 100px;
  font-weight: 600;
}
.chip-b { background: var(--blue-light); color: var(--blue); }
.chip-p { background: #f3eafa; color: var(--purple); }
.chip-o { background: var(--orange-light); color: var(--orange); }
.chip-g { background: var(--green-light); color: var(--green); }

.work-exp { margin-bottom: 4rem; }
.block-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; list-style: none; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--purple), var(--orange));
  border-radius: 2px;
}
.timeline .obj-item { margin-bottom: .7rem; margin-left: 0; }
.tl-dot {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  flex-shrink: 0;
}
.tl-dot-b { background: var(--blue-light); color: var(--blue); }
.tl-dot-p { background: #f3eafa; color: var(--purple); }
.tl-dot-o { background: var(--orange-light); color: var(--orange); }
.tl-dot-g { background: var(--green-light); color: var(--green); }
.tl-role { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.tl-meta { font-size: .8rem; color: var(--muted); margin-top: .15rem; }
.tl-when { color: var(--orange); font-weight: 600; }

.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.edu-list { display: flex; flex-direction: column; gap: .8rem; }
.edu-card { border-radius: 14px; padding: 1.2rem 1.4rem; }
.edu-card-blue { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.edu-card-purple { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.edu-card-cream { background: var(--cream); border: 1px solid var(--border); }
.edu-eyebrow { font-size: .68rem; color: #f4a05a; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.edu-eyebrow-o { color: var(--orange); margin-bottom: .5rem; }
.edu-title { font-size: .95rem; font-weight: 600; color: #fff; }
.edu-meta { font-size: .78rem; color: rgba(255, 255, 255, .7); margin-top: .2rem; }
.cert-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.cert-chips span {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .68rem;
  padding: .2rem .6rem;
  border-radius: 100px;
}

.awards-list { display: flex; flex-direction: column; gap: .8rem; }
.cert-badge {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: .9rem 1.1rem;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.cert-badge:hover { box-shadow: 0 8px 28px rgba(27, 79, 138, .1); transform: translateX(4px); }
.cbadge-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--blue-light);
}
.cbadge-icon-g { background: var(--green-light); }
.cbadge-icon-b { background: var(--blue-light); }
.cbadge-icon-o { background: var(--orange-light); }
.badge-title { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.badge-meta { font-size: .72rem; color: var(--muted); margin-top: .15rem; }

.interests-bar {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--purple));
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.interests-bar .block-title { color: #fff; margin-bottom: 0; }
.interests-chips { display: flex; gap: .75rem; flex-wrap: wrap; }
.interests-chips span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  padding: .35rem 1rem;
  border-radius: 100px;
}
.ceo-quote {
  margin-left: auto;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  max-width: 320px;
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
}

/* ═══ TEAM ═══ */
.ceo-hero {
  background: linear-gradient(135deg, #0d2548 0%, var(--blue) 50%, var(--purple) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 24px 70px rgba(27, 79, 138, .3);
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.ceo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ceo-photo {
  min-width: 120px; width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ceo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; }
.ceo-info { position: relative; z-index: 1; }
.ceo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 114, 26, .22);
  border: 1px solid rgba(232, 114, 26, .5);
  color: #f4a05a;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 100px;
  margin-bottom: .7rem;
}
.ceo-hero-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.ceo-hero-desc { font-size: .88rem; color: rgba(255, 255, 255, .75); line-height: 1.75; max-width: 520px; margin-bottom: 1rem; }
.ceo-hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.ceo-hero-tags span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  font-size: .7rem;
  padding: .25rem .8rem;
  border-radius: 100px;
}

.tier-connector { display: flex; justify-content: center; margin: -1.2rem 0; position: relative; z-index: 1; }
.tier-connector::before {
  content: '';
  width: 2px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--blue), var(--purple));
  border-radius: 2px;
}
.tier-block { margin-bottom: 2.5rem; }
.tier-label { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem; }
.tier-label::before, .tier-label::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.tier-label span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 .5rem;
}

.pro-grid { display: grid; gap: 1.4rem; }
.pro-grid-1 { grid-template-columns: repeat(1, 1fr); max-width: 280px; margin: 0 auto; }
.pro-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 840px; margin: 0 auto; }
.pro-grid-4 { grid-template-columns: repeat(4, 1fr); max-width: 1120px; margin: 0 auto; }

.pro-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 79, 138, .08), 0 1px 4px rgba(0, 0, 0, .06);
  border: 1px solid #e8eef8;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27, 79, 138, .16), 0 4px 12px rgba(0, 0, 0, .08);
}
.pro-card-top {
  padding: 2rem 1.5rem 1.2rem;
  display: flex;
  justify-content: center;
  position: relative;
  border-top: 4px solid;
}
.pro-card-blue .pro-card-top { border-top-color: var(--blue); background: #f0f5ff; }
.pro-card-purple .pro-card-top { border-top-color: var(--purple); background: #f8f2ff; }
.pro-card-blue-dark .pro-card-top { border-top-color: var(--blue-dark); background: #eef3fb; }
.pro-card-navy .pro-card-top { border-top-color: var(--navy); background: #eef3fb; }
.pro-card-green .pro-card-top { border-top-color: var(--green); background: #f0faf3; }
.pro-card-orange .pro-card-top { border-top-color: var(--orange); background: #fff7f0; }
.pro-card-fb .pro-card-top { border-top-color: var(--fb); background: #edf4ff; }
.pro-card-orange-dark .pro-card-top { border-top-color: var(--orange-dark); background: #fff3ee; }
.pro-photo-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  transition: transform .3s;
}
.pro-card:hover .pro-photo-ring { transform: scale(1.04); }
.pro-card-blue .pro-photo-ring { border: 3px solid rgba(27, 79, 138, .19); box-shadow: 0 0 0 4px rgba(27, 79, 138, .08), 0 8px 24px rgba(0, 0, 0, .1); }
.pro-card-purple .pro-photo-ring { border: 3px solid rgba(123, 63, 160, .19); box-shadow: 0 0 0 4px rgba(123, 63, 160, .08), 0 8px 24px rgba(0, 0, 0, .1); }
.pro-card-blue-dark .pro-photo-ring { border: 3px solid rgba(18, 54, 112, .19); box-shadow: 0 0 0 4px rgba(18, 54, 112, .08), 0 8px 24px rgba(0, 0, 0, .1); }
.pro-card-navy .pro-photo-ring { border: 3px solid rgba(13, 42, 85, .19); box-shadow: 0 0 0 4px rgba(13, 42, 85, .08), 0 8px 24px rgba(0, 0, 0, .1); }
.pro-card-green .pro-photo-ring { border: 3px solid rgba(34, 134, 58, .19); box-shadow: 0 0 0 4px rgba(34, 134, 58, .08), 0 8px 24px rgba(0, 0, 0, .1); }
.pro-card-orange .pro-photo-ring { border: 3px solid rgba(232, 114, 26, .19); box-shadow: 0 0 0 4px rgba(232, 114, 26, .08), 0 8px 24px rgba(0, 0, 0, .1); }
.pro-card-fb .pro-photo-ring { border: 3px solid rgba(24, 119, 242, .19); box-shadow: 0 0 0 4px rgba(24, 119, 242, .08), 0 8px 24px rgba(0, 0, 0, .1); }
.pro-card-orange-dark .pro-photo-ring { border: 3px solid rgba(192, 85, 24, .19); box-shadow: 0 0 0 4px rgba(192, 85, 24, .08), 0 8px 24px rgba(0, 0, 0, .1); }
.pro-photo-ring img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; border-radius: 50%; }
.pro-card-body { padding: .8rem 1.2rem 1rem; text-align: center; flex: 1; }
.pro-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.pro-role-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .3rem .85rem;
  border-radius: 100px;
  line-height: 1.4;
  border: 1px solid;
}
.pro-role-blue { background: rgba(27, 79, 138, .08); color: var(--blue); border-color: rgba(27, 79, 138, .19); }
.pro-role-purple { background: rgba(123, 63, 160, .08); color: var(--purple); border-color: rgba(123, 63, 160, .19); }
.pro-role-blue-dark { background: rgba(18, 54, 112, .08); color: var(--blue-dark); border-color: rgba(18, 54, 112, .19); }
.pro-role-navy { background: rgba(13, 42, 85, .08); color: var(--navy); border-color: rgba(13, 42, 85, .19); }
.pro-role-green { background: rgba(34, 134, 58, .08); color: var(--green); border-color: rgba(34, 134, 58, .19); }
.pro-role-orange { background: rgba(232, 114, 26, .08); color: var(--orange); border-color: rgba(232, 114, 26, .19); }
.pro-role-fb { background: rgba(24, 119, 242, .08); color: var(--fb); border-color: rgba(24, 119, 242, .19); }
.pro-role-orange-dark { background: rgba(192, 85, 24, .08); color: var(--orange-dark); border-color: rgba(192, 85, 24, .19); }
.pro-card-footer { padding: .6rem 1.2rem; text-align: center; border-top: 1px solid; }
.pro-card-footer span { font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.pro-foot-blue { border-top-color: rgba(27, 79, 138, .13); background: #f0f5ff; }
.pro-foot-blue span { color: var(--blue); }
.pro-foot-purple { border-top-color: rgba(123, 63, 160, .13); background: #f8f2ff; }
.pro-foot-purple span { color: var(--purple); }
.pro-foot-blue-dark { border-top-color: rgba(18, 54, 112, .13); background: #eef3fb; }
.pro-foot-blue-dark span { color: var(--blue-dark); }
.pro-foot-navy { border-top-color: rgba(13, 42, 85, .13); background: #eef3fb; }
.pro-foot-navy span { color: var(--navy); }
.pro-foot-green { border-top-color: rgba(34, 134, 58, .13); background: #f0faf3; }
.pro-foot-green span { color: var(--green); }
.pro-foot-orange { border-top-color: rgba(232, 114, 26, .13); background: #fff7f0; }
.pro-foot-orange span { color: var(--orange); }
.pro-foot-fb { border-top-color: rgba(24, 119, 242, .13); background: #edf4ff; }
.pro-foot-fb span { color: var(--fb); }
.pro-foot-orange-dark { border-top-color: rgba(192, 85, 24, .13); background: #fff3ee; }
.pro-foot-orange-dark span { color: var(--orange-dark); }

.group-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  position: relative;
  margin-top: 2.5rem;
}
.group-photo-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
  height: 360px;
  transition: transform .5s;
}
.group-photo-wrap:hover img { transform: scale(1.02); }
.group-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(18, 54, 112, .9) 0%, rgba(18, 54, 112, .3) 60%, transparent 100%);
  padding: 2rem 2.5rem 1.8rem;
}
.group-overlay .cap-name { font-size: 1.35rem; }

/* ═══ SUBSIDIARIES ═══ */
.sub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.sub-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background .3s, transform .3s;
}
.sub-card:hover { background: rgba(255, 255, 255, .13); transform: translateY(-6px); }
.sub-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.sub-icon-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.sub-icon-purple { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.sub-icon-green { background: linear-gradient(135deg, var(--green), #166128); }
.sub-icon-fb { background: linear-gradient(135deg, var(--fb), #0d5bbc); }
.sub-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.sub-body { font-size: .83rem; color: rgba(255, 255, 255, .6); line-height: 1.75; margin-bottom: 0; }

/* ═══ CERTIFICATION ═══ */
.cert-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.cert-text { color: var(--muted); margin-bottom: 1.2rem; font-size: .97rem; }
.cert-badges { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; }
.cert-badges .cert-badge { align-items: center; }
.cert-badge h4 { font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: .1rem; }
.cert-badge p { font-size: .78rem; color: var(--muted); margin: 0; }
.cert-img-wrap { position: relative; }
.cert-frame {
  background: #fff;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .14);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cert-frame::before {
  content: 'VERIFIED';
  position: absolute;
  top: 18px; right: -28px;
  background: var(--green);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .3rem 2.5rem;
  transform: rotate(45deg);
  z-index: 2;
}
.cert-frame img { width: 100%; border-radius: var(--radius-md); display: block; border: 1px solid var(--border); }
.cert-stamp {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-dark), var(--purple));
  color: #fff;
  border-radius: 100px;
  padding: .55rem 1.6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(27, 79, 138, .3);
}
.reg-card {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--purple));
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rc-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, .15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}
.rc-eyebrow { font-size: .7rem; color: rgba(255, 255, 255, .6); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .2rem; }
.rc-info .rn { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #f4a05a; line-height: 1; }
.rc-info .rd { font-size: .78rem; color: rgba(255, 255, 255, .75); margin-top: .2rem; }

/* ═══ SOCIAL ═══ */
.social-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; max-width: 1080px; margin: 2.5rem auto 0; }
.sc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  padding: 2rem 1rem 1.8rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1.5px solid var(--border);
  background: var(--cream);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.sc::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s; }
.sc-fb::before { background: linear-gradient(135deg, #1877F2, #0d5bbc); }
.sc-ig::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sc-yt::before { background: linear-gradient(135deg, #FF0000, #cc0000); }
.sc-wa::before { background: linear-gradient(135deg, #25D366, #128C7E); }
.sc-tiktok::before { background: linear-gradient(135deg, #010101, #25F4EE, #FE2C55); }
.sc:hover::before { opacity: 1; }
.sc:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0, 0, 0, .12); border-color: transparent; }
.sc:hover .si, .sc:hover .sc-h, .sc:hover .sc-p { color: #fff !important; }
.si {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  position: relative;
  z-index: 1;
}
.sc:hover .si { transform: scale(1.1); background: rgba(255, 255, 255, .2) !important; }
.sc-fb .si { background: #1877F2; }
.sc-ig .si { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sc-yt .si { background: #FF0000; }
.sc-wa .si { background: #25D366; }
.sc-tiktok .si { background: #010101; }
.si svg { width: 28px; height: 28px; }
.sc-h { font-size: .95rem; font-weight: 600; color: var(--text); transition: color .3s; position: relative; z-index: 1; }
.sc-p { font-size: .76rem; color: var(--muted); text-align: center; transition: color .3s; position: relative; z-index: 1; }
.sc-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 100px;
  z-index: 2;
}

/* ═══ DONATE ═══ */
.donate-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.dl p { color: var(--muted); margin-bottom: 1.5rem; font-size: .97rem; }
.tlist { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; list-style: none; }
.titem { display: flex; gap: .75rem; align-items: center; font-size: .88rem; color: var(--muted); }
.tdot {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}
.acc-box { background: linear-gradient(135deg, var(--blue-dark), var(--purple)); border-radius: var(--radius-lg); padding: 1.5rem 1.8rem; }
.acc-lbl { font-size: .7rem; color: rgba(255, 255, 255, .55); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.acc-bank { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: .2rem; }
.acc-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; font-weight: 700; color: #f4a05a; letter-spacing: .1em; margin-bottom: .2rem; }
.acc-name { font-size: .85rem; color: rgba(255, 255, 255, .8); }
.copy-btn {
  margin-top: .9rem;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: .45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.copy-btn:hover { background: rgba(255, 255, 255, .28); }
.dcard {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: 0 16px 60px rgba(27, 79, 138, .07);
}
.dcard h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; color: var(--blue-dark); margin-bottom: .3rem; }
.dsub { font-size: .83rem; color: var(--muted); margin-bottom: 1.5rem; }
.amt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-bottom: 1.5rem; }
.ab {
  border: 1.5px solid var(--border);
  background: none;
  border-radius: var(--radius-sm);
  padding: .7rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
.ab:hover, .ab.active { border-color: var(--orange); background: var(--orange-light); color: var(--orange); }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: .4rem; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27, 79, 138, .1); }
.fg input:user-invalid, .fg textarea:user-invalid { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229, 62, 62, .08); }
.steps {
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
}
.steps p { font-size: .8rem; color: var(--muted); margin: .2rem 0; }
.steps strong { color: var(--blue-dark); }
.wabtn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: .98rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wabtn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 211, 102, .35); }
.wabtn svg { width: 22px; height: 22px; }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-lead { color: var(--muted); font-size: .95rem; margin-bottom: .5rem; }
.cdetails { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.citem { display: flex; gap: 1rem; align-items: flex-start; }
.cicon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background .2s, transform .2s;
}
.citem:hover .cicon { background: var(--blue); transform: scale(1.1); }
.citem h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .15rem; }
.citem p { font-size: .875rem; color: var(--muted); }
.citem a { color: var(--muted); text-decoration: none; transition: color .2s; }
.citem a:hover { color: var(--orange); }
.cform { background: var(--cream); border-radius: 20px; padding: 2.5rem; border: 1px solid var(--border); }
.cform .fg input, .cform .fg textarea { background: #fff; }
.cform .fg textarea { height: 130px; resize: vertical; }
.crow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sbtn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: .95rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.sbtn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 211, 102, .35); }
.sbtn svg { width: 20px; height: 20px; }

/* ═══ FOOTER ═══ */
footer { background: #07142b; padding: 5rem 4rem 2rem; color: rgba(255, 255, 255, .5); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: var(--container); margin: 0 auto 3rem; }
.fbrand img { height: 68px; width: 68px; object-fit: cover; background: #fff; border-radius: 50%; padding: 3px; margin-bottom: 1rem; box-shadow: 0 4px 16px rgba(0, 0, 0, .3); display: block; }
.flogo { display: flex; align-items: center; gap: 1rem; }
.fbrand h3, .fname { font-family: 'Cormorant Garamond', Georgia, serif; color: #fff; font-size: 1.1rem; margin-bottom: .4rem; }
.ftag { font-size: .7rem; color: rgba(255, 255, 255, .5); letter-spacing: .1em; text-transform: uppercase; }
.fdesc { font-size: .85rem; line-height: 1.7; max-width: 320px; margin-bottom: 1.5rem; }
.fsocs { display: flex; gap: .7rem; }
.fsoc {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.fsoc:hover { opacity: .85; transform: translateY(-2px); }
.fsoc svg { width: 18px; height: 18px; }
.fcol h4 { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255, 255, 255, .85); margin-bottom: 1.2rem; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.fcol a { color: rgba(255, 255, 255, .45); text-decoration: none; font-size: .875rem; transition: color .2s; }
.fcol a:hover { color: var(--orange); }
.fbot {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .77rem;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}
.fbot span { color: var(--orange); }

/* ═══ FLOATING WHATSAPP ═══ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 300;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  animation: wap 2.5s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes wap { 0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, .45); } 50% { box-shadow: 0 6px 40px rgba(37, 211, 102, .75); } }
.wa-float svg { width: 28px; height: 28px; }

/* ═══ SCROLL-TO-TOP ═══ */
.scroll-top {
  position: fixed;
  bottom: 6rem; right: 2rem;
  z-index: 300;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--purple); }
.scroll-top svg { width: 22px; height: 22px; }

/* ═══ TOAST ═══ */
.toast {
  position: fixed;
  bottom: 6rem; right: 2rem;
  z-index: 999;
  background: var(--blue-dark);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  border-left: 4px solid var(--orange);
  transform: translateY(120px);
  opacity: 0;
  transition: .45s cubic-bezier(.34, 1.56, .64, 1);
  max-width: 320px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — single, consolidated breakpoint system
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sec, .sec-impact, .sec-cream, .sec-white, .sec-video, .sec-team { padding-left: 2rem; padding-right: 2rem; }
  #nav { padding: 0 2rem; }
}

@media (max-width: 960px) {
  html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; }

  /* NAV */
  #nav { padding: 0 1.2rem !important; height: 72px !important; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    width: 100%;
    background: rgba(10, 28, 65, .99);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, .07); width: 100%; }
  .nav-links a { display: block; padding: .85rem 1.5rem !important; font-size: .9rem; }
  .nav-links a::after { display: none; }
  .nav-cta { text-align: center; margin: .5rem 1.5rem; }
  .hb { display: flex !important; }
  .logo img { height: 46px !important; width: 46px !important; }
  .logo-text .name { font-size: .82rem !important; }
  .logo-text .loc { font-size: .58rem !important; }

  /* HERO */
  .hero-c { padding: 7rem 1.2rem 4rem !important; max-width: 100% !important; }
  h1.ht { font-size: 2.2rem !important; }
  .hero-desc { font-size: .92rem !important; }
  .hbtns { flex-direction: column !important; }
  .btn-o, .btn-gh { width: 100%; text-align: center; justify-content: center; }
  .hstats { gap: 1.5rem !important; }
  .hstat .n { font-size: 1.8rem !important; }
  .scroll-ind { display: none; }

  /* SECTIONS */
  .sec, .sec-impact, .sec-cream, .sec-white, .sec-video, .sec-team { padding: 3.5rem 1.2rem !important; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .mosaic { grid-template-columns: 1fr 1fr !important; }
  .mosaic-main { height: 200px !important; }
  .mosaic-sm { height: 130px !important; }
  .m-badge { display: none !important; }

  /* VISION/MISSION */
  .vm-grid { grid-template-columns: 1fr !important; gap: 1.2rem !important; }

  /* CORE VALUES */
  .cv-grid { grid-template-columns: 1fr 1fr !important; gap: .8rem !important; }
  .cv-card-wide { grid-column: span 1 !important; }

  /* AIMS */
  .ao-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* PROGRAMS */
  .prog-grid { grid-template-columns: 1fr !important; gap: 1.2rem !important; }

  /* GALLERY */
  .gallery-strip { height: 160px !important; }

  /* IMPACT */
  .stats-row { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
  .bars { padding: 0 .5rem; }

  /* SUBSIDIARIES */
  .sub-grid { grid-template-columns: 1fr !important; gap: 1.2rem !important; }

  /* TEAM */
  .pro-grid-3, .pro-grid-4 { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; gap: 1rem !important; }
  .pro-grid-1 { max-width: 100% !important; }

  /* CEO PROFILE */
  .ceo-top-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .edu-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .interests-bar { flex-direction: column; text-align: center; align-items: center; gap: 1rem; }
  .ceo-quote { margin-left: 0; }

  /* CERTIFICATION */
  .cert-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .cert-frame::before { display: none; }
  .cert-stamp { font-size: .6rem !important; padding: .4rem 1rem !important; }

  /* SOCIAL */
  .social-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }

  /* DONATE */
  .donate-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .amt-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .crow { grid-template-columns: 1fr !important; }

  /* FOOTER */
  footer { padding: 3rem 1.2rem 1.5rem !important; }
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
  .fbot { flex-direction: column !important; text-align: center !important; gap: .5rem !important; }

  .wrap { padding: 0 !important; max-width: 100% !important; }
  .center { text-align: center !important; }
}

@media (min-width: 600px) and (max-width: 960px) {
  .social-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 480px) {
  h1.ht { font-size: 1.9rem !important; }
  .stitle { font-size: 1.6rem !important; }
  .cv-grid { grid-template-columns: 1fr !important; }
  .stats-row { grid-template-columns: 1fr 1fr !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .mosaic { grid-template-columns: 1fr !important; }
  .mosaic-sm { height: 160px !important; }
  .acc-num { font-size: 1.5rem !important; letter-spacing: .05em !important; }
  .hero-c { padding: 6rem 1rem 3rem !important; }
  #nav { padding: 0 1rem !important; }
  .pro-grid-3, .pro-grid-4 { grid-template-columns: 1fr 1fr !important; gap: .7rem !important; }
  .pro-photo-ring { width: 85px !important; height: 85px !important; }
  .pro-name { font-size: .88rem !important; }
  .social-grid { grid-template-columns: 1fr 1fr !important; }
  .scroll-top { bottom: 5.5rem; right: 1rem; }
  .wa-float { right: 1rem; bottom: 1.5rem; }
  .toast { right: 1rem; left: 1rem; max-width: none; }
}
