/* =============================================
   Pratap Chandra Das Memorial Trust — Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* ── Logo-extracted primary blue (#3f81ef) ── */
  --primary:          #3f81ef;   /* Logo blue — brand match        */
  --primary-dark:     #2464D8;   /* Richer hover shade             */
  --primary-deeper:   #1A4DB8;   /* Deep authority                 */
  --primary-light:    #EDF4FF;   /* Very light tint                */
  --primary-border:   #BACED8;   /* Subtle border                  */

  /* ── Deep Navy (premium anchor) ── */
  --navy:             #0D1F3C;   /* Rich body text / dark sections */
  --navy-mid:         #1B3563;   /* Mid-depth backgrounds          */

  /* ── Royal Gold (prestige accent) ── */
  --gold:             #C9922A;
  --gold-dark:        #A87420;
  --gold-light:       #FBF4E3;
  --gold-border:      #E5CC8A;

  /* ── Semantic ── */
  --success:          #10B981;
  --success-light:    #ECFDF5;

  /* ── Neutral scale ── */
  --white:            #FFFFFF;
  --cream:            #F8FAFD;
  --gray-50:          #F4F7FC;
  --gray-100:         #EEF3FA;
  --gray-200:         #E2E8F0;
  --gray-300:         #CBD5E1;
  --gray-400:         #94A3B8;
  --gray-500:         #64748B;
  --gray-600:         #475569;
  --gray-700:         #334155;
  --gray-800:         #1E293B;
  --gray-900:         #0D1F3C;   /* same as --navy for consistency */

  --shadow-xs:  0 1px 2px rgba(13,31,60,0.06);
  --shadow-sm:  0 1px 3px rgba(13,31,60,0.09), 0 1px 2px rgba(13,31,60,0.06);
  --shadow-md:  0 4px 6px -1px rgba(13,31,60,0.09), 0 2px 4px -1px rgba(13,31,60,0.06);
  --shadow-lg:  0 10px 15px -3px rgba(13,31,60,0.10), 0 4px 6px -2px rgba(13,31,60,0.05);
  --shadow-xl:  0 20px 25px -5px rgba(13,31,60,0.10), 0 10px 10px -5px rgba(13,31,60,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(13,31,60,0.16);

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --nav-height:  110px;
  --container:   1140px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   TYPOGRAPHY TOKENS
   ============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease,
              height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-md);
  /* Compact height once user scrolls */
  height: 64px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  line-height: 1.25;
  margin-top: 10px;
  margin-left: -25px;
  /* Slightly transparent white pill with blue tint */
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(63, 129, 239, 0.18);
  border-radius: 14px;
  padding: 5px 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-logo {
  color: var(--navy);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  margin-top: 0;
}

/* Logo images � natural colours; .nav-logo pill provides contrast over hero */
.nav-logo-img {
  height: 72px;
  width: auto;
  max-width: 200px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  transition: opacity 0.35s ease, height 0.4s ease;
}

/* Logo swap: full logo visible at hero-top, small logo hidden */
.nav-logo-full  { opacity: 1; }
.nav-logo-small { opacity: 0; position: absolute; height: 40px; max-width: 48px; }

/* On scroll: swap logos */
.navbar.scrolled .nav-logo-full  { opacity: 0; height: 0; overflow: hidden; }
.navbar.scrolled .nav-logo-small { opacity: 1; position: static; }

/* On inner pages (no hero carousel) the navbar is already white � strip the pill */
body:not(.has-hero-carousel) .nav-logo {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* Keep the old .logo-icon hidden / unused — harmless if still in markup */
.logo-icon { display: none; }

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  box-shadow: 0 2px 8px rgba(63, 129, 239, 0.3);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition);
  display: block;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links .btn-nav,
.navbar.scrolled .nav-links .btn-nav:hover {
  color: #fff;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-links .btn-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deeper) 100%);
  color: #fff;
  padding: 10px 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

.nav-links .btn-nav:hover {
  background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  background: none;
  border: none;
}

.nav-toggle:hover {
  background: var(--gray-100);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  display: block;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--gray-700);
}

/* =============================================
   NAVBAR DROPDOWN
   ============================================= */
.nav-item-dropdown {
  position: relative;
}

/* Invisible bridge fills the gap between trigger and dropdown
   so the mouse doesn't exit the hover zone mid-travel */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;
  background: transparent;
}

.nav-item-dropdown > a {
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  margin-top: 1px;
}

.nav-item-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(13,31,60,0.14), 0 2px 12px rgba(63,129,239,0.08);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  /* Delay on hide gives user time to move mouse to submenu */
  transition: opacity 0.2s ease 0.18s, transform 0.2s ease 0.18s;
  z-index: 1001;
  border: 1px solid rgba(63,129,239,0.12);
  list-style: none;
  margin: 0;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: #fff;
  border-left: 1px solid rgba(63,129,239,0.12);
  border-top: 1px solid rgba(63,129,239,0.12);
  border-radius: 2px 0 0 0;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  /* Show instantly, no delay */
  transition: opacity 0.18s ease 0s, transform 0.18s ease 0s;
}

.nav-dropdown-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: var(--gray-700) !important;
  white-space: nowrap;
  background: transparent !important;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease !important;
}

.nav-dropdown-link:hover {
  background: var(--primary-light) !important;
  color: var(--primary) !important;
  padding-left: 18px !important;
  transform: none !important;
}

.nav-dropdown-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #5a98f5 0%, var(--primary) 55%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(63, 129, 239, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(63, 129, 239, 0.60);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(63, 129, 239, 0.3);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  font-size: 1rem;
  padding: 16px 32px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(198, 151, 63, 0.45);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(198, 151, 63, 0.6);
  filter: brightness(1.1);
}

/* =============================================
   HERO — PREMIUM IMAGE CAROUSEL
   ============================================= */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #93c5fd 0%, var(--primary) 55%, var(--primary-dark) 100%);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(63, 129, 239, 0.55);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* --- Carousel Background --- */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 9s ease-out forwards;
}

.hero-slide.prev {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes kenBurns {
  0%   { transform: scale(1.08) translate(0.5%, 0.5%); }
  100% { transform: scale(1)    translate(0%, 0%); }
}

/* --- Gradient Overlays --- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    175deg,
    rgba(8, 18, 42, 0.52) 0%,
    rgba(8, 18, 42, 0.38) 40%,
    rgba(8, 18, 42, 0.72) 78%,
    rgba(6, 14, 32, 0.96) 100%
  );
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 40% 50%,
    rgba(63, 129, 239, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* --- Content Layer (parallax via JS) --- */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  will-change: transform, opacity;
  /* Push content below the tall hero-state navbar + breathing room */
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 110px;
}

.hero-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Founder spotlight (image + text side-by-side) --- */
.hero-founder-row {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-top: 8px;
}

.hero-founder-img-wrap {
  flex-shrink: 0;
}

.hero-founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.70);
  box-shadow: 0 0 0 5px rgba(147, 197, 253, 0.22),
              0 6px 24px rgba(0, 0, 0, 0.40);
  display: block;
}

.hero-founder-text {
  flex: 1;
}

/* --- QR Code card � secondary support CTA, right-aligned --- */
.hero-qr-wrap {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px 14px 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32),
              inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-qr-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.40),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-qr-img {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  /* slight warm white bg so QR is readable over any bg */
  background: rgba(255, 255, 255, 0.96);
  padding: 6px;
}

.hero-qr-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  white-space: nowrap;
}

/* --- Tag Pill --- */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  background: #93c5fd;
  border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%   { opacity: 1; transform: scale(1);    box-shadow: 0 0 0 0   rgba(147, 197, 253, 0.7); }
  60%  { opacity: 1; transform: scale(1.15); box-shadow: 0 0 0 7px rgba(147, 197, 253, 0);   }
  100% { opacity: 1; transform: scale(1);    box-shadow: 0 0 0 0   rgba(147, 197, 253, 0);   }
}

/* --- Headline --- */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 6vw + 0.5rem, 4.6rem);
  font-weight: 700;
  /* Soft white ? cool blue gradient for the main title text */
  background: linear-gradient(160deg, #ffffff 0%, #e8f2ff 55%, #c7dcff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  /* Glowing depth behind the text */
  filter: drop-shadow(0 2px 24px rgba(63, 129, 239, 0.30));
}

.hero-tribute {
  color: #ffffff;
}

.hero-title .highlight {
  /* Bright cyan ? logo-blue shimmer � overrides parent's gradient */
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 30%, var(--primary) 65%, #60a5fa 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: blueShimmer 4s linear infinite;
  font-style: italic;
}

@keyframes blueShimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 250% center; }
}

/* --- Subtitle --- */
.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.95;
  margin-bottom: 44px;
  max-width: min(580px, 100%);
  /* Frosted-pill background for maximum legibility over any carousel image */
  background: rgba(6, 14, 32, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 20px 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* Trust name callout inside subtitle � sky blue */
.hero-name-highlight {
  display: block;
  font-weight: 800;
  font-size: 0.78em;
  letter-spacing: 0.13em;
  color: #93C5FD;
  margin-bottom: 10px;
  text-shadow: 0 0 24px rgba(147, 197, 253, 0.55);
  line-height: 1.2;
}

/* --- CTA Buttons Row --- */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

/* --- Trust Badges --- */
.hero-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.80);
  padding: 6px 15px;
  border-radius: var(--radius-full);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

/* --- Carousel Navigation Dots --- */
.carousel-nav {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  width: 34px;
  background: var(--primary);
  border-color: #93c5fd;
  box-shadow: 0 0 16px rgba(63, 129, 239, 0.65);
}

/* --- Scroll Hint --- */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.5s ease;
  pointer-events: none;
  user-select: none;
}

.scroll-chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.44);
  border-bottom: 2px solid rgba(255, 255, 255, 0.44);
  transform: rotate(45deg);
  animation: chevronBounce 1.9s ease-in-out infinite;
}

@keyframes chevronBounce {
  0%, 100% { transform: rotate(45deg) translate(-2px, -2px); opacity: 0.35; }
  50%       { transform: rotate(45deg) translate(2px, 2px);   opacity: 0.9;  }
}

/* =============================================
   FOUNDER QUOTE SECTION
   ============================================= */
.founder-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(251,191,36,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.founder-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(63,129,239,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}

/* --- Image column --- */
.founder-img-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.founder-img-frame {
  position: relative;
  width: 320px;
  height: 400px;
  flex-shrink: 0;
}

.founder-img-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 32px;
  background: linear-gradient(135deg,
    rgba(251,191,36,0.6) 0%,
    rgba(63,129,239,0.35) 50%,
    rgba(168,85,247,0.25) 100%);
  z-index: 0;
}
.founder-img-frame::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 28px;
  background: #16213e;
  z-index: 1;
}

.founder-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  display: block;
}

.founder-img-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #1a0a2e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(245,158,11,0.45);
}

/* --- Content column --- */
.founder-content-col {
  position: relative;
}

.founder-section .section-tag-light {
  display: inline-block;
  margin-bottom: 20px;
}

