/* ========================================
   Monark Shikshan Evam Kalyan Samiti
   Modern bilingual NGO website
   ======================================== */

:root {
  --primary: #0d7c5f;
  --primary-dark: #065a44;
  --primary-light: #0a9d76;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --ink: #0f172a;
  --ink-2: #334155;
  --ink-3: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-soft: #f1f5f9;
  --grad: linear-gradient(135deg, #0d7c5f 0%, #0a9d76 100%);
  --grad-warm: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow: 0 4px 6px -1px rgba(15,23,42,0.08), 0 2px 4px -2px rgba(15,23,42,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15,23,42,0.1), 0 8px 10px -6px rgba(15,23,42,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container: 1200px;
  --font-hi: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
  --font-en: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', 'Noto Sans Devanagari', serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-hi);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

html[data-lang="en"] body { font-family: var(--font-en); }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Topbar ============ */
.topbar {
  background: var(--primary-dark);
  color: #d1fae5;
  font-size: 13.5px;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__item svg { width: 14px; height: 14px; }
.lang-toggle {
  margin-left: auto;
  display: inline-flex;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle__pill {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #d1fae5;
  transition: all 0.25s;
}
html[data-lang="hi"] .lang-toggle__pill[data-lang-key="hi"],
html[data-lang="en"] .lang-toggle__pill[data-lang-key="en"] {
  background: var(--accent);
  color: #fff;
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: drop-shadow(0 4px 12px rgba(13,124,95,0.35));
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Dark backdrop for header (light page) so the white-interior logo pops */
.brand__mark--dark {
  background: radial-gradient(circle at 50% 50%, #0a9d76 0%, #065a44 70%, #053d2e 100%);
  padding: 3px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.1);
}
.brand__mark--dark img {
  border-radius: 50%;
}
/* Footer backdrop (footer is already dark, give it subtle inner ring) */
.brand__mark--footer {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle at 50% 50%, #0a9d76 0%, #065a44 75%);
  padding: 3px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}
.brand__mark--footer img {
  border-radius: 50%;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 16px; font-weight: 700; color: var(--ink); }
.brand__text small { font-size: 12px; color: var(--primary); font-weight: 600; letter-spacing: 0.5px; }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.2s;
}
.nav a:hover { color: var(--primary); background: var(--bg-soft); }
.nav .nav__cta {
  margin-left: 8px;
  background: var(--grad);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(13,124,95,0.3);
}
.nav .nav__cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.hamburger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(13,124,95,0.3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(13,124,95,0.4); }
.btn--ghost {
  background: var(--bg);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--white {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn--white:hover { transform: translateY(-2px); }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(13,124,95,0.08), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(245,158,11,0.08), transparent 50%),
    linear-gradient(180deg, #fafdfb 0%, #ffffff 100%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { max-width: 620px; }

.badge {
  display: inline-block;
  background: rgba(13,124,95,0.08);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}
.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
}
.stat span { font-size: 13px; color: var(--ink-3); }

/* Hero visual — orbiting cards */
.hero__visual {
  position: relative;
  height: 480px;
  --orbit-radius: 180px;
  --orbit-speed: 36s;
}
.hero__circle {
  position: absolute;
  top: 50%; left: 50%;
  width: 360px; height: 360px;
  transform: translate(-50%, -50%);
  background: var(--grad);
  border-radius: 50%;
  opacity: 0.07;
  filter: blur(50px);
}
.hero__orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: calc(var(--orbit-radius) * 2);
  height: calc(var(--orbit-radius) * 2);
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(13, 124, 95, 0.18);
  border-radius: 50%;
}
.hero__center {
  position: absolute;
  top: 50%; left: 50%;
  width: 140px; height: 140px;
  margin: -70px 0 0 -70px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #0a6e51 0%, #054a37 70%, #033827 100%);
  padding: 8px;
  box-shadow:
    0 0 0 6px rgba(13, 124, 95, 0.15),
    0 0 0 12px rgba(13, 124, 95, 0.07),
    0 18px 40px rgba(3, 56, 39, 0.5),
    inset 0 0 0 2px rgba(245, 158, 11, 0.35),
    inset 0 0 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 4s ease-in-out infinite;
}
.hero__center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.hero__card {
  position: absolute;
  top: 50%; left: 50%;
  width: 130px;
  margin: -50px 0 0 -65px;
  background: #fff;
  padding: 16px 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  animation: orbit var(--orbit-speed) linear infinite;
}
.hero__card svg {
  width: 34px; height: 34px;
  padding: 7px;
  border-radius: 12px;
  color: #fff;
  flex-shrink: 0;
}
.hero__card--1 { animation-delay: 0s; }
.hero__card--1 svg { background: var(--grad); }
.hero__card--2 { animation-delay: calc(var(--orbit-speed) * -0.25); }
.hero__card--2 svg { background: var(--grad-warm); }
.hero__card--3 { animation-delay: calc(var(--orbit-speed) * -0.5); }
.hero__card--3 svg { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.hero__card--4 { animation-delay: calc(var(--orbit-speed) * -0.75); }
.hero__card--4 svg { background: linear-gradient(135deg, #ec4899, #f43f5e); }

@keyframes orbit {
  from { transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); }
}

.hero__card:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .hero__card, .hero__center { animation: none; }
}

/* ============ Sections (generic) ============ */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-alt); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.kicker {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.kicker--light { color: #fcd34d; }
.section__head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.section__sub { margin-top: 16px; font-size: 16px; color: var(--ink-3); }

/* ============ About ============ */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.about__copy p { margin-bottom: 18px; color: var(--ink-2); font-size: 16.5px; }
.about__copy p strong { color: var(--ink); }

.about__points {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.about__points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-2);
  font-weight: 500;
}
.about__points li span:first-child {
  color: var(--accent);
  font-weight: 800;
}

.about__card {
  background: var(--grad);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__card h3 { font-size: 20px; margin-bottom: 24px; font-weight: 700; }
.reg dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  margin-top: 16px;
}
.reg dt:first-child { margin-top: 0; }
.reg dd { font-size: 15.5px; font-weight: 600; margin-top: 4px; }

/* ============ Objectives ============ */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.obj {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.obj::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.obj > * { position: relative; z-index: 1; }
.obj:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.obj:hover::before { opacity: 1; }
.obj:hover h4, .obj:hover p { color: #fff; }
.obj:hover .obj__num {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.obj__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--bg-soft);
  color: var(--primary);
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  transition: all 0.3s;
}
.obj h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--ink); transition: color 0.3s; }
.obj p { font-size: 14.5px; color: var(--ink-3); transition: color 0.3s; line-height: 1.55; }

/* ============ Schools ============ */
.schools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.school {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.school:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.school__img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.school__img svg { width: 80px; height: 80px; opacity: 0.95; }
.school__img--1 {
  background: linear-gradient(135deg, #0d7c5f 0%, #0a9d76 100%);
}
.school__img--2 {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}
.school__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}
.school__body { padding: 28px; }
.chip {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.school__body h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.school__loc { color: var(--ink-3); font-size: 14px; margin-bottom: 12px; }
.school__body > p { color: var(--ink-2); font-size: 15px; }

/* ============ Activities ============ */
.acts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.act {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.act:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.act__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.act__icon svg { width: 30px; height: 30px; }
.act__icon--green { background: var(--grad); }
.act__icon--orange { background: var(--grad-warm); }
.act__icon--blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.act__icon--purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.act h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.act p { color: var(--ink-3); font-size: 14.5px; }

/* ============ Gallery ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.gphoto {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.gphoto:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.gphoto__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}
.gphoto__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gphoto:hover .gphoto__media img { transform: scale(1.06); }
.gphoto__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  background: repeating-linear-gradient(
    45deg,
    #ecfdf5,
    #ecfdf5 12px,
    #f0fdf4 12px,
    #f0fdf4 24px
  );
  color: var(--primary-dark);
  transition: opacity 0.3s;
}
.gphoto.loaded .gphoto__placeholder { opacity: 0; pointer-events: none; }
.gphoto__placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  opacity: 0.55;
}
.gphoto__placeholder code {
  font-family: ui-monospace, 'Cascadia Code', Menlo, monospace;
  background: #fff;
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid rgba(13,124,95,0.15);
  letter-spacing: 0.2px;
}
.gphoto__placeholder small {
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 500;
}
.gphoto figcaption {
  padding: 14px 16px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gphoto figcaption strong {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.gphoto figcaption span {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.45;
}

.gallery__note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
  background: var(--bg-soft);
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px dashed var(--line);
}
.gallery__note code {
  background: #fff;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 12.5px;
  color: var(--primary-dark);
  font-weight: 600;
  border: 1px solid var(--line);
}

/* ============ Donate ============ */
.donate-section {
  background:
    linear-gradient(135deg, rgba(6,90,68,0.95), rgba(10,157,118,0.9)),
    radial-gradient(circle at 20% 30%, rgba(245,158,11,0.2), transparent 50%);
  background-color: var(--primary-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.donate-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 70%);
  border-radius: 50%;
}
.donate {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.donate__copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}
.donate__copy p { font-size: 17px; opacity: 0.9; margin-bottom: 28px; max-width: 540px; }
.donate__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.donate__card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.donate__card h3 { font-size: 20px; margin-bottom: 22px; font-weight: 700; display: flex; align-items: center; }
.donate__card h3 svg { color: #fcd34d; }

/* Bank details */
.bank { display: flex; flex-direction: column; gap: 14px; }
.bank__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: background 0.2s;
}
.bank__row:hover { background: rgba(255,255,255,0.1); }
.bank__row small {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.7;
  font-weight: 600;
}
.bank__row strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}
.bank__row strong.mono {
  font-family: ui-monospace, 'Cascadia Code', Menlo, monospace;
  color: #fcd34d;
  letter-spacing: 0.5px;
  font-size: 16px;
}
.bank__row--copy {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bank__row--copy > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.copy-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.copy-btn:hover { background: rgba(252, 211, 77, 0.3); color: #fcd34d; }
.copy-btn svg { width: 16px; height: 16px; }
.copy-btn__check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s;
}
.copy-btn.copied .copy-btn__check {
  opacity: 1;
  transform: scale(1);
}

.donate__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
  margin: 24px 0 20px;
}

.ways__head { font-size: 14px; font-weight: 700; margin-bottom: 8px; opacity: 0.85; letter-spacing: 0.5px; text-transform: uppercase; }
.ways { list-style: none; }
.ways li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
}
.ways li:last-child { border-bottom: none; }
.ways li b { color: #fcd34d; font-size: 15px; font-weight: 800; min-width: 80px; }
.ways li span { opacity: 0.9; text-align: right; }
.note { margin-top: 14px; font-size: 12.5px; opacity: 0.7; font-style: italic; text-align: center; }

/* ============ Contact ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact__info { display: grid; gap: 28px; }
.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-item__icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item__icon svg { width: 22px; height: 22px; }
.info-item h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-3);
  margin-bottom: 6px;
  font-weight: 700;
}
.info-item p { color: var(--ink); font-weight: 500; line-height: 1.6; }
.info-item a { color: var(--primary); font-weight: 600; }
.info-item a:hover { text-decoration: underline; }

.contact__form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact__form h3 { font-size: 22px; margin-bottom: 24px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact__form label {
  display: block;
  margin-bottom: 16px;
}
.contact__form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  background: var(--bg-alt);
  transition: all 0.2s;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13,124,95,0.1);
}
.contact__form button { width: 100%; justify-content: center; margin-top: 8px; }
.form-status {
  margin-top: 14px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  min-height: 20px;
  text-align: center;
}

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: #cbd5e1;
  padding-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
}
.brand--footer { margin-bottom: 18px; }
.brand--footer .brand__text strong { color: #fff; font-size: 14.5px; }
.brand--footer .brand__text small { color: #94a3b8; }
.footer__col p { font-size: 14.5px; color: #94a3b8; max-width: 320px; }
.footer__col h6 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: #cbd5e1;
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  font-size: 13.5px;
  color: #94a3b8;
  text-align: center;
}

/* ============ Floating Action Buttons (FAB) ============ */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 200;
}
.fab__btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  transition: transform 0.25s, box-shadow 0.25s, width 0.3s;
  text-decoration: none;
}
.fab__btn:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(0,0,0,0.32); }
.fab__btn svg { width: 28px; height: 28px; }
.fab__btn--wa {
  background: #25D366;
  animation: wa-pulse 2.4s infinite;
}
.fab__btn--call {
  background: linear-gradient(135deg, #0d7c5f, #0a9d76);
}
.fab__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #1e293b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.25s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.fab__label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #1e293b;
}
.fab__btn:hover .fab__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .fab { bottom: 16px; right: 16px; gap: 12px; }
  .fab__btn { width: 52px; height: 52px; }
  .fab__btn svg { width: 24px; height: 24px; }
  .fab__label { display: none; }
}

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    gap: 4px;
  }
  .nav.open { right: 0; }
  .nav a { padding: 14px; border-radius: 10px; font-size: 16px; }
  .nav .nav__cta { margin-left: 0; margin-top: 12px; text-align: center; }

  .hamburger { display: flex; z-index: 110; }

  .hero { padding: 60px 0 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 360px; order: -1; --orbit-radius: 130px; }
  .hero__card { width: 100px; margin: -42px 0 0 -50px; padding: 12px 8px; font-size: 12.5px; }
  .hero__card svg { width: 28px; height: 28px; padding: 6px; }
  .hero__center { width: 100px; height: 100px; margin: -50px 0 0 -50px; padding: 5px; }

  .about { grid-template-columns: 1fr; gap: 32px; }
  .schools { grid-template-columns: 1fr; }
  .donate { grid-template-columns: 1fr; gap: 32px; }
  .contact { grid-template-columns: 1fr; gap: 28px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 0; }
  .topbar__item--hide-sm { display: none; }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat strong { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .container { padding: 0 18px; }
}

/* Print-friendly */
@media print {
  .header, .topbar, .hero__visual, .footer, .nav, .hamburger { display: none; }
}
