/* ─── CSS Variables & Theme ─── */
[data-theme="dark"] {
  --bg:        #05101E;
  --bg2:       #0A1D33;
  --bg3:       #0D2545;
  --bg-card:   #0A1D33;
  --bg-input:  rgba(26,101,193,0.05);
  --mid:       #14386A;
  --surface:   rgba(5,16,30,0.7);
  --text:      #ffffff;
  --text-sub:  rgba(255,255,255,0.75);
  --text-muted:#7FA4D0;
  --border:    rgba(26,101,193,0.2);
  --border-sm: rgba(26,101,193,0.12);
  --nav-bg:    rgba(5,16,30,0.97);
  --nav-border:rgba(26,101,193,0.2);
  --card-hover-shadow: 0 20px 50px rgba(0,0,0,0.35);
  --ticker-bg: #0A1D33;
  --footer-bg: #05101E;
  --footer-text: #7FA4D0;
  --footer-border: rgba(26,101,193,0.15);
  --hero-overlay: rgba(5,16,30,0.92);
}

[data-theme="light"] {
  --bg:        #F0F5FF;
  --bg2:       #E4EEF9;
  --bg3:       #D6E6F7;
  --bg-card:   #ffffff;
  --bg-input:  rgba(26,101,193,0.04);
  --mid:       #BDD3F0;
  --surface:   rgba(255,255,255,0.8);
  --text:      #0A1D33;
  --text-sub:  rgba(10,29,51,0.8);
  --text-muted:#4A6FA5;
  --border:    rgba(26,101,193,0.2);
  --border-sm: rgba(26,101,193,0.15);
  --nav-bg:    rgba(240,245,255,0.97);
  --nav-border:rgba(26,101,193,0.15);
  --card-hover-shadow: 0 20px 50px rgba(26,101,193,0.12);
  --ticker-bg: #E4EEF9;
  --footer-bg: #0A1D33;
  --footer-text: #BDD3F0;
  --footer-border: rgba(26,101,193,0.2);
  --hero-overlay: rgba(5,16,30,0.78);
}