.founder-quote-glyph {
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.55;
  color: rgba(251,191,36,0.30);
  user-select: none;
  display: block;
  margin-bottom: 18px;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 32px;
}

.founder-quote em {
  color: #fbbf24;
  font-style: normal;
  font-weight: 600;
}

.founder-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24 60%, transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.founder-avatar-sm {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(251,191,36,0.55);
  flex-shrink: 0;
}

.founder-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.founder-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.03em;
  margin-top: 3px;
}

.founder-trust-pill {
  margin-left: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.founder-trust-item {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px 18px;
}

.founder-trust-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
}

.founder-trust-label {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Responsive */
@media (max-width: 1100px) {
  .founder-grid {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
  .founder-img-frame {
    width: 260px;
    height: 340px;
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 64px 0 72px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    text-align: center;
  }
  .founder-img-col {
    justify-content: center;
  }
  .founder-img-frame {
    width: 220px;
    height: 280px;
  }
  .founder-quote-glyph {
    text-align: center;
  }
  .founder-divider {
    margin: 0 auto 24px;
  }
  .founder-signature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .founder-trust-pill {
    margin-left: 0;
    justify-content: center;
  }
}

/* =============================================
   FOUNDER'S FATHER TRIBUTE SECTION
   ============================================= */
.tribute-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(160deg, #fdf8ef 0%, #fef9f2 45%, #f8f3ff 100%);
}

/* Decorative blobs */
.tribute-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
}
.tribute-blob--tl {
  top: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201,146,42,0.22) 0%, transparent 65%);
}
.tribute-blob--br {
  bottom: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(63,129,239,0.14) 0%, transparent 65%);
}

/* Grid layout */
.tribute-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: center;
}

/* --- Image column --- */
.tribute-img-col {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  order: 2;
}

/* --- Content column --- */
.tribute-content-col {
  position: relative;
  order: 1;
}

.tribute-img-frame {
  position: relative;
  width: 300px;
  height: 380px;
  flex-shrink: 0;
}

.tribute-img-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(201,146,42,0.55) 0%,
    rgba(251,191,36,0.30) 40%,
    rgba(63,129,239,0.25) 100%
  );
  z-index: 0;
}

.tribute-img-frame::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 28px;
  background: #fef9f0;
  z-index: 1;
}

.tribute-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 60px rgba(13,31,60,0.16), 0 4px 16px rgba(201,146,42,0.18);
}

.tribute-img-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, #c9922a 0%, #f59e0b 100%);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(201,146,42,0.38);
}

.tribute-section .section-tag-light {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  background: rgba(201,146,42,0.10);
  border-color: rgba(201,146,42,0.28);
}

.tribute-quote-glyph {
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.55;
  color: rgba(201,146,42,0.28);
  user-select: none;
  display: block;
  margin-bottom: 18px;
}

.tribute-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.82;
  margin-bottom: 30px;
}

.tribute-quote em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.tribute-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201,146,42,0.30) 80%, transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Signature block */
.tribute-signature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
}

.tribute-sig-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tribute-sig-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tribute-sig-role {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.tribute-sig-note {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 8px;
  max-width: 480px;
}

/* Pillars row */
.tribute-pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tribute-cta-btn {
  display: inline-block;
  margin-top: 28px;
}

.tribute-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,146,42,0.08);
  border: 1px solid rgba(201,146,42,0.20);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: background var(--transition), border-color var(--transition);
}

.tribute-pillar:hover {
  background: rgba(201,146,42,0.14);
  border-color: rgba(201,146,42,0.38);
}

.tribute-pillar-icon {
  font-size: 1rem;
  line-height: 1;
}

.tribute-pillar-label {
  white-space: nowrap;
}

/* =============================================
   TRIBUTE — RESPONSIVE 1100px
   ============================================= */
@media (max-width: 1100px) {
  .tribute-grid {
    grid-template-columns: 1fr 280px;
    gap: 52px;
  }
  .tribute-img-frame {
    width: 260px;
    height: 340px;
  }
}

/* =============================================
   TRIBUTE — RESPONSIVE 768px
   ============================================= */
@media (max-width: 768px) {
  .tribute-section {
    padding: 64px 0 72px;
  }
  .tribute-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .tribute-img-col {
    order: 1;
    align-items: center;
  }
  .tribute-content-col {
    order: 2;
  }
  .tribute-img-frame {
    width: 220px;
    height: 280px;
  }
  .tribute-quote-glyph {
    text-align: center;
  }
  .tribute-divider {
    margin: 0 auto 24px;
  }
  .tribute-signature {
    justify-content: center;
    text-align: center;
  }
  .tribute-sig-note {
    max-width: 100%;
  }
  .tribute-pillars {
    justify-content: center;
  }
  .tribute-section .section-tag-light {
    display: inline-block;
  }
}

/* =============================================
   TRIBUTE — RESPONSIVE 480px
   ============================================= */
@media (max-width: 480px) {
  .tribute-section {
    padding: 52px 0 60px;
  }
  .tribute-img-frame {
    width: 190px;
    height: 240px;
  }
  .tribute-quote {
    font-size: 1rem;
    line-height: 1.75;
  }
  .tribute-quote-glyph {
    font-size: 5rem;
  }
  .tribute-sig-name {
    font-size: 0.95rem;
  }
  .tribute-pillars {
    gap: 8px;
  }
  .tribute-pillar {
    padding: 7px 14px;
    font-size: 0.75rem;
  }
  .tribute-blob {
    opacity: 0.35;
  }
}

/* =============================================
   IMPACT STATS BAR
   ============================================= */
/* =============================================
   IMPACT STATS � Parallax Section
   ============================================= */
.stats-bar {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Background image layer � JS moves this for parallax on desktop */
.stats-bg-image {
  position: absolute;
  inset: -30% 0;            /* extend top/bottom so JS translateY doesn't show gaps */
  background: url('../images/work_images/hero_2.webp') center / cover no-repeat;
  background-attachment: scroll;
  z-index: 0;
  transform-origin: center;
  will-change: transform;
}

/* iOS: no JS parallax needed, just a static bg */
@supports (-webkit-touch-callout: none) {
  .stats-bg-image {
    inset: 0;
    transform: none !important;
  }
}

/* Dark gradient overlay over the image */
.stats-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(8, 16, 38, 0.88) 0%,
    rgba(13, 31, 60, 0.92) 60%,
    rgba(5, 18, 45, 0.90) 100%
  );
}

.stats-bar .container {
  position: relative;
  z-index: 2;
}

/* Section header */
.stats-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-tag-light {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93C5FD;
  background: rgba(147, 197, 253, 0.12);
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  margin-bottom: 16px;
}

.stats-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.stats-section-title span {
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(63, 129, 239, 0.08);
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

/* Glowing top accent line on hover */
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3f81ef, transparent);
  border-radius: 0 0 4px 4px;
  transition: transform 0.35s ease;
}

.stat-item:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* Icon */
.stat-icon-wrap {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(63, 129, 239, 0.4));
}

/* Animated number */
.stat-value {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(160deg, #ffffff 0%, #bfdbfe 60%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-value {
  transform: scale(1.04);
}

.stat-value .accent {
  background: linear-gradient(135deg, #60A5FA, #3f81ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.50);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   ABOUT PREVIEW SECTION
   ============================================= */
.about-preview {
  background: linear-gradient(160deg, #f8faff 0%, #ffffff 50%, #fef9f2 100%);
  overflow: clip;
  padding: 56px 0 64px;
  position: relative;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(63,129,239,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-preview .container { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  order: 2;
}

.about-content {
  order: 1;
}

/* =============================================
   ABOUT SECTION IMAGE CAROUSEL
   ============================================= */

.about-carousel {
  position: relative;
  height: 600px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 2px 0 4px rgba(63,129,239,0.06),
    0 8px 32px rgba(0, 0, 0, 0.10),
    0 32px 80px rgba(0, 0, 0, 0.14);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  cursor: grab;
}

.about-carousel:active {
  cursor: grabbing;
}

.about-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.80s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.about-carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 6s ease-out;
}

.about-carousel-slide.active img {
  transform: scale(1);
}

.about-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(8, 16, 38, 0.55) 100%
  );
  pointer-events: none;
}

/* Dot navigation */
.about-carousel-nav {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.about-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  padding: 8px;
  background-clip: content-box;
  transition: all 0.3s ease;
  box-sizing: content-box;
}

.about-carousel-dot.active {
  background: white;
  border-color: white;
  width: 26px;
  border-radius: 4px;
  background-clip: content-box;
}

/* Auto-progress bar */
.about-carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 3;
}

.about-progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--primary);
  color: white;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(63, 129, 239, 0.40);
  text-align: center;
  min-width: 100px;
  z-index: 10;
  border: 3px solid rgba(255,255,255,0.15);
}

