/* ==========================================================================
   GVSS - Main Stylesheet (Blue & White, PANI-style layout)
   ========================================================================== */

:root {
  /* Blue palette */
  --blue-900: #0a3270;
  --blue-800: #0e4490;
  --blue-700: #1554b3;
  --blue-600: #1e6bd6;
  --blue-500: #2b85f0;
  --blue-400: #5ba3f5;
  --blue-200: #b8d6fa;
  --blue-100: #e3eefd;
  --blue-50:  #f4f8fe;

  --white: #ffffff;
  --off-white: #fafbfd;
  --ink: #0f1c3a;
  --text: #2a3654;
  --muted: #5a6783;
  --line: #e6ecf5;
  --gold: #f4b740;

  --shadow-sm: 0 2px 6px rgba(10, 50, 112, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 50, 112, 0.10);
  --shadow-lg: 0 18px 50px rgba(10, 50, 112, 0.14);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1200px;
}

/* ----- Base ----- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-600); }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-head); color: var(--ink); margin: 0 0 0.7em; line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem);color:#ffffff; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.bg-tint { background: var(--blue-50); }
.bg-white { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
  position: relative;
  padding: 0px;
}

/*.eyebrow::before, .eyebrow::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  width: 28px;*/
/*  height: 2px;*/
/*  background: var(--blue-600);*/
/*}*/
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { color: var(--muted); }

.text-center { text-align: center; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  text-decoration: none;
  font-family: var(--ff-body);
}
.btn-primary { background: var(--blue-600); color: var(--white); }
.btn-primary:hover { background: var(--blue-700); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light { background: var(--white); color: var(--blue-700); }
.btn-light:hover { background: var(--blue-50); color: var(--blue-700); transform: translateY(-2px); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--blue-700); }
.btn-dark-outline { border-color: var(--blue-700); color: var(--blue-700); background: transparent; }
.btn-dark-outline:hover { background: var(--blue-700); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ----- Topbar ----- */
.topbar {
  background: var(--blue-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-info a { color: rgba(255,255,255,0.85); }
.topbar-info a:hover { color: var(--white); }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.78rem;
}
.topbar-social a:hover { background: var(--blue-600); }

/* ----- Header / Navigation ----- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(10, 50, 112, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding:0; gap: 30px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  width: 58px; height: 58px;
  
  /*background: var(--blue-700);*/
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  box-shadow: 0 6px 16px rgba(21, 84, 179, 0.30);
}
.brand-text { line-height: 1.15; }
.brand-name { font-family: var(--ff-head); font-weight: 700; color: var(--ink); font-size: 1.18rem; }
.brand-tag { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { list-style: none; position: relative; }
.main-nav ul { list-style: none; padding: 0; margin: 0; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}
.main-nav > li > a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform .25s;
}
.main-nav > li:hover > a::after,
.main-nav > li > a.active::after { transform: scaleX(1); }
.main-nav > li:hover > a { color: var(--blue-700); }

.has-sub > a > i { font-size: 0.7rem; transition: transform .2s; }
.has-sub:hover > a > i { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 240px;
  background: var(--white);
  border-top: 3px solid var(--blue-600);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s;
  z-index: 110;
  border-radius: 0 0 var(--radius) var(--radius);
}
.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a {
  display: block;
  padding: 10px 22px;
  font-size: 0.88rem;
  color: var(--text);
  border-left: 3px solid transparent;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}
.submenu li a:hover { background: var(--blue-50); color: var(--blue-700); border-left-color: var(--blue-600); }

.btn-donate {
  background: var(--blue-600);
  color: var(--white) !important;
  border-radius: 999px;
  padding: 11px 26px !important;
  margin-left: 10px;
  letter-spacing: 0.04em !important;
  font-weight: 700 !important;
}
.btn-donate::after { display: none !important; }
.btn-donate:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--blue-700); color: var(--white);
  border: none; border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-600) 100%);
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.10) 0, transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(244,183,64,0.14) 0, transparent 42%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .highlight { color: var(--blue-200); font-style: italic; }
.hero-sub { font-size: 1.08rem; max-width: 540px; margin-bottom: 32px; color: rgba(255,255,255,0.92); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
}
.hero-card-title { font-family: var(--ff-head); font-size: 1.2rem; text-align: center; margin-bottom: 20px; color: var(--white); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-stat {
  background: rgba(255,255,255,0.08);
  padding: 22px 14px;
  border-radius: var(--radius);
  text-align: center;
}
.hero-stat-num {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blue-200);
  line-height: 1;
}
.hero-stat-label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 8px; }

