/* =============================================
   BKNJ Website — Brahma Kumaris @ Piscataway, NJ
   Modern Design System v2
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Spiritual palette: warm indigo + saffron amber + cream */
  --indigo:        #4338ca;
  --indigo-dark:   #312e81;
  --indigo-light:  #6366f1;
  --indigo-soft:   #eef2ff;
  --indigo-glow:   rgba(99, 102, 241, .14);

  --amber:         #f59e0b;
  --amber-dark:    #d97706;
  --amber-soft:    #fffbeb;
  --amber-glow:    rgba(245, 158, 11, .16);

  --cream:         #fafaf7;
  --cream-dark:    #f5f3ee;

  --surface:       #ffffff;
  --border:        #e5e7eb;
  --border-soft:   rgba(67, 56, 202, .1);

  --text:          #111827;
  --text-muted:    #4b5563;
  --text-light:    #6b7280;

  --radius-sm:     10px;
  --radius:        18px;
  --radius-lg:     28px;
  --radius-xl:     40px;

  --shadow-sm:     0 2px 8px rgba(15,23,42,.06);
  --shadow:        0 8px 30px rgba(15,23,42,.08);
  --shadow-lg:     0 20px 60px rgba(15,23,42,.10);
  --shadow-indigo: 0 12px 40px rgba(67,56,202,.18);

  --transition:    .22s cubic-bezier(.4,0,.2,1);
  --transition-slow: .4s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--indigo);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--indigo-dark); text-decoration: underline; }

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

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.15;
  color: var(--text);
}

button, input, textarea, select { font: inherit; }

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 24px rgba(15,23,42,.07);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

header img.logo {
  height: 44px;
  width: auto;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icons a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-2px) scale(1.08);
  background: var(--indigo-soft);
  box-shadow: 0 4px 14px rgba(67,56,202,.15);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

/* ── NAVIGATION ── */
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav.main-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

nav.main-nav a:hover {
  background: var(--indigo-soft);
  color: var(--indigo);
  transform: translateY(-1px);
  text-decoration: none;
}

nav.main-nav a.active {
  background: var(--indigo-soft);
  color: var(--indigo);
  box-shadow: inset 0 0 0 1.5px rgba(99,102,241,.2);
}

/* Donate link stands out */
nav.main-nav a[href="/donations"] {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #fff;
  padding: 8px 18px;
}
nav.main-nav a[href="/donations"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,.3);
  color: #fff;
}

/* ── MOBILE MENU ── */
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  cursor: pointer;
  transition: background var(--transition);
}
.menu-toggle:hover { background: var(--indigo-soft); }
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle span + span { margin-top: 5px; }

.mobile-nav {
  display: none;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 0 12px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,0,0,.04);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), padding var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--indigo-soft);
  color: var(--indigo);
  padding-left: 34px;
}

/* ── MAIN CONTENT ── */
main { flex: 1; }

/* ── HERO BANNER (all pages) ── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--indigo-dark) 0%, #1e1b4b 50%, #312e81 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(99,102,241,.2) 0%, transparent 50%);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-banner-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.hero-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0;
}

/* ── HOME HERO ── */
.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  z-index: 1;
}

.home-hero-overlay {
  position: relative;
  z-index: 2;
  min-height: clamp(440px, 58vh, 640px);
  background: linear-gradient(
    160deg,
    rgba(15,10,40,.72) 0%,
    rgba(31,25,70,.60) 40%,
    rgba(50,30,10,.25) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.home-hero-text {
  max-width: 780px;
}

.home-hero-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 999px;
  padding: 6px 20px;
  margin-bottom: 18px;
}

.home-hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.home-hero-text p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  line-height: 1.75;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--indigo) 100%);
  padding: 20px 24px;
}

.stats-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 32px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── PAGE CONTAINER ── */
.page-container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 52px 28px 80px;
}

/* ── SECTION HEADINGS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-soft);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
}

h1.page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  padding-bottom: 18px;
  margin-bottom: 30px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--indigo), var(--amber)) 1;
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card p, .card li {
  line-height: 1.82;
  color: var(--text-muted);
}

.card p + p { margin-top: 14px; }

.card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.card ul {
  list-style: none;
  margin-top: 14px;
}

.card ul li {
  padding: 5px 0 5px 22px;
  position: relative;
}

.card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-size: .6rem;
  top: 9px;
}

/* ── NOTE BOX ── */
.note-box {
  background: linear-gradient(135deg, var(--indigo-soft) 0%, rgba(245,158,11,.07) 100%);
  border: 1px solid rgba(99,102,241,.15);
  border-left: 4px solid var(--indigo);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 28px;
  line-height: 1.78;
  color: var(--text-muted);
  font-size: .97rem;
}