.about-badge .badge-year {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-badge .badge-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-content {
  padding: 6px 0;
}

.about-content .section-subtitle {
  margin-bottom: 8px;
  font-size: 0.93rem;
  line-height: 1.6;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  transition: background 0.22s ease;
}

.feature-item:hover {
  background: rgba(63,129,239,0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 1px;
}

.feature-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* =============================================
   HOW TO DONATE STEPS
   ============================================= */
/* =============================================
   HOW TO DONATE — Premium redesign
   ============================================= */
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@keyframes flow-dash {
  0%   { stroke-dashoffset: 120; }
  100% { stroke-dashoffset: 0; }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes shimmer-num {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63,129,239,0.55), 0 6px 24px rgba(63,129,239,0.35); }
  50%       { box-shadow: 0 0 0 14px rgba(63,129,239,0), 0 6px 24px rgba(63,129,239,0.35); }
}

.how-it-works {
  background: linear-gradient(160deg, #f4f8ff 0%, #edf3ff 55%, #f0f6ff 100%);
  position: relative;
  overflow: hidden;
  padding: 44px 0 48px;
}

/* Decorative radial blobs */
.how-it-works::before {
  content: '';
  position: absolute;
  top: -120px; left: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(63,129,239,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}

/* ---- Animated dashed connector line between cards ---- */
.steps-grid::before {
  content: '';
  position: absolute;
  /* handled via SVG connector inside .step-connector */
}

.step-card {
  background: #ffffff;
  border: 1px solid #e4edf8;
  border-radius: 20px;
  padding: 22px 24px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(63,129,239,0.06),
              0 8px 32px rgba(63,129,239,0.10);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  animation: float-card 6s ease-in-out infinite;
}

.step-card:nth-child(1) { animation-delay: 0s; }
.step-card:nth-child(2) { animation-delay: 1.2s; }
.step-card:nth-child(3) { animation-delay: 2.4s; }

.step-card:hover {
  transform: translateY(-12px) scale(1.025);
  border-color: rgba(63,129,239,0.35);
  box-shadow: 0 4px 16px rgba(63,129,239,0.10),
              0 20px 56px rgba(63,129,239,0.16);
  animation-play-state: paused;
}

/* Top accent stripe per card */
.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, rgba(63,129,239,0.7), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.step-card:hover::after { opacity: 1; }

/* Step icon wrapper (replaces bare .step-number) */
.step-icon-wrap {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer pulse ring */
.step-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(63,129,239,0.45);
  animation: pulse-ring 3s ease-out infinite;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3f81ef 0%, #2563eb 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: shimmer-num 3s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(63,129,239,0.45);
  letter-spacing: -0.03em;
}

/* Unique accent per step */
.step-card:nth-child(1) .step-number {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  box-shadow: 0 6px 24px rgba(249,115,22,0.45);
  animation: none;
}
.step-card:nth-child(1) .step-icon-wrap::before {
  border-color: rgba(249,115,22,0.45);
}

.step-card:nth-child(2) .step-number {
  background: linear-gradient(135deg, #3f81ef 0%, #2563eb 100%);
  box-shadow: 0 6px 24px rgba(63,129,239,0.45);
  animation: none;
}
.step-card:nth-child(2) .step-icon-wrap::before {
  animation-delay: 1s;
}

.step-card:nth-child(3) .step-number {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 6px 24px rgba(16,185,129,0.45);
  animation: none;
}
.step-card:nth-child(3) .step-icon-wrap::before {
  border-color: rgba(16,185,129,0.45);
  animation-delay: 2s;
}

/* Step icon emoji/SVG */
.step-icon {
  font-size: 1.8rem;
  line-height: 1;
  display: block;
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: #f0f5ff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1.5px solid #d6e4ff;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Animated arrow connector */
.step-connector {
  position: absolute;
  top: 50px;
  right: -26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.step-connector svg {
  width: 40px;
  height: 16px;
  overflow: visible;
}

.step-connector svg path {
  stroke: rgba(63,129,239,0.55);
  stroke-width: 2;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  fill: none;
  stroke-linecap: round;
  animation: flow-dash 2s ease-out infinite;
}

/* Donate CTA button */
.how-it-works .btn-primary {
  box-shadow: 0 6px 28px rgba(63,129,239,0.35);
}

.how-it-works .text-center[style] {
  margin-top: 24px !important;
}

/* QR code widget inside step card */
.step-qr-wrap {
  margin: 12px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #f4f8ff;
  border: 1px solid #dde8f8;
  border-radius: 14px;
  padding: 10px 10px 8px;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(63,129,239,0.10);
}

.step-qr-img {
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 6px;
}

.step-qr-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3f81ef;
  background: rgba(63,129,239,0.1);
  border-radius: 20px;
  padding: 4px 12px;
}

/* Accepted UPI apps row */
.step-upi-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.step-upi-badge {
  font-size: 0.67rem;
  font-weight: 600;
  color: #3f81ef;
  background: rgba(63,129,239,0.08);
  border: 1px solid rgba(63,129,239,0.18);
  border-radius: 20px;
  padding: 2px 9px;
  letter-spacing: 0.03em;
}

/* WhatsApp action block in step 3 */
.step-wa-block {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.step-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.01em;
}

.step-wa-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

.step-wa-link svg {
  flex-shrink: 0;
}

.step-wa-note {
  font-size: 0.7rem;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--navy);
}

/* Real photo background */
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/work_images/img_7.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.cta-section:hover .cta-bg-img {
  transform: scale(1);
}

/* Deep dark overlay so text pops */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 16, 38, 0.88) 0%,
    rgba(13, 31, 60, 0.82) 50%,
    rgba(63, 129, 239, 0.30) 100%
  );
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.cta-inner .section-title {
  color: #fff;
}

.cta-inner .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 36px;
  text-align: center;
}

.cta-inner .section-tag {
  margin: 0 auto 16px;
}

/* Trust strip */
.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cta-trust-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cta-trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* Tag */
.cta-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

/* Title */
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.18;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.cta-highlight {
  color: #7db4ff;
}

/* Subtitle */
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-btn-primary {
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}

/* Fine-print trust note */
.cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 0.01em;
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
/* =============================================
   PREMIUM PAGE HERO  (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  background-image: url('../images/work_images/hero_2.webp');
  background-size: cover;
  background-position: center 30%;
  background-attachment: scroll;
  padding: calc(var(--nav-height) + 60px) 0 68px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,31,60,0.82) 0%,
    rgba(13,31,60,0.65) 60%,
    rgba(34,60,120,0.72) 100%
  );
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-tag {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.page-hero .section-title {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero .section-subtitle {
  color: rgba(255,255,255,0.75);
  margin: 0 auto;
}

.page-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.8);
}

.page-hero .breadcrumb span {
  color: rgba(255,255,255,0.45);
}


.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity var(--transition);
}

.breadcrumb a:hover {
  opacity: 0.75;
}

/* =============================================
   DONATE PAGE
   ============================================= */
.donate-flow {
  background: var(--white);
}

.qr-section-wrap {
  background: var(--gray-50);
  padding: 100px 0;
}

.qr-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.qr-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.qr-card-sub {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.qr-frame {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: inline-block;
  margin-bottom: 20px;
  transition: border-color var(--transition);
}

.qr-frame:hover {
  border-color: var(--primary-border);
}

.qr-frame img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-sm);
  display: block;
}

.qr-scan-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.qr-note {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: left;
}

.qr-note strong {
  color: var(--primary);
}