:root {
  --primary:       #1A65C1;
  --primary-dark:  #0f4a8a;
  --primary-light: #2d7de8;
  --gold:          #C9A84C;
  --gold-light:    #F0C96A;
  --gold-dark:     #9A7A2E;
  --header-h:      64px;
  --ticker-h:      36px;
  --top-offset:    calc(var(--ticker-h) + var(--header-h));
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: var(--top-offset); 
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── TICKER BAR ── */
.top-strip { 
  position: sticky; 
  top: 0; 
  z-index: 1100; 
}

.ticker-bar {
  background: var(--ticker-bg);
  border-bottom: 1px solid var(--border-sm);
  height: var(--ticker-h);
  overflow: hidden;
  display: flex; 
  align-items: center;
  transition: background 0.35s;
  width: 100%;
}

.ticker-bar .container {
  overflow: hidden;
  width: 100%;
}

.ticker-inner {
  display: flex; 
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes ticker { 
  from { transform: translateX(0); } 
  to { transform: translateX(-50%); } 
}

.ticker-item {
  display: flex; 
  align-items: center; 
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
}

.ticker-item .sym { 
  color: var(--gold); 
  font-weight: 700; 
}

.ticker-item .val { 
  color: var(--text); 
}

.ticker-item .chg { 
  font-size: 0.68rem; 
}

.up { color: #2ECC71; }
.down { color: #E74C3C; }

/* ── HEADER ── */
header {
  position: sticky; 
  top: var(--ticker-h);
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: background 0.35s, border-color 0.35s;
}

.nav-inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
}

.logo {
  display: flex; 
  align-items: center; 
  gap: 10px;
  text-decoration: none; 
  flex-shrink: 0;
}

.logo-icon {
  width: 38px; 
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 6px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; 
  font-size: 1.1rem;
  color: var(--gold);
  position: relative; 
  overflow: hidden; 
  flex-shrink: 0;
}

.logo-icon::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  height: 3px; 
  background: var(--gold); 
}

.logo-text { 
  font-family: 'Playfair Display', serif; 
}

.logo-text strong { 
  display: block; 
  font-size: 0.85rem; 
  font-weight: 700; 
  color: var(--text); 
  line-height: 1.2; 
}

.logo-text span { 
  font-size: 0.6rem; 
  color: var(--gold); 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  font-family: 'Space Mono', monospace; 
}

/* ── DESKTOP NAVIGATION ── */
nav { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}

nav a {
  font-size: 0.83rem; 
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}

nav a:hover, 
nav a.active { 
  color: var(--text); 
  background: rgba(26,101,193,0.12); 
}

.nav-cta { 
  background: var(--primary) !important; 
  color: #fff !important; 
  padding: 7px 18px !important; 
}

.nav-cta:hover { 
  background: var(--primary-light) !important; 
}

/* ── THEME TOGGLE ── */
.nav-right { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}

.theme-toggle {
  width: 40px; 
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg-input);
  cursor: pointer;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s;
  flex-shrink: 0;
  color: var(--text-muted);
  margin-left: 8px;
}

.theme-toggle:hover { 
  border-color: var(--gold); 
  color: var(--gold); 
}

[data-theme="light"] .theme-toggle .icon-dark { display: none; }
[data-theme="dark"] .theme-toggle .icon-light { display: none; }

/* ── MOBILE MENU ── */
.mobile-menu-btn { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 6px; 
  margin-left: 4px; 
}

.mobile-menu-btn span { 
  width: 22px; 
  height: 2px; 
  background: var(--text); 
  border-radius: 2px; 
  transition: all 0.3s; 
  display: block; 
}

.mobile-menu-btn.open span:nth-child(1) { 
  transform: rotate(45deg) translate(5px, 5px); 
}

.mobile-menu-btn.open span:nth-child(2) { 
  opacity: 0; 
}

.mobile-menu-btn.open span:nth-child(3) { 
  transform: rotate(-45deg) translate(5px, -5px); 
}

.mobile-nav {
  display: none; 
  position: fixed;
  top: var(--top-offset); 
  left: 0; 
  right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  padding: 16px 24px 20px;
  z-index: 999;
  flex-direction: column; 
  gap: 4px;
  animation: slideDown 0.25s ease;
}

.mobile-nav.open { 
  display: flex; 
}

@keyframes slideDown { 
  from { opacity: 0; transform: translateY(-8px); } 
  to { opacity: 1; transform: translateY(0); } 
}

.mobile-nav a {
  font-size: 0.95rem; 
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.mobile-nav a:hover { 
  color: var(--text); 
  background: rgba(26,101,193,0.1); 
  border-left-color: var(--primary); 
}

.mobile-nav .nav-cta { 
  background: var(--primary); 
  color: #fff; 
  text-align: center; 
  margin-top: 8px; 
  border-left-color: transparent !important;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: var(--primary); 
  color: #fff;
  padding: 13px 28px; 
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif; 
  font-weight: 600; 
  font-size: 0.9rem;
  text-decoration: none; 
  border: none; 
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover { 
  background: var(--primary-light); 
  transform: translateY(-2px); 
  box-shadow: 0 12px 32px rgba(26,101,193,0.4); 
}

.btn-gold {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #05101E; 
  padding: 13px 28px; 
  border-radius: 6px;
  font-weight: 700; 
  font-size: 0.9rem;
  text-decoration: none; 
  border: none; 
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gold:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 32px rgba(201,168,76,0.4); 
}

.btn-outline {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  background: transparent; 
  color: var(--text);
  padding: 12px 27px; 
  border-radius: 6px;
  font-weight: 600; 
  font-size: 0.9rem;
  text-decoration: none; 
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer; 
  transition: all 0.3s;
}

.btn-outline:hover { 
  border-color: var(--gold); 
  color: var(--gold); 
  transform: translateY(-2px); 
}

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-family: 'Space Mono', monospace; 
  font-size: 11px;
  letter-spacing: 3px; 
  text-transform: uppercase;
  color: var(--gold); 
  margin-bottom: 12px; 
  display: inline-block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 700; 
  line-height: 1.15;
  color: var(--text); 
  margin-bottom: 14px;
}

.section-title span { 
  color: var(--gold); 
}

.section-desc { 
  font-size: 1rem; 
  color: var(--text-muted); 
  line-height: 1.75; 
  max-width: 600px; 
}

.section-header { 
  text-align: center; 
  margin-bottom: 44px; 
}

.section-header .section-desc { 
  margin: 14px auto 0; 
}

/* ═══════════════════════════════════════════════ */
/* ── HERO SECTION (Homepage) ── */
/* ═══════════════════════════════════════════════ */
.hero {
  position: relative; 
  height: 100vh; 
  min-height: 600px; 
  overflow: hidden;
  display: flex; 
  align-items: center;
}

.erio-hero { 
  background: linear-gradient(135deg, #050D1F 0%, #0A1D3A 40%, #0D2E5A 70%, #1A65C1 100%); 
}

.hero-bg {
  position: absolute; 
  inset: 0;
  background-size: cover; 
  background-position: center;
  opacity: 0.3;
}

.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to right, var(--hero-overlay) 0%, rgba(5,16,30,0.55) 60%, transparent 100%); 
}

.hero-content { 
  position: relative; 
  z-index: 2; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: rgba(201,168,76,0.1); 
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px; 
  border-radius: 50px; 
  margin-bottom: 22px;
}

.hero-badge-dot { 
  width: 6px; 
  height: 6px; 
  background: var(--gold); 
  border-radius: 50%; 
  animation: pulse 2s infinite; 
}

@keyframes pulse { 
  0%, 100% { opacity: 1; transform: scale(1); } 
  50% { opacity: 0.5; transform: scale(0.8); } 
}

.hero-badge span { 
  font-family: 'Space Mono', monospace; 
  font-size: 0.68rem; 
  letter-spacing: 2px; 
  color: var(--gold); 
  text-transform: uppercase; 
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.5rem); 
  font-weight: 900; 
  line-height: 1.1;
  margin-bottom: 20px; 
  max-width: 640px; 
  color: #fff;
}