.note-box strong { color: var(--indigo); }
.note-box a { color: var(--indigo); font-weight: 600; }

/* ── HOME WELCOME SECTION ── */
.home-content {
  max-width: 1020px;
  margin: 0 auto;
  padding: 52px 28px 72px;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 36px 0 32px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99,102,241,.2);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card .section-highlight {
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  color: var(--indigo);
  background: var(--indigo-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
  letter-spacing: .04em;
}

.feature-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ── SECTION SPLIT ── */
.section-split {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
}

.section-split .card { margin: 0; }

.section-split .card ul {
  list-style: none;
  margin-top: 14px;
}

/* ── HOME SECTIONS ── */
.home-section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 36px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-section-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
  border-radius: 2px;
}

/* ── EVENT LIST ── */
.event-list {
  display: grid;
  gap: 14px;
}

.event-item {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}

.event-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: rgba(99,102,241,.2);
  text-decoration: none;
  color: inherit;
}

.event-date {
  min-width: 68px;
  text-align: center;
  background: linear-gradient(135deg, var(--indigo-soft), #dde4ff);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  flex-shrink: 0;
  border: 1px solid rgba(99,102,241,.12);
}

.event-date .month {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--indigo);
}

.event-date .day {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
}

.event-info .event-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 6px;
}

.event-info .event-time {
  font-size: .88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-info .event-time::before {
  content: '🕐';
  font-size: .8rem;
}

.event-tag {
  display: inline-flex;
  font-size: .74rem;
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: .03em;
}

.event-tag.meditation {
  background: var(--indigo-soft);
  color: var(--indigo);
}

.event-tag.children {
  background: #fff7ed;
  color: #c2410c;
}

.event-tag.course {
  background: #f0fdf4;
  color: #15803d;
}

/* default tag (for pages using generic .event-tag) */
.event-tag:not(.meditation):not(.children):not(.course) {
  background: var(--indigo-soft);
  color: var(--indigo);
}

.view-more {
  margin-top: 20px;
  font-size: .97rem;
  font-weight: 700;
  text-align: right;
}

.view-more a {
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.view-more a:hover {
  gap: 9px;
  text-decoration: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 100%);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-indigo);
  filter: brightness(1.06);
  color: #fff;
  text-decoration: none;
}

.btn:active { transform: translateY(-1px); }

.btn-secondary {
  background: var(--surface);
  color: var(--indigo);
  border: 2px solid rgba(99,102,241,.25);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--indigo-soft);
  box-shadow: var(--shadow);
  color: var(--indigo);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #fff;
}

.btn-amber:hover {
  box-shadow: 0 12px 36px rgba(245,158,11,.28);
  color: #fff;
}

.btn-full { width: 100%; }

.btn-outline-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.22);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  color: #fff;
}

/* ── CLASSES PAGE ── */
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.class-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.class-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.class-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.class-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.class-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .97rem;
}

.class-card ul {
  margin-top: 14px;
  list-style: none;
}

.class-card li {
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--text-muted);
  font-size: .93rem;
}

.class-card li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-size: .55rem;
  top: 9px;
}

.diamond {
  font-size: 1.4rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 4px;
}

.class-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.class-header h2 { margin-bottom: 0; }

/* ── VIDEO ── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── CONTACT / FORMS ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
}

form label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .97rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--indigo-light);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(99,102,241,.1);
}

form input::placeholder,
form textarea::placeholder {
  color: var(--text-light);
}

form textarea {
  resize: vertical;
  min-height: 145px;
}

.form-group { margin-bottom: 22px; }

/* Checkbox Custom Styles */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--indigo);
  cursor: pointer;
}

.req { color: #dc2626; }

.success-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.success-box .check {
  font-size: 3rem;
  margin-bottom: 12px;
}

.success-box h2 {
  color: #15803d;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.success-box p {
  color: #166534;
  font-size: .97rem;
}

.error-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #b91c1c;
  margin-bottom: 20px;
  font-size: .95rem;
  border-left: 4px solid #dc2626;
}

/* ── CONTACT INFO ROWS ── */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.info-row:last-of-type { border-bottom: none; }

.info-row svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--indigo);
  margin-top: 1px;
}

.info-row .info-detail {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
}

.info-row .info-sub {
  color: var(--text-light);
  font-size: .88rem;
}

.small-note {
  margin-top: 14px;
  color: var(--text-light);
  font-size: .9rem;
}

/* ── SUBSCRIBE CTA BOX ── */
.cta-box {
  background: linear-gradient(135deg, var(--indigo-soft) 0%, var(--amber-soft) 100%);
  border: 1px solid rgba(99,102,241,.14);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin-top: 30px;
}