.donate-cta-block {
  background: linear-gradient(135deg, var(--primary-light), #E0F2FE);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  max-width: 700px;
  margin: 60px auto 0;
}

.donate-cta-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.donate-cta-block p {
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.7;
  font-size: 0.97rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.mission-section {
  background: var(--white);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.mvv-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.mvv-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: var(--primary-border);
}

.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.mvv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.mvv-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.story-section {
  background: var(--gray-50);
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
}

.story-inner p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 22px;
}

.story-inner p:last-child {
  margin-bottom: 0;
}

.story-inner .quote-block {
  border-left: 4px solid var(--primary);
  padding: 20px 28px;
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 36px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.75;
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.value-card:hover {
  background: var(--primary-light);
  border-color: var(--primary-border);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 1.5rem;
  min-width: 48px;
  height: 48px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.value-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

/* ── Info strip ── */
.contact-info-strip {
  background: #F8FAFF;
  border-bottom: 1px solid var(--gray-100);
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cstrip-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--gray-100);
  text-decoration: none;
  transition: background var(--transition);
}
.cstrip-card:last-child { border-right: none; }
.cstrip-card:hover { background: var(--white); }
.cstrip-icon {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cstrip-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.cstrip-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
  word-break: break-word;
}

/* ── Main section ── */
.contact-section { background: var(--white); }
.contact-section > .container {
  padding-top: 64px;
  padding-bottom: 80px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Left column ── */
.contact-reach-header { margin-bottom: 28px; }
.contact-reach-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.contact-reach-header p {
  color: var(--gray-500);
  line-height: 1.75;
  font-size: 0.97rem;
}

/* Social row */
.contact-social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.csb-fb { background:#E7F0FD; color:#1877F2; }
.csb-fb:hover { background:#1877F2; color:#fff; }
.csb-ig { background:#FDE7F0; color:#C13584; }
.csb-ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#bc1888); color:#fff; }
.csb-wa { background:#E7FDF3; color:#128C7E; }
.csb-wa:hover { background:#25D366; color:#fff; }
.csb-yt { background:#FDE7E7; color:#CC0000; }
.csb-yt:hover { background:#FF0000; color:#fff; }

/* WhatsApp CTA bar */
.contact-wa-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-xl);
  padding: 18px 22px;
  margin-bottom: 22px;
}
.contact-wa-cta-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.contact-wa-cta-body { flex: 1; min-width: 0; }
.contact-wa-cta-body strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}
.contact-wa-cta-body p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.45;
}

/* Action cards grid */
.contact-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-action-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 22px 18px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-action-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
  transform: translateY(-3px);
}
.contact-action-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
}
.contact-action-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.contact-action-card p {
  font-size: 0.81rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ── Right: Map card ── */
.contact-aside {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.contact-map-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--gray-100);
}
.contact-map-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin: 0;
}
.contact-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  background: var(--primary-light);
  padding: 6px 13px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.contact-map-directions:hover {
  background: var(--primary);
  color: #fff;
}
.contact-map-frame { display: block; line-height: 0; }
.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}
.contact-map-address-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 22px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* =============================================
   CONTACT PAGE — FAQ ACCORDION
   ============================================= */
.contact-faq-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #f0f4ff 0%, #fafafa 60%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.contact-faq-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(63,129,239,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.contact-faq-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Item ── */
.cfaq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cfaq-item:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.cfaq-item.cfaq-open {
  transform: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}

/* Color variants — border + num */
.cfaq-blue  { border-left-color: #2563EB; }
.cfaq-purple{ border-left-color: #7C3AED; }
.cfaq-amber { border-left-color: #D97706; }
.cfaq-green { border-left-color: #16A34A; }

.cfaq-blue  .cfaq-num { background: #EFF6FF; color: #2563EB; }
.cfaq-purple.cfaq-num,
.cfaq-purple .cfaq-num { background: #F5F3FF; color: #7C3AED; }
.cfaq-amber .cfaq-num { background: #FFFBEB; color: #D97706; }
.cfaq-green .cfaq-num { background: #F0FDF4; color: #16A34A; }

/* Open state tint */
.cfaq-blue.cfaq-open   { background: #fafcff; }
.cfaq-purple.cfaq-open { background: #fdfcff; }
.cfaq-amber.cfaq-open  { background: #fffdf5; }
.cfaq-green.cfaq-open  { background: #fafffe; }

/* ── Question button ── */
.cfaq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.cfaq-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cfaq-q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.45;
}

.cfaq-chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
}

.cfaq-item.cfaq-open .cfaq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

/* ── Answer panel ── */
.cfaq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
              padding 0.3s ease;
  padding: 0 24px 0 76px;
}

.cfaq-item.cfaq-open .cfaq-answer {
  max-height: 300px;
  padding: 0 24px 22px 76px;
}

.cfaq-answer p {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0a0f1e;
  padding: 0 0 0;
  position: relative;
}

/* Thin primary-colour accent line at very top */
.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #7db4ff 50%, var(--primary) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ---- Brand ---- */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
  background: white;
  border-radius: 10px;
  padding: 6px 10px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.44);
  line-height: 1.78;
  max-width: 260px;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.12);
}

.social-fb {
  background: #1877f2;
  border: 1px solid #1877f2;
  box-shadow: 0 2px 10px rgba(24,119,242,0.35);
}
.social-fb:hover { background: #1460cc; box-shadow: 0 6px 22px rgba(24,119,242,0.55); }

.social-ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #515bd4 100%);
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(221,42,123,0.35);
}
.social-ig:hover { box-shadow: 0 6px 22px rgba(221,42,123,0.55); filter: brightness(1.1); }

.social-wa {
  background: #25d366;
  border: 1px solid #25d366;
  box-shadow: 0 2px 10px rgba(37,211,102,0.30);
}
.social-wa:hover { background: #1aab53; box-shadow: 0 6px 22px rgba(37,211,102,0.55); }

.social-yt {
  background: #ff0000;
  border: 1px solid #ff0000;
  box-shadow: 0 2px 10px rgba(255,0,0,0.28);
}
.social-yt:hover { background: #cc0000; box-shadow: 0 6px 22px rgba(255,0,0,0.50); }

/* ---- Nav columns ---- */
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.44);
  transition: color 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 4px;
}

/* ---- Contact list (icon + text) ---- */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-email-link {
  word-break: break-all;
}

/* ---- Bottom bar ---- */
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.01em;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: #ffffff;
}

.footer-heart {
  color: #f87171;
  font-style: normal;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.08s; }
.animate-fade-up.delay-2 { animation-delay: 0.18s; }
.animate-fade-up.delay-3 { animation-delay: 0.28s; }
.animate-fade-up.delay-4 { animation-delay: 0.38s; }
.animate-fade-up.delay-5 { animation-delay: 0.48s; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.42s; }
.reveal.delay-5 { transition-delay: 0.56s; }

/* Deeper rise variant � used at hero?section boundary */
.reveal-up {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}

.reveal-up.delay-1 { transition-delay: 0.12s; }
.reveal-up.delay-2 { transition-delay: 0.26s; }
.reveal-up.delay-3 { transition-delay: 0.40s; }
.reveal-up.delay-4 { transition-delay: 0.54s; }
.reveal-up.delay-5 { transition-delay: 0.68s; }

/* =============================================
   UTILITIES
   ============================================= */
.mt-6  { margin-top: 6px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

body:not(.has-hero-carousel) .navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

body:not(.has-hero-carousel) .nav-logo {
  color: var(--gray-900);
}

body:not(.has-hero-carousel) .nav-links a {
  color: var(--gray-600);
}

body:not(.has-hero-carousel) .nav-links a:hover,
body:not(.has-hero-carousel) .nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

body:not(.has-hero-carousel) .nav-toggle span {
  background: var(--gray-700);
}
@media (max-width: 1024px) {
  .hero-inner {
    text-align: center;
    max-width: 100%;
  }

  .hero-subtitle       { max-width: 100%; }
  .hero-actions        { justify-content: center; }
  .hero-trust-badges   { justify-content: center; }
  .hero-tag            { margin-left: auto; margin-right: auto; display: inline-flex; }

  /* At tablet widths, wrap the founder row so QR drops below */
  .hero-founder-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .hero-founder-text {
    text-align: center;
  }

  .hero-qr-wrap {
    flex-basis: 100%;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
  }

  .hero-qr-img {
    width: 72px;
    height: 72px;
  }

  .hero-qr-label {
    white-space: normal;
    text-align: left;
    max-width: 120px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Text first, image second on single-column layout */
  .about-content {
    order: -1;
  }

  .about-visual {
    order: 1;
  }

  .about-carousel {
    height: 440px;
    border-radius: 20px;
  }

  .about-badge {
    right: 0;
    bottom: 16px;
  }

  .about-preview {
    padding: 52px 0 60px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Remove right border on items that would be on the right edge in 2-col layout */
  .stat-item:nth-child(2),
  .stat-item:nth-child(4) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-aside {
    position: static;
  }

  .contact-map-card {
    position: static;
  }

  .contact-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cstrip-card:nth-child(2) { border-right: none; }
  .cstrip-card:nth-child(3) { border-right: 1px solid var(--gray-100); }
  .cstrip-card:nth-child(3),
  .cstrip-card:nth-child(4) { border-top: 1px solid var(--gray-100); }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  /* Page hero mobile */
  .page-hero,
  .work-page-hero,
  .mem-hero,
  .afh-section {
    padding: calc(72px + 40px) 0 52px;
    background-attachment: scroll;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: white;
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  /* Dark text so links are visible on the white dropdown */
  .nav-links a {
    color: var(--gray-800) !important;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: left;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary) !important;
    background: var(--primary-light);
  }

  .nav-links .btn-nav {
    margin-left: 0;
    text-align: center;
    border-radius: var(--radius-full);
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  /* On mobile the navbar is always compact � logo pill scales down */
  .navbar {
    height: 72px;
  }

  .nav-links {
    top: 72px;
  }

  .nav-logo-full {
    height: 52px;
  }

  .navbar.scrolled .nav-logo-small {
    height: 36px;
  }

  /* Shrink pill padding on mobile */
  .nav-logo {
    padding: 6px 10px;
    border-radius: 10px;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-content-wrap {
    padding-top: calc(72px + 32px);
    padding-bottom: 90px;
  }

  .hero-inner {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
    margin-bottom: 18px;
    word-break: break-word;
  }

  .hero-founder-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .hero-founder-img-wrap {
    width: auto;
  }

  .hero-founder-img {
    width: 96px;
    height: 96px;
  }

  .hero-founder-text {
    text-align: center;
    width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 24px;
    padding: 14px 16px;
  }

  .hero-name-highlight {
    letter-spacing: 0.06em;
    font-size: 0.76em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 28px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* QR sits below the CTA buttons, compact horizontal layout */
  .hero-qr-wrap {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    width: 100%;
    max-width: 240px;
    align-self: center;
  }

  .hero-qr-label {
    white-space: normal;
    text-align: left;
    max-width: 90px;
    font-size: 0.6rem;
  }

  .hero-qr-img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
  }

  .about-carousel {
    height: 340px;
    border-radius: 16px;
  }

  .about-badge {
    right: 8px;
    bottom: 8px;
    padding: 10px 14px;
    min-width: 80px;
  }

  .about-badge .badge-num {
    font-size: 1.5rem;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .carousel-nav {
    bottom: 100px;
  }

  .hero-scroll-hint {
    bottom: 22px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    animation: none;
    padding: 20px 18px 16px;
    box-shadow: 0 2px 12px rgba(63,129,239,0.08);
  }

  .how-it-works {
    padding: 44px 0 48px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    padding: 48px 0;
  }

  .stats-header {
    margin-bottom: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 36px 20px;
  }

  .stat-item:nth-child(2),
  .stat-item:nth-child(4) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .qr-card {
    padding: 36px 24px;
  }

  .donate-cta-block {
    padding: 40px 24px;
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-trust-row {
    gap: 16px;
  }

  .cta-trust-divider {
    display: none;
  }

  .cta-title {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .cta-subtitle {
    font-size: 0.95rem;
  }

  /* Contact page — 768px */
  .contact-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cstrip-card:nth-child(2) { border-right: none; }
  .cstrip-card:nth-child(3) { border-right: 1px solid var(--gray-100); border-top: 1px solid var(--gray-100); }
  .cstrip-card:nth-child(4) { border-top: 1px solid var(--gray-100); }

  .contact-social-row {
    gap: 8px;
  }

  .contact-social-btn {
    font-size: 0.78rem;
    padding: 8px 13px;
    gap: 6px;
  }

  .contact-action-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Contact page — FAQ */
  .contact-faq-section { padding: 72px 0; }
  .cfaq-answer { padding-left: 24px; }
  .cfaq-item.cfaq-open .cfaq-answer { padding-left: 24px; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .nav-logo-full {
    height: 44px;
  }

  .nav-logo {
    padding: 5px 8px;
    border-radius: 8px;
  }

  .hero-subtitle {
    padding: 12px 14px;
    font-size: 0.93rem;
    margin-bottom: 18px;
    line-height: 1.65;
  }

  /* Hide QR on very small phones — saves vertical space */
  .hero-qr-wrap {
    display: none;
  }

  .hero-founder-img {
    width: 80px;
    height: 80px;
  }

  .hero-founder-row {
    gap: 14px;
  }

  .hero-content-wrap {
    padding-top: calc(72px + 28px);
    padding-bottom: 70px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn {
    padding: 13px 18px;
    font-size: 0.9rem;
  }

  .btn {
    padding: 13px 22px;
    font-size: 0.92rem;
  }

  .btn-lg {
    padding: 15px 28px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .stats-bar {
    padding: 40px 0;
  }

  .stats-section-title {
    font-size: 1.3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
  }

  .stat-item {
    padding: 28px 14px;
  }

  .stat-icon-wrap {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .stat-value {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .stat-desc {
    font-size: 0.72rem;
  }

  /* Contact page — 480px */
  .contact-strip-grid {
    grid-template-columns: 1fr;
  }

  .cstrip-card {
    border-right: none !important;
    border-bottom: 1px solid var(--gray-100);
    border-top: none !important;
  }

  .cstrip-card:last-child {
    border-bottom: none;
  }

  .contact-action-grid {
    grid-template-columns: 1fr;
  }

  .contact-wa-cta {
    flex-wrap: wrap;
    gap: 14px;
  }

  .contact-map-frame {
    height: 240px;
  }

  .contact-social-row {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* =============================================
   RESPONSIVE � 360px (very small phones)
   ============================================= */
@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 1.9rem);
    margin-bottom: 14px;
  }

  .hero-content-wrap {
    padding-top: calc(72px + 24px);
    padding-bottom: 60px;
  }

  .hero-founder-img {
    width: 68px;
    height: 68px;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    padding: 10px 12px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .hero-name-highlight {
    font-size: 0.72em;
    letter-spacing: 0.04em;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stats-section-title {
    font-size: 1.4rem;
  }

  .nav-logo-full {
    height: 36px;
  }

  .btn-lg {
    padding: 13px 22px;
    font-size: 0.88rem;
  }

  .section-title {
    font-size: 1.65rem;
  }
}

/* =============================================
   RESPONSIVE — Landscape mobile
   (short viewport, e.g. phone rotated sideways)
   ============================================= */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 560px;
    height: auto;
    align-items: flex-start;
  }

  .hero-content-wrap {
    padding-top: calc(64px + 16px);
    padding-bottom: 56px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 14px;
  }

  .hero-subtitle {
    padding: 12px 16px;
    font-size: 0.92rem;
    margin-bottom: 18px;
    line-height: 1.7;
  }

  .hero-founder-img {
    width: 68px;
    height: 68px;
  }

  .hero-founder-row {
    gap: 16px;
  }

  .hero-qr-wrap {
    display: none;
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .carousel-nav {
    bottom: 60px;
  }

  .hero-scroll-hint {
    bottom: 12px;
  }
}

/* =============================================
   OUR WORK PAGE
   ============================================= */

/* — Page Hero — */
.work-page-hero {
  background-image: url('../images/work_images/hero_3.webp');
  background-size: cover;
  background-position: center 35%;
  padding: calc(var(--nav-height) + 60px) 0 72px;
  text-align: center;
}

.work-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--primary-border);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.work-hero-tag .dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2.2s infinite;
}

.work-hero-accent {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-page-hero .section-title { color: #fff; }

.work-page-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
}

.work-page-hero .breadcrumb a {
  color: rgba(255,255,255,0.8);
}

.work-page-hero .breadcrumb span {
  color: rgba(255,255,255,0.45);
}

.work-page-hero .section-subtitle {
  color: rgba(255,255,255,0.78);
  margin: 0 auto 48px;
}

.work-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.work-hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 40px;
  gap: 4px;
}

.work-hs-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.05em;
  line-height: 1;
}

.work-hs-num sup {
  font-size: 0.7em;
  vertical-align: super;
  font-weight: 700;
}

.work-hs-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.work-hs-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-100);
  flex-shrink: 0;
}

/* — Featured Label — */
.works-featured-section {
  background: var(--white);
  padding: 100px 0;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #B45309;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* — Featured Work Card — */
.work-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.work-featured-image {
  position: relative;
}

.wfi-inner {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wfi-orange {
  background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 50%, #FDBA74 100%);
  border: 1px solid #FCD3A0;
}

.wfi-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wfi-circle {
  position: absolute;
  border-radius: 50%;
}

.wfi-orange .c1 {
  width: 300px;
  height: 300px;
  background: rgba(249, 115, 22, 0.08);
  top: -80px;
  right: -80px;
}

.wfi-orange .c2 {
  width: 200px;
  height: 200px;
  background: rgba(249, 115, 22, 0.06);
  bottom: -50px;
  left: -50px;
}

.wfi-orange .c3 {
  width: 120px;
  height: 120px;
  background: rgba(249, 115, 22, 0.1);
  bottom: 40px;
  right: 60px;
}

.wfi-icon-wrap {
  position: relative;
  z-index: 1;
  background: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.25);
  border: 4px solid rgba(249, 115, 22, 0.15);
  margin-bottom: 20px;
}

.wfi-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}

.wfi-img-caption {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 600;
  color: #92400E;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

.work-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  text-align: center;
  min-width: 120px;
}

.wbf-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #EA580C;
  letter-spacing: -0.05em;
  line-height: 1;
}

.wbf-num sup {
  font-size: 0.65em;
  vertical-align: super;
}

.wbf-text {
  display: block;
  font-size: 0.74rem;
  color: var(--gray-400);
  font-weight: 600;
  margin-top: 4px;
  white-space: nowrap;
}

/* — Featured Content — */
.work-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.pill-orange {
  background: #FFF7ED;
  color: #C2410C;
  border: 1px solid #FED7AA;
}

.pill-blue {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}

.pill-purple {
  background: #F5F3FF;
  color: #6D28D9;
  border: 1px solid #DDD6FE;
}

.work-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.work-desc {
  font-size: 0.97rem;
  color: var(--gray-500);
  line-height: 1.82;
  margin-bottom: 16px;
}

.work-desc em {
  font-style: normal;
  font-weight: 600;
  color: var(--gray-700);
}

.work-impact-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.work-impact-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  min-width: 86px;
  transition: all var(--transition);
}

.work-impact-chip:hover {
  background: var(--primary-light);
  border-color: var(--primary-border);
}

.wic-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.wic-plus {
  font-size: 0.9em;
  color: var(--primary);
  font-weight: 700;
}

.wic-label {
  font-size: 0.73rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* — Works Grid — */
.works-grid-section {
  background: var(--gray-50);
  padding: 100px 0;
}

.works-grid-section .section-subtitle {
  margin: 0 auto 60px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

/* — Individual Work Card — */
.work-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--gray-200);
}

.work-card-image {
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wci-blue {
  background: linear-gradient(135deg, #EFF6FF 0%, #BFDBFE 50%, #93C5FD 100%);
  border-bottom: 1px solid #BFDBFE;
}

.wci-purple {
  background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 50%, #C4B5FD 100%);
  border-bottom: 1px solid #DDD6FE;
}

.wci-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wci-circle {
  position: absolute;
  border-radius: 50%;
}

.wci-blue .cc1 {
  width: 200px;
  height: 200px;
  background: rgba(63, 129, 239, 0.08);
  top: -60px;
  right: -60px;
}

.wci-blue .cc2 {
  width: 120px;
  height: 120px;
  background: rgba(63, 129, 239, 0.06);
  bottom: -30px;
  left: -30px;
}

.wci-purple .cc1 {
  width: 200px;
  height: 200px;
  background: rgba(109, 40, 217, 0.08);
  top: -60px;
  right: -60px;
}

.wci-purple .cc2 {
  width: 120px;
  height: 120px;
  background: rgba(109, 40, 217, 0.06);
  bottom: -30px;
  left: -30px;
}

.wci-icon {
  font-size: 3.2rem;
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

.work-card-img-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}

.wci-blue .work-card-img-label  { color: #1E40AF; }
.wci-purple .work-card-img-label { color: #5B21B6; }

.work-card-body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.work-card-desc {
  font-size: 0.91rem;
  color: var(--gray-500);
  line-height: 1.78;
  margin-bottom: 24px;
  flex: 1;
}

/* — Gallery strip — */
.work-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.wgs-thumb {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: default;
}

.wgs-thumb span {
  font-size: 1.5rem;
  display: block;
}

.wgs-thumb p {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

/* Blue gallery thumbnails */
.wgs-blue-1  { background: linear-gradient(135deg, #EFF6FF, #BFDBFE); color: #1D4ED8; border-color: #BFDBFE; }
.wgs-blue-2  { background: linear-gradient(135deg, #E0F2FE, #BAE6FD); color: #0369A1; border-color: #BAE6FD; }
.wgs-blue-3  { background: linear-gradient(135deg, #ECFDF5, #A7F3D0); color: #065F46; border-color: #A7F3D0; }

/* Purple gallery thumbnails */
.wgs-purple-1 { background: linear-gradient(135deg, #F5F3FF, #DDD6FE); color: #5B21B6; border-color: #DDD6FE; }
.wgs-purple-2 { background: linear-gradient(135deg, #EDE9FE, #C4B5FD); color: #6D28D9; border-color: #C4B5FD; }
.wgs-purple-3 { background: linear-gradient(135deg, #FAF5FF, #E9D5FF); color: #7E22CE; border-color: #E9D5FF; }

.wgs-thumb:hover {
  transform: scale(1.04);
}

/* — Work Stats Row — */
.work-stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.wsr-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px;
  gap: 3px;
  background: var(--gray-50);
  transition: background var(--transition);
}

.wsr-item:not(:last-child) {
  border-right: 1px solid var(--gray-100);
}

.work-card:hover .wsr-item {
  background: white;
}

.wsr-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1;
}

.wsr-num sup {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--primary);
  font-weight: 700;
}

.wsr-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.work-card-cta {
  align-self: flex-start;
}

/* — Volunteer Strip — */
.volunteer-strip {
  background: var(--white);
  padding: 100px 0;
}

.vs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vs-text .section-subtitle {
  margin-bottom: 36px;
}

.vs-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vs-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-card-stack {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.vs-big-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, #E0F2FE 100%);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-xl);
}

.vs-big-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 16px;
}

.vs-big-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.vs-big-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.vs-mini-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

.vc-top {
  top: -18px;
  right: -18px;
}

.vc-bottom {
  bottom: -18px;
  left: -18px;
}

/* =============================================
   WORK PAGE — RESPONSIVE 1024px
   ============================================= */
@media (max-width: 1024px) {
  .work-featured {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .work-badge-float {
    bottom: -16px;
    right: -10px;
  }

  .vs-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vs-visual {
    display: none;
  }
}

/* =============================================
   WORK PAGE — RESPONSIVE 768px
   ============================================= */
@media (max-width: 768px) {
  .work-hero-stats {
    flex-direction: column;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .work-hs-item {
    padding: 18px 32px;
    width: 100%;
  }

  .work-hs-divider {
    width: 80%;
    height: 1px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .work-impact-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .work-impact-chip {
    flex: 1;
    min-width: 70px;
  }

  .works-featured-section,
  .works-grid-section,
  .volunteer-strip {
    padding: 72px 0;
  }

  .vs-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .vs-buttons .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

/* =============================================
   WORK PAGE — RESPONSIVE 480px
   ============================================= */
@media (max-width: 480px) {
  .work-gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .wgs-thumb p {
    display: none;
  }

  .work-stats-row {
    gap: 0;
  }
}

/* =============================================
   WORK PAGE — GALLERY SLIDER
   ============================================= */

.wg-section {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}

.wg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.wg-header-left .section-tag {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
}

.wg-header-left .section-title {
  color: #fff;
  margin: 0;
}

.wg-nav-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.wg-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  backdrop-filter: blur(8px);
}

.wg-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.08);
}

.wg-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

.wg-slider-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.wg-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.wg-slide {
  flex: 0 0 calc(42% - 10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.wg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wg-slide:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .wg-section { padding: 60px 0; }

  .wg-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  /* Hide arrow buttons — native scroll handles navigation */
  .wg-nav-btns { display: none; }

  /* Enable native horizontal touch scroll */
  .wg-slider-wrap {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .wg-slider-wrap::-webkit-scrollbar { display: none; }

  .wg-track {
    transform: none !important;
    transition: none !important;
  }

  .wg-slide {
    flex: 0 0 calc(80% - 9px);
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .wg-slide {
    flex: 0 0 calc(88% - 9px);
  }
}

/* =============================================
   WORK PAGE — PROGRAMS SECTION
   ============================================= */

.programs-section {
  background: var(--white);
  padding: 100px 0;
}

.programs-section .section-subtitle {
  margin: 0 auto 64px;
  max-width: 600px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.prog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.prog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.prog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.prog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.prog-card:hover .prog-card-img img {
  transform: scale(1.06);
}

.prog-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13,31,60,0.72);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251,191,36,0.3);
}

.prog-card-body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.prog-card-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.78;
  margin-bottom: 20px;
  flex: 1;
}

.prog-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.prog-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  background: var(--gray-50);
  gap: 2px;
}

.prog-stat:not(:last-child) {
  border-right: 1px solid var(--gray-100);
}

.prog-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1;
}

.prog-stat-num sup {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--primary);
  font-weight: 700;
}

.prog-stat-label {
  font-size: 0.68rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
}

.prog-card-cta {
  align-self: flex-start;
}

/* --- Coming Soon card --- */
.prog-card--coming-soon {
  background: linear-gradient(160deg, #0d1f3c 0%, #1a2f50 60%, #0f172a 100%);
  border: 1.5px solid rgba(99,102,241,0.3);
  position: relative;
  overflow: hidden;
}

.prog-card--coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(99,102,241,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(251,191,36,0.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.prog-card--coming-soon .prog-card-body { position: relative; z-index: 1; }

.prog-cs-img-wrap {
  position: relative;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #0d1f3c, #1e1b4b);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prog-cs-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prog-cs-question {
  font-family: var(--font-serif);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(99,102,241,0.15);
  user-select: none;
  animation: prog-cs-pulse 2.8s ease-in-out infinite;
  display: block;
  line-height: 1;
}

@keyframes prog-cs-pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.28; transform: scale(1.06); }
}

.prog-cs-badge {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  border: none !important;
  color: #fff !important;
  letter-spacing: 0.02em;
}

.prog-cs-title {
  color: #f1f5f9 !important;
  background: linear-gradient(90deg, #e2e8f0, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prog-cs-desc {
  color: rgba(226,232,240,0.72) !important;
}

.prog-cs-desc strong {
  color: #fbbf24 !important;
  font-weight: 600;
}

.prog-cs-dots {
  display: flex;
  gap: 7px;
  margin: 18px 0 16px;
}

.prog-cs-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6366f1;
  animation: prog-cs-blink 1.4s ease-in-out infinite;
}

.prog-cs-dots span:nth-child(2) { animation-delay: 0.22s; }
.prog-cs-dots span:nth-child(3) { animation-delay: 0.44s; }

@keyframes prog-cs-blink {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
  40%            { opacity: 1;    transform: scale(1.15); }
}

.prog-cs-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.prog-cs-hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(165,180,252,0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prog-card--coming-soon .btn-outline {
  border-color: rgba(99,102,241,0.5);
  color: #a5b4fc;
}

.prog-card--coming-soon .btn-outline:hover {
  background: rgba(99,102,241,0.15);
  border-color: #6366f1;
  color: #e0e7ff;
}

@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .programs-section { padding: 72px 0; }
  .programs-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =============================================
   PROGRAM DETAIL PAGES — HERO & GRID
   ============================================= */

.prog-detail-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: calc(var(--nav-height) + 72px) 0 80px;
  text-align: center;
  overflow: hidden;
}

.prog-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,31,60,0.86) 0%, rgba(13,31,60,0.68) 55%, rgba(24,50,100,0.80) 100%);
  z-index: 0;
}

.prog-detail-hero .container { position: relative; z-index: 1; }
.prog-detail-hero .breadcrumb { justify-content: center; margin-bottom: 20px; }
.prog-detail-hero .breadcrumb,
.prog-detail-hero .breadcrumb span { color: rgba(255,255,255,0.5); }
.prog-detail-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.prog-detail-hero .breadcrumb a:hover { color: white; }
.prog-detail-hero .section-tag {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.prog-detail-hero .section-title { color: white; }
.prog-detail-hero .section-subtitle { color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto 48px; }

.prog-hero-stats {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.prog-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 36px;
  gap: 4px;
}

.prog-hero-stat:not(:last-child) {
  border-right: 1px solid var(--gray-100);
}

.prog-hs-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.05em;
  line-height: 1;
}

.prog-hs-num sup { font-size: 0.65em; vertical-align: super; font-weight: 700; }

.prog-hs-label {
  font-size: 0.76rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Program detail body */
.prog-detail-body {
  background: var(--white);
  padding: 100px 0;
}

.prog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.prog-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #B45309;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.prog-detail-title {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.prog-detail-text {
  font-size: 0.97rem;
  color: var(--gray-500);
  line-height: 1.82;
  margin-bottom: 16px;
}

.prog-detail-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--gray-700);
}

.prog-impacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.prog-impact-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 18px 12px;
  text-align: center;
  transition: all var(--transition);
}

.prog-impact-chip:hover {
  background: var(--primary-light);
  border-color: var(--primary-border);
}

.pic-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.pic-num sup { font-size: 0.65em; color: var(--primary); vertical-align: super; }

.pic-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Program image gallery grid */
.prog-gallery-section {
  background: var(--gray-50);
  padding: 100px 0;
}

.prog-gallery-section .section-subtitle {
  margin: 0 auto 56px;
}

.prog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.prog-gallery-grid .pg-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.prog-gallery-grid .pg-item:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}

.prog-gallery-grid .pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.prog-gallery-grid .pg-item:hover img {
  transform: scale(1.05);
}

/* Responsive program detail */
@media (max-width: 1024px) {
  .prog-detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .prog-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prog-gallery-grid .pg-item:first-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 768px) {
  .prog-detail-body { padding: 72px 0; }
  .prog-gallery-section { padding: 72px 0; }
  .prog-hero-stats { flex-direction: column; border-radius: var(--radius-lg); }
  .prog-hero-stat { padding: 16px 28px; width: 100%; border-right: none !important; border-bottom: 1px solid var(--gray-100); }
  .prog-hero-stat:last-child { border-bottom: none; }
  .prog-impacts { grid-template-columns: repeat(2, 1fr); }
  .prog-gallery-grid { grid-template-columns: 1fr; }
  .prog-gallery-grid .pg-item:first-child { grid-column: 1; aspect-ratio: 4/3; }
}

/* =============================================
   SIDE IMAGE CAROUSEL
   ============================================= */
.side-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  background: var(--gray-100);
}

.sc-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sc-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.sc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.side-carousel:hover .sc-slide img {
  transform: scale(1.03);
}

.sc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  z-index: 2;
  opacity: 0;
  padding: 0;
}

.side-carousel:hover .sc-btn { opacity: 1; }

.sc-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.sc-prev { left: 12px; }
.sc-next { right: 12px; }

.sc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.sc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.3s, border-radius 0.3s;
}

.sc-dot.active {
  background: #ffffff;
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .sc-btn { opacity: 1; width: 32px; height: 32px; }
}

/* =============================================
   PROGRAM PAGES — CTA SECTION
   ============================================= */

.prog-cta-section {
  position: relative;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Photo background layer */
.prog-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/work_images/hero_1.webp') center / cover no-repeat;
  z-index: 0;
}

/* Dark gradient overlay */
.prog-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 16, 38, 0.92) 0%,
    rgba(13, 31, 60, 0.88) 55%,
    rgba(18, 42, 82, 0.90) 100%
  );
  z-index: 1;
}

.prog-cta-section .container {
  position: relative;
  z-index: 2;
}

.prog-cta-title {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.prog-cta-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 36px;
}

.prog-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .prog-cta-section { padding: 72px 0; }
  .prog-cta-btns { flex-direction: column; align-items: center; }
  .prog-cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* =============================================
   MEMBERSHIP PAGE
   ============================================= */

/* Hero */
.mem-hero {
  position: relative;
  background-image: url('../images/work_images/img_9.webp');
  background-size: cover;
  background-position: center 40%;
  padding: calc(var(--nav-height) + 60px) 0 68px;
  overflow: hidden;
  text-align: center;
}
.mem-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,31,60,0.84) 0%,
    rgba(13,31,60,0.70) 55%,
    rgba(34,60,120,0.78) 100%
  );
  z-index: 0;
}
.mem-hero .container { position: relative; z-index: 1; }
.mem-hero .breadcrumb { justify-content: center; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.mem-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.mem-hero .breadcrumb span { color: rgba(255,255,255,0.45); }
.mem-hero .section-tag { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); }
.mem-hero .section-title { color: #fff; }
.mem-hero .section-subtitle { margin: 0 auto 32px; max-width: 640px; color: rgba(255,255,255,0.75); }

.mem-hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.mem-hero-badge {
  background: white;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}

/* Mode section */
.mem-mode-section { padding: 40px 0 60px; background: var(--white); }

/* Tabs */
.mem-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.mem-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  min-width: 220px;
}
.mem-tab:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.mem-tab.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 4px 20px rgba(37,99,235,0.15);
}
.mem-tab-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.mem-tab strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.mem-tab small {
  color: var(--gray-500);
  font-size: 0.79rem;
}
.mem-tab.active strong { color: var(--primary); }

/* Mode panels */
.mem-mode-panel { display: none; }
.mem-mode-panel.active { display: block; }

/* Journey steps */
.mem-journey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}
.mem-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.mem-journey-step span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
}
.mem-journey-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}
.mem-journey-step.active .mem-journey-dot {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}
.mem-journey-step.active span { color: var(--primary); }
.mem-journey-step.done .mem-journey-dot {
  background: var(--success);
  color: white;
  border-color: var(--success);
}
.mem-journey-step.done span { color: var(--success); }
.mem-journey-line {
  height: 2px;
  width: 80px;
  background: var(--gray-200);
  margin: 0 12px;
  margin-bottom: 24px;
}

/* Two-column layout */
.mem-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: start;
}

/* Form column */
.mem-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 26px 32px;
  box-shadow: var(--shadow-lg);
}
.mem-form-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.mem-form-icon {
  font-size: 1.5rem;
  background: var(--primary-light);
  width: 46px; height: 46px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mem-form-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 3px;
  letter-spacing: -0.03em;
}
.mem-form-header p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.45;
}

/* ── Google Form Embed ── */
.gform-embed-wrap {
  margin: 0 -32px -26px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overscroll-behavior: contain;
}
.gform-embed {
  display: block;
  width: 100%;
  height: 920px;
  border: none;
}

/* Form elements */
.mem-form { display: flex; flex-direction: column; gap: 13px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 130px; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 9px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 52px; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
  border-color: #EF4444;
  background: #FFF5F5;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-error {
  font-size: 0.78rem;
  color: #EF4444;
  font-weight: 600;
  display: none;
}
.form-error.visible { display: block; }
.form-help {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-style: italic;
}
.req { color: #EF4444; margin-left: 2px; }

/* Select wrapper */
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 36px; }
.select-arrow {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  font-size: 1rem;
}

/* Phone prefix */
.input-prefix-wrap { display: flex; }
.input-prefix {
  padding: 11px 12px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}
.input-prefix-wrap input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Privacy note */
.mem-privacy-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.mem-privacy-note span { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.mem-privacy-note p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* Submit button */
.mem-submit-btn { width: 100%; justify-content: center; }

/* Success state */
.mem-success {
  text-align: center;
  padding: 60px 20px;
}
.mem-success-icon { font-size: 4rem; margin-bottom: 20px; animation: popIn 0.5s ease; }
.mem-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.mem-success p { font-size: 0.95rem; color: var(--gray-500); max-width: 380px; margin: 0 auto 28px; line-height: 1.65; }
@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Compact payment card header (replaces big fee banner) */
.mem-pay-compact-header {
  background: linear-gradient(135deg, #0D1F3C 0%, #1a3568 100%);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
}
.mem-pay-compact-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}
.mem-pay-compact-fee {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.mem-pay-compact-fee span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-left: 3px;
  letter-spacing: 0;
}
.mem-pay-compact-badge {
  background: rgba(201,146,42,0.2);
  border: 1px solid rgba(201,146,42,0.5);
  color: #f0c060;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Payment column */
.mem-payment-col { position: sticky; top: calc(var(--nav-height) + 20px); }
.mem-payment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.mem-fee-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-deeper));
  padding: 28px 28px 24px;
  text-align: center;
  color: white;
}
.mem-fee-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}
.mem-fee-amount {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.mem-fee-amount span {
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 1;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0;
}
.mem-fee-note {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 6px;
}

.mem-benefits {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mem-benefit {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mem-benefit::before { content: ''; }

.mem-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 4px 0;
}

.mem-pay-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  padding: 20px 24px 12px;
  margin: 0;
}

.mem-qr-frame {
  display: flex;
  justify-content: center;
  padding: 0 24px 12px;
}
.mem-qr-frame img {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 12px;
  background: white;
}
.mem-qr-apps {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px 12px;
}
.mem-qr-apps span {
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-500);
}