/* ----- Page header (inner pages) ----- */
.page-header {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(184,214,250,0.16) 0, transparent 45%);
  pointer-events: none;
}
.page-header h1 { color: var(--white); margin-bottom: 14px; font-size:40px; }
.breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.86); display: inline-flex; gap: 10px; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.86); }
.breadcrumb a:hover { color: var(--white); }

/* ----- Intro grid (image + text alternating) ----- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.intro-grid.flipped { grid-template-columns: 1.1fr 1fr; }
.intro-grid.flipped .intro-image { order: 2; }

.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 5 / 4;
 /* background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); */
  background-image: url('/assets/image/about-gvss.png');
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.intro-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.intro-image .placeholder-icon { font-size: 5rem; opacity: 0.5; }
.intro-image .frame-deco {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 100%; height: 100%;
  border: 4px solid var(--blue-600);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.corner-badge {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--white);
  color: var(--blue-700);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.corner-badge strong { font-size: 1.3rem; display: block; }

.intro-text h2 { margin-bottom: 16px; }
.intro-text p { color: var(--text); }
.intro-list { list-style: none; padding: 0; margin: 24px 0; }
.intro-list li {
  padding: 8px 0 8px 36px;
  position: relative;
  color: var(--text);
}
.intro-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 8px;
  width: 24px; height: 24px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ----- Feature cards ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 72px; height: 72px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  transition: all .3s;
}
.feature-card:hover .feature-icon { background: var(--blue-700); color: var(--white); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ----- Impact band ----- */
.impact-section {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 50%, rgba(184,214,250,0.12) 0, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(244,183,64,0.10) 0, transparent 50%);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.impact-stat { padding: 14px 18px; position: relative; }
.impact-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 12%; height: 76%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}
.impact-num {
  font-family: var(--ff-head);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--blue-200);
  line-height: 1;
}
.impact-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 14px;
}