.hero-headline .line2 { 
  color: var(--gold); 
}

.hero-p { 
  font-size: 1rem; 
  color: rgba(255,255,255,0.75); 
  line-height: 1.8; 
  max-width: 500px; 
  margin-bottom: 32px; 
}

.hero-btns { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
  margin-bottom: 44px; 
}

.hero-stats { 
  display: flex; 
  gap: 36px; 
  flex-wrap: wrap; 
  padding-top: 28px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
}

.hero-stat-num { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.7rem; 
  font-weight: 700; 
  color: #fff; 
}

.hero-stat-num span { 
  color: var(--gold); 
}

.hero-stat-lbl { 
  font-size: 0.72rem; 
  color: rgba(255,255,255,0.55); 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  font-family: 'Space Mono', monospace; 
}

.hero-controls { 
  position: absolute; 
  bottom: 32px; 
  left: 50%; 
  transform: translateX(-50%); 
  z-index: 10; 
  display: flex; 
  gap: 10px; 
}

.hero-dot { 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.3); 
  cursor: pointer; 
  border: none; 
  transition: all 0.3s; 
}

.hero-dot.active { 
  background: var(--gold); 
  width: 28px; 
  border-radius: 4px; 
}

/* ═══════════════════════════════════════════════ */
/* ── PAGE HERO (Inner Pages) ── */
/* ═══════════════════════════════════════════════ */
.page-hero { 
  padding: 80px 0; 
  text-align: center; 
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26,101,193,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,101,193,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 900; 
  color: #fff; 
  margin-bottom: 10px;
}

.page-hero-content h1 span { 
  color: var(--gold); 
}

.page-hero-content p { 
  color: rgba(255,255,255,0.7); 
  font-size: 1.1rem; 
}

/* ═══════════════════════════════════════════════ */
/* ── WELCOME SECTION ── */
/* ═══════════════════════════════════════════════ */
.welcome-section { 
  padding: 80px 0; 
  background: var(--bg); 
  transition: background 0.35s;
}

.welcome-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
}

.welcome-content h2 {
  margin-top: 12px;
}

.welcome-text { 
  color: var(--text-sub); 
  line-height: 1.8; 
  margin-bottom: 16px; 
  font-size: 0.95rem; 
}

.welcome-signature { 
  margin-top: 24px; 
  padding-top: 20px; 
  border-top: 1px solid var(--border-sm); 
}

.welcome-signature strong { 
  display: block; 
  color: var(--gold); 
  font-family: 'Playfair Display', serif; 
  font-size: 1.1rem; 
}

.welcome-signature span { 
  font-size: 0.85rem; 
  color: var(--text-muted); 
}