.cta-box p {
  font-family: 'Outfit', sans-serif;
  color: var(--indigo-dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

/* ── DONATION PAGE ── */
.donate-hero {
  text-align: center;
  padding: 40px 24px;
}

.donate-hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.donate-hero-copy p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.donate-hero-cta {
  background: var(--indigo-soft);
  border: 1px solid rgba(99,102,241,.16);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.donate-hero-cta .hero-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.donate-hero-cta .hero-note,
.donorbox-embed-wrap .hero-note {
  margin-top: 14px;
  font-size: .95rem;
  color: var(--text-light);
}

.donorbox-card {
  padding: 40px 24px 28px;
  max-width: 1200px;
  margin: 0 auto 24px;
}

.donorbox-embed-wrap {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.donorbox-frame {
  display: block;
  width: min(100%, 980px);
  min-height: 1400px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.donorbox-card .hero-note {
  margin-top: 18px;
  text-align: center;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}

.donate-grid h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.donate-grid p {
  color: var(--text-muted);
  line-height: 1.8;
}

.card-highlight {
  background: var(--indigo-soft);
  border-color: rgba(99,102,241,.16);
  text-align: center;
}

.card-highlight .quote {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
  font-family: 'Outfit', sans-serif;
}

.card-highlight .btn { padding: 14px 34px; }

/* ── STEPS ── */
.steps { counter-reset: step; }

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.step-num {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-light) 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(99,102,241,.25);
}

.step-body p { line-height: 1.75; color: var(--text-muted); }
.step-body strong { color: var(--text); }

/* ── SECTION HIGHLIGHT PILL ── */
.section-highlight {
  display: inline-flex;
  background: var(--indigo-soft);
  color: var(--indigo);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  margin-bottom: 16px;
  letter-spacing: .03em;
}

/* ── ABOUT PAGE ── */
.about-img {
  max-width: 100%;
  margin: 0 auto 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.caption {
  text-align: center;
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Key facts bar */
.key-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.key-fact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.key-fact:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.key-fact-icon { font-size: 1.8rem; margin-bottom: 8px; }

.key-fact-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 4px;
}

.key-fact-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 16px;
}

.social-links a {
  font-size: .95rem;
  font-weight: 700;
  color: var(--indigo);
  background: var(--indigo-soft);
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,.15);
  transition: all var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--indigo);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.text-center { text-align: center; }
.text-center p {
  color: var(--text-muted);
  font-style: italic;
  font-size: .95rem;
  margin: 0;
}
.text-center .btn { margin-top: 16px; }

/* ── FOOTER ── */
footer {
  background: #1a1040;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 48px;
  color: rgba(255,255,255,.8);
}

.footer-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 28px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.footer-col-left { }
.footer-col-center { display: flex; flex-direction: column; align-items: center; }
.footer-col-right { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }

.footer-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1) opacity(.85);
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
}

.footer-address {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}

.footer-address a {
  color: var(--amber);
  font-weight: 600;
  text-decoration: none;
}

.footer-address a:hover { text-decoration: underline; }

.footer-nav-label {
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--amber);
  text-decoration: none;
}

.footer-quote-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: right;
}

.footer-quote-box .qt-label {
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.footer-quote-box .qt-logo {
  width: 36px;
  height: auto;
  margin-left: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1) opacity(.6);
}

.footer-quote-box .qt-text {
  font-style: italic;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 28px;
  text-align: center;
}

.footer-copyright {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col-right {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }
  .footer-quote-box { text-align: left; }
  .footer-quote-box .qt-logo { margin-left: 0; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }

  .feature-grid,
  .section-split,
  .class-grid,
  .key-facts,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .home-hero { height: auto; }
  .home-hero-overlay { min-height: 400px; padding: 60px 20px; }

  .hero-banner { height: 240px; }

  .stats-bar-inner { gap: 0; }
  .stat-item {
    padding: 8px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.14);
    width: 50%;
  }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.14); }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 28px;
  }
  .footer-col-right { align-items: flex-start; text-align: left; }
  .footer-quote-box { text-align: left; }
  .footer-quote-box .qt-logo { margin-left: 0; }

  .home-hero-text h1 { font-size: 1.9rem; }
  h1.page-title { font-size: 1.8rem; }
  .page-container { padding: 36px 20px 60px; }
  .home-content { padding: 36px 20px 60px; }
}

@media (max-width: 540px) {
  .header-inner { padding: 0 18px; }
  .social-icons { display: none; }
  .card { padding: 22px 20px; }
  .home-hero { height: auto; }
  .home-hero-overlay { min-height: 350px; padding: 50px 16px; }

  .header-left { gap: 10px; }
  .stats-bar-inner { flex-direction: column; }
  .stat-item { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background-color: #128c7e;
  color: #fff;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background-color: #ffffff;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
  transform: translateX(-4px);
}

@media (max-width: 540px) {
  .whatsapp-tooltip { display: none; }
}