/* ----- Program / Cause cards ----- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  border: 1px solid var(--line);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px;
  position: relative;
}
.program-img i { font-size: 3.2rem; opacity: 0.92; margin-bottom: 10px; }
.program-img .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--blue-700);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.program-body { padding: 24px 24px 26px; }
.program-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.program-body p { color: var(--muted); font-size: 0.93rem; margin-bottom: 18px; }
.progress {
  height: 8px;
  background: var(--blue-50);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
  border-radius: 999px;
}
.progress-info { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }
.progress-info strong { color: var(--ink); font-weight: 700; }

/* ----- Timeline ----- */
.timeline {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue-200);
  transform: translateX(-50%);
}
.timeline-item { position: relative; padding: 22px 0; display: grid; grid-template-columns: 1fr 80px 1fr; }
.timeline-item:nth-child(even) .timeline-card { grid-column: 3; }
.timeline-item:nth-child(odd)  .timeline-card { grid-column: 1; text-align: right; }
.timeline-dot {
  grid-column: 2;
  width: 22px; height: 22px;
  background: var(--blue-600);
  border: 5px solid var(--white);
  border-radius: 50%;
  margin: 14px auto 0;
  box-shadow: 0 0 0 3px var(--blue-200);
  position: relative; z-index: 2;
}
.timeline-card {
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--blue-600);
}
.timeline-year {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.timeline-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ----- CTA banner ----- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.10) 0, transparent 50%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-banner p { font-size: 1.05rem; max-width: 600px; margin: 0 auto 30px; opacity: 0.92; position: relative; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ----- Forms ----- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group label .req { color: #e53935; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  transition: all .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(30, 107, 214, 0.15);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231554b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 40px; }

.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text); }
.checkbox-row input { margin-top: 4px; }

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.amount-option {
  position: relative;
}
.amount-option input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.amount-option label {
  display: block;
  padding: 14px;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s;
  font-size: 0.95rem;
}
.amount-option input:checked + label,
.amount-option label:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
  color: var(--blue-700);
}
.amount-option input:checked + label { background: var(--blue-600); color: var(--white); }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert-success { background: #e7f6ec; color: #1b6b3a; border-left: 4px solid #2e9b56; }
.alert-error   { background: #fdeaea; color: #9c2424; border-left: 4px solid #d63b3b; }

/* ----- Contact aside ----- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: stretch;
}
.contact-aside {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 100% 100%, rgba(184,214,250,0.18) 0, transparent 50%);
}
.contact-aside h3 { color: var(--white); margin-bottom: 8px; position: relative; }
.contact-aside p { opacity: 0.92; position: relative; margin-bottom: 28px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  position: relative;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .ci {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail-label { font-size: 0.78rem; opacity: 0.8; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-detail-value { color: var(--white); font-weight: 600; margin-top: 2px; font-size: 0.96rem; line-height: 1.5; }
.contact-detail-value a { color: var(--white); }

/* Contact cards (top of contact page) */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-200); transform: translateY(-4px); }
.contact-card .ci {
  width: 60px; height: 60px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.contact-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ----- Gallery ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,50,112,0.85) 0%, transparent 55%);
}
.gallery-item:nth-child(3n+2) { background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); }
.gallery-item:nth-child(3n+3) { background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); }
.gallery-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}
.gallery-tag {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.gallery-title { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; }

/* ----- Document tiles (legal / annual reports) ----- */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.doc-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 64px;
  position: relative;
  transition: all .25s;
  display: block;
  color: var(--ink);
}
.doc-tile::before {
  content: '\f15c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 20px; top: 20px;
  width: 32px; height: 32px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all .25s;
}
.doc-tile:hover { border-color: var(--blue-600); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.doc-tile:hover::before { background: var(--blue-600); color: var(--white); }
.doc-tile h4 { font-size: 0.98rem; margin-bottom: 4px; color: var(--ink); font-family: var(--ff-body); font-weight: 700; }
.doc-tile span { font-size: 0.82rem; color: var(--muted); }

/* ----- Value cards ----- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: all .3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.value-card .vi {
  width: 64px; height: 64px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transform: rotate(-6deg);
  transition: transform .3s;
}
.value-card:hover .vi { transform: rotate(0); }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ----- Footer ----- */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: var(--blue-400);
}
.footer-brand-text { font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 46px; height: 46px; font-size: 1.15rem; }
.footer-brand .brand-name { color: var(--white); font-size: 1.05rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.92rem;
  transition: all .2s;
}
.footer-social a:hover { background: var(--blue-600); transform: translateY(-2px); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--blue-400);
  font-size: 0.78rem;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { font-size: 0.92rem; line-height: 1.7; }
.footer-contact p { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact i { color: var(--blue-400); margin-top: 5px; flex-shrink: 0; }

.footer-newsletter p { font-size: 0.9rem; margin-bottom: 14px; }
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: var(--blue-600);
  color: var(--white);
  border: none;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--blue-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-bottom span { color: rgba(255,255,255,0.6); }

/* ----- Back to top ----- */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all .25s;
  z-index: 80;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--blue-600); transform: translateY(-3px); }