.welcome-image { 
  position: relative; 
  border-radius: 12px; 
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.welcome-image img { 
  width: 100%; 
  height: auto; 
  display: block; 
  border-radius: 12px; 
}

/* ═══════════════════════════════════════════════ */
/* ── SUMMARY SECTIONS ── */
/* ═══════════════════════════════════════════════ */
.summary-section { 
  padding: 70px 0;
  transition: background 0.35s;
}

.summary-content { 
  max-width: 800px; 
  margin: 0 auto;
  text-align: center;
}

.summary-content p { 
  color: var(--text-sub); 
  line-height: 1.8; 
  margin-bottom: 24px; 
  font-size: 1rem; 
}

/* ═══════════════════════════════════════════════ */
/* ── CONTENT SECTIONS (About, Convener) ── */
/* ═══════════════════════════════════════════════ */
.content-section { 
  padding: 60px 0;
  background: var(--bg);
  transition: background 0.35s;
}

.content-grid {
  max-width: 900px;
  margin: 0 auto;
}

.content-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; 
  font-weight: 700; 
  margin: 36px 0 16px; 
  color: var(--text);
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body p { 
  color: var(--text-sub); 
  line-height: 1.9; 
  margin-bottom: 18px; 
  font-size: 0.95rem;
}

.highlight-box {
  background: rgba(26,101,193,0.08); 
  border-left: 4px solid var(--gold);
  padding: 20px 24px; 
  margin: 28px 0; 
  border-radius: 0 8px 8px 0;
  display: flex; 
  gap: 16px; 
  align-items: flex-start;
}

.highlight-icon { 
  font-size: 1.5rem; 
  flex-shrink: 0; 
  margin-top: 2px;
}

.highlight-box p { 
  font-style: italic; 
  color: var(--text); 
  margin: 0; 
}

/* ── Convener Page Specific ── */
.convener-intro { 
  display: flex; 
  gap: 30px; 
  align-items: center; 
  margin-bottom: 36px; 
  flex-wrap: wrap; 
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-sm);
}

.convener-image-large { 
  width: 180px; 
  height: 180px; 
  border-radius: 50%; 
  overflow: hidden; 
  flex-shrink: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.convener-image-large img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.convener-intro-text h2 { 
  margin: 0; 
  font-size: 1.8rem;
  border-left: none;
  padding-left: 0;
}

.convener-title { 
  color: var(--gold); 
  font-size: 0.95rem; 
  margin-top: 6px; 
  font-family: 'Space Mono', monospace;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════ */
/* ── TESTIMONIALS PAGE ── */
/* ═══════════════════════════════════════════════ */
.testimonials-section { 
  padding: 60px 0;
  background: var(--bg);
  transition: background 0.35s;
}

.testimonials-grid-large { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 22px; 
}

.testi-card {
  background: var(--bg-card); 
  border: 1px solid var(--border-sm); 
  border-radius: 10px;
  padding: 28px; 
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.testi-card:hover { 
  border-color: rgba(201,168,76,0.25); 
  transform: translateY(-4px); 
  box-shadow: var(--card-hover-shadow); 
}

.testi-stars { 
  color: var(--gold); 
  margin-bottom: 14px; 
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testi-text { 
  font-size: 0.87rem; 
  line-height: 1.75; 
  color: var(--text-sub); 
  margin-bottom: 20px; 
  font-style: italic; 
  flex: 1;
}

.testi-author { 
  display: flex; 
  align-items: center; 
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-sm);
}

.testi-avatar { 
  width: 44px; 
  height: 44px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 700; 
  font-size: 1rem; 
  flex-shrink: 0; 
  color: #fff; 
}

.testi-name { 
  font-weight: 600; 
  font-size: 0.87rem; 
  color: var(--text); 
}

.testi-role { 
  font-size: 0.75rem; 
  color: var(--text-muted); 
}

.share-testimony { 
  text-align: center; 
  margin-top: 50px; 
  padding: 40px; 
  background: var(--bg-card); 
  border-radius: 10px; 
  border: 1px solid var(--border-sm); 
}

.share-testimony h2 { 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 10px; 
  color: var(--text); 
}

.share-testimony p { 
  color: var(--text-muted); 
  margin-bottom: 20px; 
}

/* ═══════════════════════════════════════════════ */
/* ── GALLERY PAGE ── */
/* ═══════════════════════════════════════════════ */
.gallery-section { 
  padding: 60px 0;
  background: var(--bg);
  transition: background 0.35s;
}

.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 18px; 
}

.gallery-item { 
  position: relative; 
  border-radius: 10px; 
  overflow: hidden; 
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s; 
}

.gallery-item:hover img { 
  transform: scale(1.05); 
}

.gallery-overlay { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); 
  padding: 30px 20px 20px; 
  color: #fff; 
  opacity: 0; 
  transition: opacity 0.3s; 
}

.gallery-item:hover .gallery-overlay { 
  opacity: 1; 
}

.gallery-overlay p { 
  font-size: 0.85rem; 
  font-weight: 500;
}

/* ═══════════════════════════════════════════════ */
/* ── SUPPORT PAGE ── */
/* ═══════════════════════════════════════════════ */
.support-section {
  padding: 60px 0;
  background: var(--bg);
  transition: background 0.35s;
}

.support-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 50px; 
}