/* ── Pay Alternatives (PhonePe & UPI ID) ── */
.mem-pay-alts {
  margin: 4px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mem-pay-alt-or {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  color: var(--gray-400);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mem-pay-alt-or::before,
.mem-pay-alt-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.mem-pay-alt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.mem-pay-alt-row:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-sm);
}
.mem-pay-alt-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mem-pay-alt-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mem-pay-alt-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.mem-pay-alt-value-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mem-pay-alt-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.mem-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.5;
}
.mem-copy-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.mem-copy-btn.copied {
  border-color: var(--success);
  color: var(--success);
  background: var(--success-light);
}

/* WhatsApp number display below QR */
.mem-qr-wa-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 24px 6px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
}
.mem-qr-wa-number-icon {
  width: 34px;
  height: 34px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37,211,102,0.35);
}
.mem-qr-wa-number-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mem-qr-wa-number-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #16a34a;
}
.mem-qr-wa-number-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #14532d;
  letter-spacing: 0.02em;
}
.mem-pay-note {
  font-size: 0.82rem;
  color: var(--gray-600);
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  margin: 0 24px 4px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  line-height: 1.45;
}

.mem-wa-btn {
  margin: 16px 24px 8px;
  width: calc(100% - 48px) !important;
  justify-content: center;
}
.mem-wa-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  padding: 0 24px 24px;
  line-height: 1.5;
  margin: 0;
}