/* ----- Quote block ----- */
.quote-block {
  background: var(--blue-50);
  border-left: 5px solid var(--blue-600);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 30px 0;
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  position: relative;
}
.quote-block::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 18px; right: 22px;
  font-size: 1.6rem;
  color: var(--blue-200);
}
.quote-block cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
  .section { padding: 60px 0; }
  .hero { padding: 70px 0 90px; }
  .hero-grid, .intro-grid, .intro-grid.flipped, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-grid.flipped .intro-image { order: 0; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .impact-stat:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 86%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 22px 30px;
    box-shadow: var(--shadow-lg);
    transition: right .3s;
    overflow-y: auto;
    gap: 0;
  }
  .main-nav.open { right: 0; }
  .main-nav > li { width: 100%; }
  .main-nav > li > a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav > li > a::after { display: none; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; padding-left: 18px; display: none; }
  .has-sub.open > .submenu { display: block; }
  .btn-donate { margin-left: 0 !important; margin-top: 12px; justify-content: center; }

  .timeline::before { left: 22px; }
  .timeline-item { grid-template-columns: 50px 1fr; }
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card { grid-column: 2; text-align: left; }
  .timeline-dot { grid-column: 1; margin-left: 12px; }
}

@media (max-width: 768px) {
  .topbar-info { font-size: 0.78rem; gap: 14px; }
  .topbar-info span:nth-child(3) { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .form-row { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-stat:not(:last-child)::after { display: none; }
  .form-card { padding: 26px 20px; }
  .brand-tag { display: none; }
  .brand-mark { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* ==========================================================================
   ENHANCED LAYOUT DENSITY - Rich Visual Sections (v3)
   ========================================================================== */

/* ----- Decorative SVG backgrounds ----- */
.deco-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.deco-dots {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, var(--blue-200) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ----- Enhanced Hero ----- */
.hero-v2 {
  position: relative;
  background: linear-gradient(135deg, #062152 0%, var(--blue-900) 40%, var(--blue-700) 100%);
  color: var(--white);
  padding: 130px 0 150px;
  overflow: hidden;
}
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(91, 163, 245, 0.18) 0, transparent 35%),
    radial-gradient(circle at 92% 80%, rgba(244, 183, 64, 0.12) 0, transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(184, 214, 250, 0.08) 0, transparent 50%);
}
.hero-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-v2 .container { position: relative; z-index: 3; }

.hero-grid-v2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Floating composition on right side of hero */
.hero-composition {
  position: relative;
  height: 480px;
}
.hero-comp-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 6rem;
  opacity: 0.9;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.hero-comp-main i { opacity: 0.4; }
.hero-comp-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 50%);
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-card .fc-icon {
  width: 48px; height: 48px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-float-card .fc-label { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.hero-float-card .fc-value { font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); }

.hero-float-1 { top: -20px; left: -30px; animation-delay: 0s; }
.hero-float-2 { top: 50%; right: -40px; animation-delay: 1.2s; }
.hero-float-3 { bottom: -10px; left: 20px; animation-delay: 2.4s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 1;
}
.hero-decoration.shape-1 {
  top: 12%; right: -20px;
  border: 3px dashed rgba(184, 214, 250, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}
.hero-decoration.shape-2 {
  bottom: 8%; left: -10px;
  background: linear-gradient(45deg, rgba(244, 183, 64, 0.3), transparent);
  border-radius: 12px;
  transform: rotate(15deg);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-tags-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.92);
}
.hero-tag i { color: var(--blue-200); }

/* ----- Stat ribbon below hero ----- */
.stat-ribbon {
  background: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(10, 50, 112, 0.15);
  padding: 36px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ribbon-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.ribbon-stat:last-child { border-right: none; }
.ribbon-stat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  color: var(--blue-700);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ribbon-stat-num {
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.ribbon-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ----- Enhanced intro composition ----- */
.intro-composition {
  position: relative;
  min-height: 540px;
  padding: 30px;
}
.intro-comp-main {
  position: absolute;
  width: 75%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--blue-700), var(--blue-500));
  border-radius: 20px;
  top: 0; left: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 50, 112, 0.25);
}
.intro-comp-main i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.3);
}
.intro-comp-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(10, 50, 112, 0.5));
}
.intro-comp-sub {
  position: absolute;
  width: 50%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--gold), #f7d075);
  border-radius: 20px;
  bottom: 0; right: 0;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(244, 183, 64, 0.3);
  border: 8px solid var(--white);
}
.intro-comp-sub i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.7);
}
.intro-comp-badge {
  position: absolute;
  top: 30px; right: -20px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(10, 50, 112, 0.18);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.intro-comp-badge i {
  width: 40px; height: 40px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.intro-comp-badge strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1;
}
.intro-comp-badge span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.intro-comp-shape {
  position: absolute;
  top: -10px; left: 60%;
  width: 80px; height: 80px;
  border: 4px solid var(--blue-200);
  border-radius: 50%;
  z-index: 0;
}
.intro-comp-dots {
  position: absolute;
  bottom: 20px; left: 60%;
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, var(--blue-300, var(--blue-400)) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 0;
  opacity: 0.5;
}

/* ----- Mini feature highlights inside text ----- */
.mini-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.mini-h {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--blue-50);
  border-radius: 12px;
  border-left: 3px solid var(--blue-600);
}
.mini-h i {
  width: 36px; height: 36px;
  background: var(--white);
  color: var(--blue-700);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.mini-h strong { display: block; color: var(--ink); font-size: 0.9rem; margin-bottom: 2px; }
.mini-h span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ----- Enhanced feature cards (richer with badge + decoration) ----- */
.feature-grid-rich {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  position: relative;
}
.feature-card-rich {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .3s;
}
.feature-card-rich::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 140px; height: 140px;
  background: var(--blue-50);
  border-radius: 50%;
  transition: all .4s;
}
.feature-card-rich::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--blue-600);
  border-radius: 0 0 4px 0;
}
.feature-card-rich:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10, 50, 112, 0.18);
  border-color: transparent;
}
.feature-card-rich:hover::before {
  transform: scale(8);
  background: var(--blue-700);
}
.feature-card-rich .fr-num {
  position: relative;
  z-index: 2;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue-600);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  transition: color .3s;
}
.feature-card-rich .fr-icon {
  position: relative;
  z-index: 2;
  width: 64px; height: 64px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: all .3s;
}
.feature-card-rich h3 {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: color .3s;
}
.feature-card-rich p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  transition: color .3s;
}
.feature-card-rich .fr-link {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}
.feature-card-rich:hover .fr-num { color: rgba(255,255,255,0.7); }
.feature-card-rich:hover .fr-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.feature-card-rich:hover h3 { color: var(--white); }
.feature-card-rich:hover p { color: rgba(255,255,255,0.85); }
.feature-card-rich:hover .fr-link { color: var(--white); }