.support-info h2 { 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 16px; 
  color: var(--text); 
}

.support-info > p { 
  color: var(--text-sub); 
  margin-bottom: 24px; 
}

.support-list { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.support-list li { 
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
  padding: 18px; 
  background: var(--bg-card); 
  border: 1px solid var(--border-sm); 
  border-radius: 10px;
  transition: all 0.3s;
}

.support-list li:hover {
  border-color: var(--border);
  transform: translateX(4px);
}

.support-icon { 
  font-size: 1.5rem; 
  flex-shrink: 0; 
}

.support-list li strong { 
  display: block; 
  color: var(--text); 
  margin-bottom: 4px; 
}

.support-list li p { 
  color: var(--text-muted); 
  font-size: 0.85rem; 
  margin: 0; 
}

.support-card { 
  background: var(--bg-card); 
  border: 1px solid var(--border-sm); 
  border-radius: 10px; 
  padding: 28px; 
  margin-bottom: 24px; 
}

.support-card h3 { 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 18px; 
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-sm);
}

.detail-row { 
  display: flex; 
  justify-content: space-between; 
  padding: 12px 0; 
  border-bottom: 1px solid var(--border-sm); 
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label { 
  color: var(--text-muted); 
  font-size: 0.9rem; 
}

.detail-value { 
  font-weight: 600; 
  color: var(--text); 
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}

.giving-options { 
  display: flex; 
  flex-direction: column; 
  gap: 18px; 
}

.giving-option { 
  display: flex; 
  gap: 14px; 
  align-items: flex-start;
  padding: 16px;
  background: rgba(26,101,193,0.03);
  border-radius: 8px;
  transition: background 0.3s;
}

.giving-option:hover {
  background: rgba(26,101,193,0.06);
}

.giving-icon { 
  font-size: 1.8rem; 
  flex-shrink: 0;
}

.giving-option h4 { 
  color: var(--text); 
  margin-bottom: 4px; 
  font-size: 0.95rem;
}

.giving-option p { 
  color: var(--text-muted); 
  font-size: 0.85rem;
  margin: 0;
}

.support-contact { 
  background: var(--bg-card); 
  border: 1px solid var(--border-sm); 
  border-radius: 10px; 
  padding: 24px; 
}

.support-contact h3 { 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 12px;
  color: var(--text);
}

.support-contact > p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-methods { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.contact-method { 
  color: var(--primary-light); 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.2s;
}

.contact-method:hover {
  background: rgba(26,101,193,0.08);
}

/* ═══════════════════════════════════════════════ */
/* ── VOLUNTEER PAGE ── */
/* ═══════════════════════════════════════════════ */
.volunteer-section { 
  padding: 60px 0;
  background: var(--bg);
  transition: background 0.35s;
}

.volunteer-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.2fr; 
  gap: 50px; 
}

.volunteer-info h2 { 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 14px; 
  color: var(--text); 
}

.volunteer-info > p {
  color: var(--text-sub);
  margin-bottom: 20px;
}

.volunteer-info ul { 
  list-style: none;
  color: var(--text-sub); 
  margin-bottom: 28px; 
}

.volunteer-info ul li { 
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.volunteer-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.volunteer-info h3 { 
  margin-bottom: 14px; 
  color: var(--text); 
  font-family: 'Playfair Display', serif;
}

.volunteer-groups-list { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.volunteer-group-item { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 12px 16px; 
  background: var(--bg-card); 
  border: 1px solid var(--border-sm); 
  border-radius: 8px; 
  color: var(--text); 
  font-size: 0.9rem; 
  transition: all 0.3s;
}

.volunteer-group-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.group-icon { 
  font-size: 1.3rem; 
}

.volunteer-form-container { 
  background: var(--bg-card); 
  border: 1px solid var(--border-sm); 
  border-radius: 12px; 
  padding: 32px;
  position: sticky;
  top: calc(var(--top-offset) + 20px);
}

.volunteer-form-container h2 { 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 24px; 
  color: var(--text); 
}

.form-group { 
  margin-bottom: 20px; 
}

.form-group label { 
  display: block; 
  margin-bottom: 6px; 
  font-weight: 500; 
  color: var(--text); 
  font-size: 0.9rem; 
}

.form-group .required { 
  color: #E74C3C; 
}

.form-group input, 
.form-group select {
  width: 100%; 
  padding: 12px 14px;
  background: var(--bg-input); 
  border: 1px solid var(--border);
  border-radius: 8px; 
  color: var(--text); 
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus, 
.form-group select:focus { 
  outline: none; 
  border-color: var(--primary); 
  box-shadow: 0 0 0 3px rgba(26,101,193,0.1);
}

.form-group small { 
  display: block; 
  margin-top: 4px; 
  color: var(--text-muted); 
  font-size: 0.78rem; 
}

.form-group select option { 
  background: var(--bg-card); 
  color: var(--text); 
}

.btn-full { 
  width: 100%; 
  justify-content: center; 
  text-align: center; 
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════ */
/* ── ALERTS ── */
/* ═══════════════════════════════════════════════ */
.alert { 
  display: flex; 
  gap: 16px; 
  padding: 24px; 
  border-radius: 10px; 
  margin-bottom: 30px; 
  align-items: flex-start; 
}

.alert-success { 
  background: rgba(46,204,113,0.1); 
  border: 1px solid rgba(46,204,113,0.3); 
}

.alert-info { 
  background: rgba(26,101,193,0.1); 
  border: 1px solid rgba(26,101,193,0.3); 
}

.alert-error { 
  background: rgba(231,76,60,0.1); 
  border: 1px solid rgba(231,76,60,0.3); 
}

.alert-icon { 
  font-size: 1.5rem; 
  flex-shrink: 0;
}

.alert-content h3 { 
  margin-bottom: 6px; 
  color: var(--text); 
}

.alert-content p { 
  color: var(--text-sub); 
}

/* ═══════════════════════════════════════════════ */
/* ── CTA BANNER ── */
/* ═══════════════════════════════════════════════ */
.cta-banner { 
  background: linear-gradient(135deg, var(--bg3) 0%, var(--mid) 50%, var(--primary-dark) 100%); 
  padding: 70px 0; 
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(26,101,193,0.1) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); 
  font-weight: 700; 
  margin-bottom: 14px; 
  color: #fff; 
}

.cta-inner h2 span { 
  color: var(--gold); 
}

.cta-inner p { 
  color: rgba(255,255,255,0.7); 
  margin-bottom: 32px; 
  max-width: 480px; 
  margin-left: auto; 
  margin-right: auto; 
}

.cta-btns { 
  display: flex; 
  gap: 14px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* ═══════════════════════════════════════════════ */
/* ── FOOTER ── */
/* ═══════════════════════════════════════════════ */
footer { 
  background: var(--footer-bg); 
  border-top: 1px solid var(--footer-border);
  transition: background 0.35s;
  margin-top: auto;
}

.footer-top { 
  padding: 60px 0 40px; 
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 1.8fr 1fr 1fr 1fr; 
  gap: 40px; 
}

.footer-logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-bottom: 16px; 
}

.footer-logo .logo-icon {
  width: 38px; 
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 6px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; 
  font-size: 1.1rem;
  color: var(--gold);
  position: relative; 
  overflow: hidden;
}

.footer-logo .logo-icon::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  height: 3px; 
  background: var(--gold); 
}

.footer-logo .logo-text strong {
  color: #fff !important;
}

.footer-desc { 
  font-size: 0.85rem; 
  color: var(--footer-text); 
  line-height: 1.75; 
  max-width: 280px; 
  margin-bottom: 20px; 
}

.footer-socials { 
  display: flex; 
  gap: 8px; 
}

.footer-social { 
  width: 36px; 
  height: 36px; 
  background: rgba(26,101,193,0.1); 
  border: 1px solid rgba(26,101,193,0.2); 
  border-radius: 6px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--footer-text); 
  text-decoration: none; 
  font-size: 0.85rem; 
  transition: all 0.2s; 
}

.footer-social:hover { 
  background: var(--primary); 
  border-color: var(--primary); 
  color: #fff; 
}

.footer-col h4 { 
  font-family: 'Playfair Display', serif; 
  font-size: 0.93rem; 
  font-weight: 700; 
  margin-bottom: 16px; 
  padding-bottom: 8px; 
  border-bottom: 1px solid var(--footer-border); 
  color: #fff; 
}

.footer-col ul { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.footer-col ul li a { 
  font-size: 0.85rem; 
  color: var(--footer-text); 
  text-decoration: none; 
  transition: color 0.2s; 
}

.footer-col ul li a:hover { 
  color: var(--primary-light); 
}

.footer-bottom { 
  padding: 20px 0; 
  border-top: 1px solid var(--footer-border); 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 14px; 
}

.footer-copy { 
  font-size: 0.8rem; 
  color: var(--footer-text); 
}

.footer-links { 
  display: flex; 
  gap: 20px; 
}

.footer-links a { 
  font-size: 0.8rem; 
  color: var(--footer-text); 
  text-decoration: none; 
  transition: color 0.2s; 
}

.footer-links a:hover { 
  color: var(--primary-light); 
}

/* ═══════════════════════════════════════════════ */
/* ── RESPONSIVE STYLES ── */
/* ═══════════════════════════════════════════════ */

/* Large tablets & small desktops */
@media (max-width: 1100px) {
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 32px; 
  }
  
  .testimonials-grid-large { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

/* Tablets */
@media (max-width: 960px) {
  nav { 
    display: none; 
  }
  
  .mobile-menu-btn { 
    display: flex; 
  }
  
  .welcome-grid, 
  .support-grid, 
  .volunteer-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  .gallery-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .convener-intro {
    flex-direction: column;
    text-align: center;
  }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
  :root { 
    --ticker-h: 32px; 
    --header-h: 58px; 
  }
  
  .hero { 
    height: auto; 
    min-height: 100vh; 
    padding: 100px 0 60px;
  }
  
  .hero-headline { 
    font-size: clamp(1.8rem, 7vw, 2.5rem); 
  }
  
  .hero-stats { 
    gap: 20px; 
  }
  
  .hero-stat-num { 
    font-size: 1.4rem; 
  }
  
  .testimonials-grid-large { 
    grid-template-columns: 1fr; 
  }
  
  .gallery-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
  }
  
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 28px; 
  }
  
  .page-hero { 
    padding: 50px 0; 
  }
  
  .content-body h2 {
    font-size: 1.4rem;
  }
  
  .volunteer-form-container {
    position: static;
  }
}

/* Mobile phones */
@media (max-width: 520px) {
  :root { 
    --header-h: 54px; 
  }
  
  .container { 
    padding: 0 16px; 
  }
  
  .logo-text { 
    display: none; 
  }
  
  .gallery-grid { 
    grid-template-columns: 1fr; 
  }
  
  .hero-btns { 
    flex-direction: column; 
    gap: 10px; 
  }
  
  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .hero-stats { 
    gap: 12px; 
  }
  
  .hero-stat { 
    min-width: calc(50% - 6px); 
  }
  
  .cta-btns { 
    flex-direction: column; 
    align-items: center; 
  }
  
  .footer-links { 
    flex-direction: column; 
    gap: 8px; 
  }
  
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
  }
  
  .section-title { 
    font-size: 1.6rem; 
  }
  
  .testimonials-grid-large { 
    grid-template-columns: 1fr; 
  }
  
  .convener-image-large {
    width: 140px;
    height: 140px;
  }
  
  .highlight-box {
    padding: 16px;
    gap: 10px;
  }
  
  .page-hero-content h1 {
    font-size: 1.8rem;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-headline { 
    font-size: 1.6rem; 
  }
  
  .btn-primary, 
  .btn-gold, 
  .btn-outline { 
    padding: 11px 20px; 
    font-size: 0.85rem; 
  }
  
  .ticker-item { 
    gap: 5px; 
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .page-hero {
    padding: 40px 0;
  }
}