.mem-help-box {
  margin-top: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}

/* Donate-only section */
.donate-only-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.donate-only-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.dos-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.dos-num {
  width: 34px; height: 34px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.dos-step strong { font-size: 0.98rem; font-weight: 700; color: var(--gray-900); display: block; margin-bottom: 4px; }
.dos-step p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.5; margin: 0; }

.donate-only-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.doi-card {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doi-amount { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.doi-label { font-size: 0.78rem; color: var(--gray-600); font-weight: 500; line-height: 1.3; }

/* =============================================
   MEMBERSHIP — CATEGORY + PLAN SELECTOR
   ============================================= */
.mcat-selector {
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 32px 36px;
  background: linear-gradient(160deg, #f8faff 0%, #ffffff 60%, #fef9f2 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.mcat-top {
  text-align: center;
  margin-bottom: 24px;
}
.mcat-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.mcat-subtitle {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
}

/* --- Category Cards --- */
.mcat-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.mcat-cat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
  font-family: var(--font);
  overflow: hidden;
}
.mcat-cat-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.mcat-cat-card.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, #eff6ff 0%, #f9fcff 100%);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.13);
}

.mcat-cat-check {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mcat-cat-card.active .mcat-cat-check {
  opacity: 1;
  transform: scale(1);
}

.mcat-cat-rec {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #b45309 0%, var(--gold) 100%);
  color: white;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.mcat-cat-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.mcat-cat-body strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.mcat-cat-body p {
  font-size: 0.79rem;
  color: var(--gray-500);
  line-height: 1.4;
  margin: 0;
}
.mcat-cat-card.active .mcat-cat-body strong {
  color: var(--primary);
}

/* --- Kit Includes (animated reveal) --- */
.mcat-kit-includes {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fef9ec 0%, #fffbf3 100%);
  border: 1.5px solid #fde68a;
  border-radius: var(--radius);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 18px;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
}
.mcat-kit-includes.visible {
  max-height: 100px;
  opacity: 1;
  padding: 12px 18px;
  margin-top: 12px;
}
.mcat-kit-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #92400e;
  white-space: nowrap;
}
.mcat-kit-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mcat-kit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #78350f;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 12px 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(253, 230, 138, 0.8);
}

/* --- Mandatory Fee Strip --- */
.mcat-mandatory-fee {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 18px;
  margin-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease, margin-bottom 0.3s ease;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3568 100%);
  border-radius: var(--radius);
  border: 1.5px solid rgba(201, 146, 42, 0.5);
}
.mcat-mandatory-fee.visible {
  max-height: 120px;
  opacity: 1;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.mcat-mandatory-fee-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mcat-mandatory-lock {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.mcat-mandatory-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mcat-mandatory-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f0c060;
}
.mcat-mandatory-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.mcat-mandatory-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.mcat-mandatory-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  line-height: 1.4;
}