/* ----- Program card v2 with multi-layer composition ----- */
.program-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.program-card-v2 {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 50, 112, 0.08);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.program-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10, 50, 112, 0.18);
}
.program-card-v2 .pc-visual {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  overflow: hidden;
}
.program-card-v2 .pc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(244,183,64,0.18) 0, transparent 45%);
}
.program-card-v2 .pc-visual i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.92);
}
.program-card-v2 .pc-tags {
  position: absolute;
  top: 18px; left: 18px;
  display: flex;
  gap: 8px;
}
.pc-tag {
  background: rgba(255,255,255,0.95);
  color: var(--blue-700);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.pc-tag.urgent { background: var(--gold); color: var(--ink); }
.program-card-v2 .pc-stat {
  position: absolute;
  bottom: 18px; right: 18px;
  background: rgba(10, 50, 112, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-stat strong { font-family: var(--ff-head); font-size: 0.95rem; }
.program-card-v2 .pc-body {
  padding: 26px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-card-v2 .pc-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.program-card-v2 h3 {
  font-size: 1.2rem;
  margin: 0;
  flex: 1;
}
.program-card-v2 .pc-sub {
  font-family: var(--ff-head);
  font-style: italic;
  color: var(--blue-600);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.program-card-v2 .pc-desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex: 1;
}
.program-card-v2 .pc-progress {
  margin-bottom: 18px;
}
.pc-progress-bar {
  height: 8px;
  background: var(--blue-50);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.pc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  border-radius: 999px;
  position: relative;
}
.pc-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.pc-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
}
.pc-progress-meta strong { color: var(--ink); }

.program-card-v2 .pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.program-card-v2 .pc-donors {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}
.pc-avatar-stack {
  display: flex;
}
.pc-avatar-stack span {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-200);
  border: 2px solid var(--white);
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--blue-800);
  font-weight: 700;
}
.pc-avatar-stack span:first-child { margin-left: 0; }
.pc-avatar-stack span:nth-child(2) { background: var(--blue-300, var(--blue-400)); color: var(--white); }
.pc-avatar-stack span:nth-child(3) { background: var(--blue-600); color: var(--white); }
.pc-avatar-stack span:nth-child(4) { background: var(--gold); color: var(--ink); }

/* ----- Quote/Testimonial section ----- */
.testimonial-section {
  background: var(--blue-50);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--blue-100) 0, transparent 70%);
  border-radius: 50%;
}
.testimonial-section::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--blue-100) 0, transparent 70%);
  border-radius: 50%;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: 0 10px 30px rgba(10, 50, 112, 0.06);
  transition: all .3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(10, 50, 112, 0.14);
}
.testimonial-card .tc-quote {
  position: absolute;
  top: 20px; right: 26px;
  font-size: 3rem;
  color: var(--blue-100);
  font-family: var(--ff-head);
  line-height: 1;
}
.testimonial-card .tc-stars {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testimonial-card .tc-text {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.testimonial-card .tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tc-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tc-name { font-weight: 700; color: var(--ink); font-size: 0.95rem; line-height: 1.2; }
.tc-role { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* ----- Partners / Trusted by band ----- */
.partners-band {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-head {
  text-align: center;
  margin-bottom: 30px;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-700);
  opacity: 0.6;
  transition: opacity .3s;
}
.partner-item:hover { opacity: 1; }
.partner-item i { font-size: 1.6rem; color: var(--blue-500); }

/* ----- Approach / How we work section with timeline cards ----- */
.approach-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.approach-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-600), var(--blue-200));
  z-index: 0;
}
.approach-step {
  position: relative;
  text-align: center;
  z-index: 2;
}
.approach-circle {
  width: 100px; height: 100px;
  background: var(--white);
  border: 3px solid var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
  position: relative;
  transition: all .3s;
}
.approach-step:hover .approach-circle {
  transform: translateY(-6px);
  border-color: var(--blue-600);
  box-shadow: 0 15px 30px rgba(10, 50, 112, 0.15);
}
.approach-circle::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: -8px; right: -8px;
  width: 32px; height: 32px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
}
.approach-section { counter-reset: step; }
.approach-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.approach-step p { color: var(--muted); font-size: 0.9rem; }

/* ----- Scroll reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Responsive overrides for new sections ----- */
@media (max-width: 992px) {
  .hero-v2 { padding: 80px 0 100px; }
  .hero-grid-v2 { grid-template-columns: 1fr; gap: 50px; }
  .hero-composition { height: 380px; }
  .hero-float-1, .hero-float-2, .hero-float-3 {
    padding: 14px 18px;
  }
  .hero-float-card .fc-icon { width: 40px; height: 40px; font-size: 1rem; }
  .stat-ribbon { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 24px; }
  .ribbon-stat { border-right: none; padding: 0 10px; }
  .intro-composition { min-height: 420px; }
  .approach-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .approach-grid::before { display: none; }
  .mini-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-composition { height: 320px; }
  .hero-float-2, .hero-float-3 { display: none; }
  .stat-ribbon { grid-template-columns: 1fr; margin-top: -30px; padding: 22px; }
  .ribbon-stat { padding: 12px 0; border-bottom: 1px solid var(--line); border-right: none; }
  .ribbon-stat:last-child { border-bottom: none; }
  .intro-composition { min-height: 380px; padding: 10px; }
  .intro-comp-badge { padding: 12px 16px; right: 0; }
  .intro-comp-badge strong { font-size: 1.1rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .partners-strip { gap: 24px; }
  .partner-item { font-size: 1rem; }
}

/* ==========================================================================
   HORIZONTAL TIMELINE (Milestones) — v4
   ========================================================================== */

.timeline-h-wrap {
  position: relative;
  padding: 40px 0 20px;
}

/* Horizontal scrollable strip on smaller screens; flex distribute on desktop */
.timeline-h {
  position: relative;
  display: flex;
  gap: 0;
  align-items: stretch;
  padding: 30px 0 20px;
}

/* The connecting line running through the middle */
.timeline-h::before {
  content: '';
  position: absolute;
  top: 88px;            /* aligns with the dot center */
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-200) 0%, var(--blue-600) 50%, var(--blue-200) 100%);
  z-index: 0;
}