/* --- Plan Selector --- */
.mcat-plans-wrap {
  margin-top: 22px;
}
.mcat-plans-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 12px;
}
.mcat-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
/* When first-time card is hidden (without-kit), grid re-flows to 3 visible cols */

.mcat-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 16px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
  overflow: hidden;
  user-select: none;
}
.mcat-plan-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.mcat-plan-card.active {
  border-color: var(--primary);
  background: linear-gradient(160deg, #eff6ff 0%, #f8faff 100%);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.16);
}
.mcat-plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, var(--primary) 0%, #1d4ed8 100%);
  color: white;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 0 var(--radius-sm) 0 var(--radius-sm);
}
.mcat-plan-name {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.mcat-plan-card.active .mcat-plan-name {
  color: var(--primary);
}
.mcat-plan-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}
.mcat-plan-card.active .mcat-plan-price {
  color: var(--primary);
}
.mcat-plan-note {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 500;
  line-height: 1.3;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .mcat-selector {
    padding: 24px 20px;
    margin-bottom: 28px;
  }
  .mcat-categories {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mcat-plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .mcat-kit-includes.visible {
    max-height: 160px;
  }
}
@media (max-width: 480px) {
  .mcat-selector {
    padding: 20px 16px;
  }
  .mcat-plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .mcat-kit-items {
    gap: 6px;
  }
  .mcat-kit-label {
    width: 100%;
    margin-bottom: 4px;
  }
}

/* Why become member */
.mem-why-section {
  background: var(--gray-50);
  padding: 100px 0;
}
.mem-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.mem-why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.mem-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-border);
}

/* =============================================
   ABOUT FOUNDER — PAGE HERO (DARK)
   ============================================= */
.afh-section {
  position: relative;
  background-image: url('../images/work_images/img_11.webp');
  background-size: cover;
  background-position: center 20%;
  padding: calc(var(--nav-height) + 60px) 0 72px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
}

.afh-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,12,41,0.88) 0%,
    rgba(48,43,99,0.80) 50%,
    rgba(36,36,62,0.85) 100%
  );
  pointer-events: none;
}

.afh-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.afh-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin: 16px 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.afh-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =============================================
   ABOUT FOUNDER — PROFILE SECTION
   ============================================= */
.af-profile-section {
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 55%, #fef9f2 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.af-profile-section::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.af-profile-section .container { position: relative; z-index: 1; }

.af-profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.af-profile-visual {
  position: sticky;
  top: 120px;
}

.af-profile-frame {
  position: relative;
  border-radius: 24px;
  padding: 4px;
  background: linear-gradient(135deg, #f59e0b 0%, #3f81ef 50%, #a855f7 100%);
  box-shadow: 0 24px 64px rgba(13,31,60,0.16), 0 4px 20px rgba(245,158,11,0.14);
  aspect-ratio: 3 / 4;
}

.af-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 21px;
}

.af-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1a0a2e;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 18px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.25);
}

/* Profile meta card */
.af-profile-meta {
  background: var(--white);
  border: 1px solid rgba(13,31,60,0.08);
  border-radius: 18px;
  padding: 20px 22px;
  margin-top: 14px;
  box-shadow: 0 4px 20px rgba(13,31,60,0.07);
}

.af-profile-meta-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.af-profile-meta-role {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.01em;
}

.af-profile-meta-stats {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(13,31,60,0.07);
}

.af-pm-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.af-pm-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.af-pm-label {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.af-pm-divider {
  width: 1px;
  height: 36px;
  background: rgba(13,31,60,0.10);
}

/* Profile content column */
.af-profile-content {
  padding-top: 4px;
}

.af-profile-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 18px;
}

.af-profile-text strong { color: var(--gray-900); }

.af-profile-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =============================================
   ABOUT FOUNDER — VALUES SECTION
   ============================================= */
.af-values-section {
  background: var(--gray-50);
  padding: 96px 0;
}

.af-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.af-value-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.af-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-border);
}

.af-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.af-value-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.af-value-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* =============================================
   ABOUT FOUNDER — QUOTE SECTION
   ============================================= */
.af-quote-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.af-quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.af-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.af-quote-glyph {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 1;
  color: rgba(251,191,36,0.25);
  display: block;
  margin-bottom: -24px;
}

.af-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 40px;
}

.af-quote-text em { color: #fbbf24; font-style: normal; }

.af-quote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.af-quote-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(251,191,36,0.5);
}

.af-quote-name { font-weight: 700; color: #fbbf24; font-size: 0.95rem; }
.af-quote-role { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-top: 2px; }

/* =============================================
   ABOUT FOUNDER — LEGACY STATS
   ============================================= */
.af-legacy-section {
  background: var(--white);
  padding: 96px 0;
}

.af-legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.af-legacy-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f6ff 100%);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.af-legacy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.af-legacy-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
}

.af-legacy-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
  display: block;
}

.af-legacy-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* =============================================
   ABOUT FOUNDER — LIGHT BREADCRUMB
   ============================================= */
.breadcrumb-light { color: rgba(255,255,255,0.55) !important; }
.breadcrumb-light a { color: rgba(255,255,255,0.8) !important; }
.breadcrumb-light a:hover { opacity: 0.85 !important; }
.breadcrumb-light span { color: rgba(255,255,255,0.45) !important; }

/* =============================================
   ABOUT ORGANIZATION — INTRO SECTION
   ============================================= */
.org-intro-section {
  background: var(--white);
  padding: 96px 0;
}

.org-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  margin-top: 56px;
}

.org-intro-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 24px 64px rgba(15, 30, 70, 0.14), 0 4px 16px rgba(15, 30, 70, 0.08);
}

.org-intro-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 20, 50, 0.45) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.org-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.org-intro-visual:hover img {
  transform: scale(1.03);
}

.org-intro-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.org-intro-badge-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.org-intro-badge-label {
  font-size: 0.76rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.3;
}

.org-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.org-intro-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 18px;
}

.org-intro-text p:last-child { margin-bottom: 0; }

/* --- Founding Story — Image Mosaic --- */
.org-story-mosaic {
  display: flex;
  flex-direction: row;
  gap: 5px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(15, 30, 70, 0.18), 0 4px 20px rgba(15, 30, 70, 0.1);
  cursor: zoom-in;
  height: 100%;
  max-height: 440px;
}

.osm-main {
  flex: 3;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.osm-sub-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 0;
}

.osm-sub-col .osm-item {
  flex: 1;
  min-height: 0;
}

.osm-item {
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}

.osm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.osm-item:hover img { transform: scale(1.08); }

.osm-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 18, 48, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Hover overlay */
.osm-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 65, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 1;
}

.osm-item:hover .osm-hover-overlay {
  background: rgba(10, 25, 65, 0.3);
}

.osm-zoom-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.osm-item:hover .osm-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.osm-main .org-intro-badge { z-index: 2; }

/* Lightbox */
.osm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.osm-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.osm-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 30, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.osm-lb-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1100px);
}

.osm-lb-frame img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  display: block;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.osm-lightbox.open .osm-lb-frame img {
  transform: scale(1);
}

.osm-lb-counter {
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.osm-lb-close,
.osm-lb-prev,
.osm-lb-next {
  position: fixed;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.osm-lb-close { top: 20px; right: 24px; width: 42px; height: 42px; }

.osm-lb-prev,
.osm-lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

.osm-lb-prev { left: 20px; }
.osm-lb-next { right: 20px; }

.osm-lb-close:hover { background: rgba(255, 255, 255, 0.22); }
.osm-lb-prev:hover,
.osm-lb-next:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-50%) scale(1.06); }

@media (max-width: 480px) {
  .osm-lb-prev { left: 10px; }
  .osm-lb-next { right: 10px; }
  .osm-lb-prev,
  .osm-lb-next { width: 40px; height: 40px; }
}

/* =============================================
   ABOUT ORGANIZATION — TRUST / TRANSPARENCY
   ============================================= */
.org-trust-section {
  background: linear-gradient(160deg, #f4f8ff 0%, #edf3ff 100%);
  padding: 96px 0;
}

.org-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.org-trust-card {
  background: #fff;
  border: 1px solid rgba(63,129,239,0.12);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(63,129,239,0.06);
  transition: all var(--transition);
}

.org-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(63,129,239,0.14);
  border-color: var(--primary-border);
}

.org-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: var(--primary-light);
}

.org-trust-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.org-trust-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* =============================================
   NAVBAR DROPDOWN — MOBILE
   ============================================= */
@media (max-width: 768px) {
  .nav-item-dropdown > a {
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    opacity: 1 !important;
    pointer-events: all !important;
    min-width: unset !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease !important;
    display: block;
  }

  .nav-dropdown::before { display: none !important; }

  .nav-item-dropdown.open .nav-dropdown {
    max-height: 200px;
  }

  .nav-item-dropdown.open .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown li { list-style: none; }

  .nav-dropdown-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: 16px !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 0.87rem !important;
    color: var(--gray-600) !important;
    background: transparent !important;
  }

  .nav-dropdown-link:hover {
    padding-left: 18px !important;
    background: rgba(63,129,239,0.07) !important;
    color: var(--primary) !important;
  }

  /* Responsive — founder & org pages */
  .afh-section {
    padding: calc(72px + 48px) 0 64px;
  }

  .af-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .af-profile-visual {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  .af-profile-badge,
  .af-profile-meta { margin-left: auto; margin-right: auto; }

  .af-profile-content { text-align: left; }

  .af-profile-cta { justify-content: flex-start; }

  .af-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .af-legacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .org-intro-visual {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .org-story-mosaic {
    height: 340px;
    flex-direction: row;
  }

  .osm-main { flex: 3; }

  .osm-sub-col {
    flex: 2;
    flex-direction: column;
  }

  .org-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .af-profile-visual {
    max-width: 260px;
  }

  .af-profile-meta {
    padding: 16px 18px;
  }

  .af-pm-num {
    font-size: 0.95rem;
  }

  .af-profile-cta {
    flex-direction: column;
  }

  .af-profile-cta .btn {
    width: 100%;
    text-align: center;
  }

  .af-legacy-grid {
    grid-template-columns: 1fr;
  }

  .af-values-grid,
  .org-trust-grid {
    grid-template-columns: 1fr;
  }

  .org-story-mosaic {
    height: 300px;
  }
}
.mem-why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.mem-why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.mem-why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* FAQ */
.mem-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
}
.mem-faq {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.mem-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.mem-faq-q:hover { background: var(--gray-50); }
.faq-arrow { transition: transform 0.25s ease; font-size: 1rem; color: var(--gray-400); flex-shrink: 0; }
.mem-faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.mem-faq-a.open {
  max-height: 600px;
  padding: 0 20px 18px;
}

/* =============================================
   MEMBERSHIP — RESPONSIVE 1024px
   ============================================= */
@media (max-width: 1024px) {
  .mem-layout { grid-template-columns: 1fr; }
  .mem-payment-col { position: static; }
  .mem-payment-card { max-width: 500px; margin: 0 auto; }
  .donate-only-wrap { grid-template-columns: 1fr; }
  .donate-only-right { max-width: 500px; margin: 0 auto; }
  .mem-why-grid { grid-template-columns: repeat(2, 1fr); }
  .mem-faq-grid { grid-template-columns: 1fr; }
}

/* =============================================
   MEMBERSHIP — RESPONSIVE 768px
   ============================================= */
@media (max-width: 768px) {
  .mem-tabs { flex-direction: column; align-items: stretch; }
  .mem-tab { min-width: unset; }
  .form-row-2,
  .form-row-3 { grid-template-columns: 1fr; }
  .donate-only-impact { grid-template-columns: 1fr; }
  .mem-journey-line { width: 40px; }
  .mem-why-grid { grid-template-columns: 1fr; }
  .mem-hero { padding: calc(var(--nav-height) + 40px) 0 48px; }
  .mem-form-card { padding: 24px 20px; }
  /* Google Form: constrain height so users can scroll past it on mobile */
  .gform-embed-wrap {
    margin: 0 -20px 0;
    height: 72vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }
  .gform-embed { height: 1300px; }
}

/* =============================================
   MEMBERSHIP — RESPONSIVE 480px
   ============================================= */
@media (max-width: 480px) {
  .mem-hero-badges { gap: 7px; }
  .mem-hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .mem-journey { gap: 0; }
  .mem-journey-line { width: 24px; }
  .mem-journey-step span { font-size: 0.7rem; }
  .mem-journey-dot { width: 28px; height: 28px; font-size: 0.78rem; }
  /* Slightly taller form container on small phones */
  .gform-embed-wrap { height: 78vh; }
}

/* =============================================
   WORK PAGE — RESPONSIVE 480px (continued)
   ============================================= */
@media (max-width: 480px) {
  .wsr-item {
    padding: 14px 6px;
  }

  .work-hero-stats {
    max-width: 260px;
  }

  .work-hs-num {
    font-size: 1.5rem;
  }
}

/* =============================================
   HERO CARD — PREMIUM UPGRADES (index.html)
   ============================================= */
.card-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.card-icon-header .card-icon-block {
  margin-bottom: 0;
}

.card-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

.card-metric-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0;
}

.card-metric {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  background: var(--gray-50);
  transition: background var(--transition);
}

.card-metric:not(:last-child) {
  border-right: 1px solid var(--gray-100);
}

.card-main:hover .card-metric {
  background: var(--primary-light);
}

.metric-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}

.metric-lbl {
  font-size: 0.69rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* =============================================
   PROGRAMS PREVIEW  (index.html)
   ============================================= */
.programs-preview {
  background: #f8faff;
  position: relative;
  overflow: hidden;
}

/* Subtle radial tint top-right */
.programs-preview::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 129, 239, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* section-tag & title — default light styles apply, no overrides needed */
.programs-preview .section-tag {
  background: rgba(63, 129, 239, 0.08);
  color: var(--primary);
  border-color: rgba(63, 129, 239, 0.18);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

/* ---- Per-card accent colours ---- */
:root {
  --card-1-accent: #f97316;   /* warm orange  — Food */
  --card-2-accent: #a855f7;   /* violet       — Elder Care */
  --card-3-accent: #10b981;   /* emerald      — Emergency Aid */
}

/* ---- Card shell ---- */
.program-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 8px 28px rgba(0, 0, 0, 0.07);
  position: relative;
}

/* Coloured top accent stripe per card */
.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
}
.program-card:nth-child(1)::before { background: var(--card-1-accent); }
.program-card:nth-child(2)::before { background: var(--card-2-accent); }
.program-card:nth-child(3)::before { background: var(--card-3-accent); }

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.11), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #d0daee;
}

/* ---- Image area ---- */
.program-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.program-card:hover .program-card-image img {
  transform: scale(1.07);
}

.program-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 25%,
    rgba(8, 16, 38, 0.60) 100%
  );
  pointer-events: none;
}

/* Category badge — accent-coloured per card */
.program-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
}
.program-card:nth-child(1) .program-badge { background: rgba(249, 115, 22, 0.85); }
.program-card:nth-child(2) .program-badge { background: rgba(168, 85, 247, 0.85); }
.program-card:nth-child(3) .program-badge { background: rgba(16, 185, 129, 0.85); }

/* ---- Text body ---- */
.program-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 0;
}

.program-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.program-card-body p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

/* ---- Stat pill ---- */
.program-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-500);
  background: #f4f7fd;
  border: 1px solid #e4eaf5;
  border-radius: 10px;
  padding: 7px 13px;
  margin-bottom: 16px;
}

.prog-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.prog-stat-sep {
  color: var(--gray-300);
  font-weight: 700;
}

.prog-num {
  font-weight: 800;
  font-size: 0.94rem;
}
.program-card:nth-child(1) .prog-num { color: var(--card-1-accent); }
.program-card:nth-child(2) .prog-num { color: var(--card-2-accent); }
.program-card:nth-child(3) .prog-num { color: var(--card-3-accent); }

/* ---- CTA link ---- */
.program-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 16px 22px;
  border-top: 1px solid #edf0f7;
  margin-top: auto;
  transition: gap 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.program-card:nth-child(1) .program-link { color: var(--card-1-accent); }
.program-card:nth-child(2) .program-link { color: var(--card-2-accent); }
.program-card:nth-child(3) .program-link { color: var(--card-3-accent); }

.program-link:hover {
  gap: 12px;
  background: #f8faff;
}

.program-link .arrow {
  transition: transform 0.25s ease;
}

.program-link:hover .arrow {
  transform: translateX(4px);
}

/* =============================================
   TESTIMONIALS  (index.html)
   ============================================= */
.testimonials-section {
  background: linear-gradient(160deg, #e8eef8 0%, #dde6f4 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative blurred blobs */
.testimonials-section::before,
.testimonials-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.testimonials-section::before {
  width: 500px;
  height: 500px;
  top: -160px;
  left: -160px;
  background: radial-gradient(circle, rgba(63, 129, 239, 0.10) 0%, transparent 65%);
}
.testimonials-section::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 65%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 36px 30px 28px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.90) inset,
    0 4px 20px rgba(13, 31, 60, 0.08),
    0 12px 40px rgba(13, 31, 60, 0.07);
  position: relative;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Subtle coloured left border accent */
.testimonial-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 22px 0 0 22px;
}
.testimonial-card:nth-child(1)::before { background: linear-gradient(180deg, #f97316, #fbbf24); }
.testimonial-card:nth-child(2)::before { background: linear-gradient(180deg, #3f81ef, #7db4ff); }
.testimonial-card:nth-child(3)::before { background: linear-gradient(180deg, #10b981, #34d399); }

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.90) inset,
    0 16px 56px rgba(13, 31, 60, 0.14),
    0 4px 16px rgba(13, 31, 60, 0.08);
  border-color: rgba(255, 255, 255, 0.95);
}

.quote-mark {
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.08;
  position: absolute;
  top: 8px;
  left: 22px;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.t-text {
  font-size: 0.93rem;
  color: #2d3a52;
  line-height: 1.82;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Thin separator above author */
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 31, 60, 0.08);
}

.t-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.t-info {
  flex: 1;
}

.t-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2540;
}

.t-role {
  font-size: 0.74rem;
  color: #6b7a96;
  margin-top: 2px;
}

.t-stars {
  font-size: 0.68rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* =============================================
   PREMIUM ADDITIONS — RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .programs-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-card-image {
    height: 230px;
  }
}

@media (max-width: 768px) {
  .programs-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .programs-preview,
  .testimonials-section {
    padding: 72px 0;
  }

  .program-card-image {
    height: 220px;
  }
}