.timeline-h-item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  z-index: 2;
}

/* The year pill at the top */
.timeline-h-year {
  display: inline-block;
  background: var(--white);
  color: var(--blue-700);
  border: 2px solid var(--blue-200);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
  transition: all .3s;
}
.timeline-h-item:hover .timeline-h-year {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
  transform: translateY(-2px);
}

/* The marker dot on the line */
.timeline-h-dot {
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 4px solid var(--blue-600);
  border-radius: 50%;
  position: relative;
  z-index: 3;
  margin-bottom: 22px;
  transition: all .3s;
  box-shadow: 0 0 0 6px rgba(184, 214, 250, 0.4);
}
.timeline-h-item:hover .timeline-h-dot {
  background: var(--blue-600);
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(184, 214, 250, 0.5);
}

/* The card below the dot */
.timeline-h-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 18px 24px;
  box-shadow: 0 8px 20px rgba(10, 50, 112, 0.06);
  border: 1px solid var(--line);
  width: 100%;
  transition: all .3s;
  position: relative;
}
.timeline-h-item:hover .timeline-h-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10, 50, 112, 0.14);
  border-color: var(--blue-200);
}

/* Optional small icon at the top of the card */
.timeline-h-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 12px;
  transition: all .3s;
}
.timeline-h-item:hover .timeline-h-icon {
  background: var(--blue-700);
  color: var(--white);
  transform: rotate(-6deg);
}

.timeline-h-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.timeline-h-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* Responsive: tablet — scroll horizontally to keep the line metaphor */
@media (max-width: 992px) {
  .timeline-h {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
  }
  .timeline-h::-webkit-scrollbar { height: 6px; }
  .timeline-h::-webkit-scrollbar-track { background: var(--blue-50); border-radius: 999px; }
  .timeline-h::-webkit-scrollbar-thumb { background: var(--blue-400); border-radius: 999px; }
  .timeline-h-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
  .timeline-h::before {
    left: 30px;
    right: auto;
    width: max-content;
  }
}

/* Mobile: stack vertically instead */
@media (max-width: 600px) {
  .timeline-h {
    flex-direction: column;
    overflow: visible;
    gap: 24px;
    padding: 20px 0;
  }
  .timeline-h::before {
    top: 0; bottom: 0;
    left: 30px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--blue-200), var(--blue-600), var(--blue-200));
  }
  .timeline-h-item {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 0 70px;
    position: relative;
    scroll-snap-align: none;
  }
  .timeline-h-year {
    position: absolute;
    top: 0; left: 0;
    margin-bottom: 0;
    background: var(--blue-700);
    color: var(--white);
    border-color: var(--blue-700);
    font-size: 0.78rem;
    padding: 6px 12px;
    min-width: 60px;
    text-align: center;
  }
  .timeline-h-dot {
    position: absolute;
    left: 22px;
    top: 38px;
    margin-bottom: 0;
    width: 18px;
    height: 18px;
    border-width: 3px;
  }
  .timeline-h-icon { margin: 0 0 10px; }
  .timeline-h-card { padding: 18px 16px; }
}
