:root {
  --primary: #0288D1;
  --primary-dark: #01579B;
  --primary-darker: #01427A;
  --primary-light: #4FC3F7;
  --secondary: #F59E0B;
  --secondary-dark: #B45309;
  --text: #0F172A;
  --text-light: #475569;
  --text-muted: #94A3B8;
  --bg: #F0F9FF;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(1,87,155,0.10);
  --shadow-lg: 0 12px 48px rgba(1,87,155,0.15);
  --shadow-xl: 0 20px 60px rgba(1,87,155,0.20);
  --red: #DC2626;
  --green: #059669;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Nunito', system-ui, sans-serif;
  --topbar-height: 38px;
  --nav-height: 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--topbar-height) + var(--nav-height));
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.icon-svg { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.nav-cross { width: 20px; height: 20px; vertical-align: middle; }
.cross-icon-img { width: 64px; height: 64px; display: block; margin: 0 auto 16px; position: relative; z-index: 1; }

/* ─── TOP BAR ─────────────────────────────────── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  display: flex; align-items: center;
  justify-content: flex-end; gap: 6px;
  padding: 5px 24px;
  background: var(--primary-darker);
  flex-wrap: wrap;
  min-height: var(--topbar-height);
  height: auto;
}
.top-bar a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.top-bar a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.top-live { background: rgba(220,38,38,0.85) !important; color: #fff !important; }
.top-live:hover { background: #B91C1C !important; }
.top-church { background: rgba(8,145,178,0.85) !important; color: #fff !important; }
.top-church:hover { background: #0E7490 !important; }
.top-member { background: rgba(5,150,105,0.85) !important; color: #fff !important; }
.top-member:hover { background: #047857 !important; }
.btn-donate {
  background: var(--secondary) !important;
  color: #fff !important;
  padding: 4px 14px !important;
}
.btn-donate:hover { background: var(--secondary-dark) !important; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.7} }

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed; top: var(--topbar-height); left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.08); }
.navbar-main {
  display: flex; align-items: center;
  padding: 0 24px; height: var(--nav-height);
  justify-content: space-between; max-width: 1200px; margin: 0 auto;
}
.navbar .logo {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 1.15rem;
  color: var(--primary-dark);
  display: flex; align-items: center; gap: 8px;
}
.navbar .nav-links { display: flex; align-items: center; gap: 2px; }
.navbar .nav-links a {
  position: relative;
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-light);
  transition: all 0.25s;
}
.navbar .nav-links a:hover { background: var(--bg); color: var(--primary); }
.navbar .nav-links a.active {
  color: var(--primary);
}
.navbar .nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.menu-toggle span {
  width: 22px; height: 2.5px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  margin-top: 0;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 30%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff; text-align: center;
  padding: 120px 24px 100px;
  position: relative; overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.svg') no-repeat center/cover;
  opacity: 0.2;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero .hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero .cross-icon-img {
  width: 72px; height: 72px; margin: 0 auto 20px;
  filter: drop-shadow(0 4px 12px rgba(245,158,11,0.4));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
.hero .verset-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 24px; border-radius: 20px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.3px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.15;
  margin: 0 auto 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9; max-width: 600px;
  margin: 0 auto 32px; line-height: 1.6;
}
.hero .cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary, .hero .btn-outline {
  padding: 14px 32px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; border: 2px solid; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero .btn-primary {
  background: var(--secondary); color: #fff; border-color: var(--secondary);
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.hero .btn-primary:hover {
  background: var(--secondary-dark); border-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.4);
}
.hero .btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.12); border-color: #fff;
  transform: translateY(-3px);
}

/* ─── SECTIONS ────────────────────────────────── */
.section { padding: 80px 24px; position: relative; }
.section-alt { background: var(--surface); }
.section-blue {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden;
}
.section-blue::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.svg') no-repeat center/cover;
  opacity: 0.1;
}
.section-blue > * { position: relative; z-index: 1; }
.container { max-width: 1100px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title .label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; color: var(--secondary);
  text-transform: uppercase; margin-bottom: 8px;
}
.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .bar {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  margin: 16px auto 0; border-radius: 2px;
}

/* ─── STATS ───────────────────────────────────── */
.stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 28px 36px; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); min-width: 160px; transition: transform 0.3s, box-shadow 0.3s; }
.stat-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--bg), #E0F2FE);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 12px;
}
.stat-icon img { width: 26px; height: 26px; }
.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }

/* ─── GRID ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ─── CARD ────────────────────────────────────── */
.card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow);
  border: 1px solid var(--border); text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity 0.3s;
}
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .card-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ─── TEXT CONTENT ────────────────────────────── */
.text-content { max-width: 800px; margin: 0 auto; }
.text-content p { margin-bottom: 16px; font-size: 1rem; color: var(--text-light); line-height: 1.8; }
.text-content h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }

/* ─── LEADERS ──────────────────────────────────── */
.leader-card { text-align: center; }
.leader-card .avatar {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 16px; overflow: hidden;
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.leader-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-card h4 { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; }
.leader-card .role { font-size: 0.85rem; color: var(--primary); font-weight: 600; }

/* ─── VALUES ────────────────────────────────────── */
.value-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  transition: transform 0.3s;
}
.value-item:hover { transform: translateY(-4px); }
.value-item h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.value-item p { font-size: 0.85rem; color: var(--text-light); }

/* ─── DEPT LIST ───────────────────────────────── */
.dept-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.dept-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dept-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dept-item .di-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--bg), #E0F2FE);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.dept-item .di-icon img { width: 24px; height: 24px; }
.dept-item h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.dept-item p { font-size: 0.85rem; color: var(--text-light); }

/* ─── MEDIA GRID ──────────────────────────────── */
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.media-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 16px;
  text-align: center; transition: all 0.3s; cursor: pointer;
}
.media-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.media-card .mc-icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.media-card .mc-icon img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.media-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.media-card p { font-size: 0.85rem; color: var(--text-light); margin: 4px 0 12px; }
.media-card .mc-action { font-size: 0.85rem; font-weight: 700; color: var(--primary); }

/* ─── TIMELINE ────────────────────────────────── */
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.timeline-item .year {
  font-family: var(--font-heading);
  font-weight: 800; color: var(--primary); font-size: 0.9rem;
}
.timeline-item h4 { font-size: 1rem; font-weight: 700; margin: 4px 0; }
.timeline-item p { font-size: 0.85rem; color: var(--text-light); }

/* ─── ARTICLE CARD ────────────────────────────── */
.article-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.article-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card .date { font-size: 0.8rem; color: var(--primary); font-weight: 700; }
.article-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin: 8px 0; }
.article-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.article-card .tag {
  display: inline-block; padding: 4px 12px; border-radius: 12px;
  background: linear-gradient(135deg, var(--bg), #E0F2FE);
  color: var(--primary);
  font-size: 0.75rem; font-weight: 600; margin-top: 8px;
}

/* ─── TESTIMONY ───────────────────────────────── */
.testimony-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px; text-align: center;
  position: relative; transition: transform 0.3s;
}
.testimony-card:hover { transform: translateY(-4px); }
.testimony-card .quote {
  font-size: 3rem; color: var(--primary-light); opacity: 0.3;
  margin-bottom: 4px; font-family: Georgia, serif; line-height: 1;
}
.testimony-card p { font-size: 0.95rem; font-style: italic; color: var(--text-light); line-height: 1.7; }
.testimony-card .author { font-weight: 700; margin-top: 16px; color: var(--text); }
.testimony-card .author-role { font-size: 0.8rem; color: var(--text-light); }

/* ─── EVENT CARD ──────────────────────────────── */
.event-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.event-card .date-box {
  text-align: center; flex-shrink: 0;
  width: 64px; padding: 10px 0;
  background: linear-gradient(135deg, var(--bg), #E0F2FE);
  border-radius: 12px;
}
.event-card .date-box .day {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1;
}
.event-card .date-box .month {
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase;
}
.event-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.event-card p { font-size: 0.85rem; color: var(--text-light); }

/* ─── CONTACT CARD ────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: transform 0.3s;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card .cc-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--bg), #E0F2FE);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card .cc-icon img { width: 22px; height: 22px; }
.contact-card h4 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }
.contact-card p { font-size: 0.9rem; }

/* ─── PAGE HEADER ─────────────────────────────── */
.page-header {
  margin-top: 0;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
  color: #fff; text-align: center;
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.svg') no-repeat center/cover;
  opacity: 0.12;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--font-heading); font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; }
.page-header p { opacity: 0.85; margin-top: 8px; font-size: 1rem; }

/* ─── CONTACT FORM ────────────────────────────── */
.contact-form { max-width: 500px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: inherit; font-size: 0.9rem;
  transition: all 0.2s; background: var(--surface);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2,136,209,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  width: 100%; padding: 16px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 1rem;
  font-weight: 700; cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1,87,155,0.3);
}

/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: #0B1120;
  color: rgba(255,255,255,0.6);
  text-align: center; padding: 56px 24px 32px;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}
.footer-cross { width: 36px; height: 36px; margin: 0 auto 12px; display: block; opacity: 0.6; }
.footer .church-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: rgba(255,255,255,0.8); }
.footer .verset { font-size: 0.85rem; font-style: italic; opacity: 0.4; margin-bottom: 24px; }
.footer .copy { font-size: 0.8rem; opacity: 0.35; }

/* ─── RADIO PLAYER ────────────────────────────── */
.radio-player {
  background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.radio-info {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.radio-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.radio-icon img { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.radio-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; }
.radio-schedule { font-size: 0.82rem; opacity: 0.7; margin-top: 2px; }
.radio-controls {
  display: flex; align-items: center; gap: 14px;
  background: rgba(0,0,0,0.2);
  border-radius: 60px;
  padding: 8px 12px 8px 8px;
}
.radio-btn {
  width: 44px; height: 44px; flex-shrink: 0;
  border: none; border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.radio-btn:hover { transform: scale(1.08); background: var(--secondary-dark); }
.radio-btn.playing { animation: pulse 1.5s infinite; }
.radio-btn img { width: 20px; height: 20px; filter: brightness(0) invert(1); margin-left: 2px; }
.radio-btn.playing img { margin-left: 0; }
.radio-status { flex: 1; font-size: 0.82rem; font-weight: 600; opacity: 0.85; }
.radio-volume { flex-shrink: 0; width: 80px; height: 4px; -webkit-appearance: none; appearance: none; background: rgba(255,255,255,0.25); border-radius: 2px; outline: none; }
.radio-volume::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: var(--secondary); cursor: pointer; }
.radio-volume::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--secondary); cursor: pointer; border: none; }

/* ─── DONATION PAGE ──────────────────────────── */
.donate-intro { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.donate-intro p { color: var(--text-light); font-size: 1rem; line-height: 1.7; }
.donate-tabs {
  display: flex; gap: 4px; justify-content: center; margin-bottom: 36px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 4px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.donate-tab {
  flex: 1; padding: 12px 20px; border: none; border-radius: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  cursor: pointer; transition: all 0.25s;
  background: transparent; color: var(--text-light);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.donate-tab:hover { background: var(--bg); color: var(--text); }
.donate-tab.active { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(2,136,209,0.25); }
.donate-tab img { width: 18px; height: 18px; }
.donate-tab.active img { filter: brightness(0) invert(1); }
.donate-panel { display: none; max-width: 600px; margin: 0 auto; }
.donate-panel.active { display: block; }
.donate-panel h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-align: center; margin-bottom: 20px; }
.donate-panel p { font-size: 0.9rem; color: var(--text-light); text-align: center; margin-bottom: 20px; }
.donate-amounts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.donate-amount {
  padding: 14px 24px; border: 2px solid var(--border); border-radius: 12px;
  background: var(--surface); font-family: var(--font-heading);
  font-weight: 800; font-size: 1.05rem; color: var(--text);
  cursor: pointer; transition: all 0.25s; min-width: 100px;
}
.donate-amount:hover { border-color: var(--primary); color: var(--primary); }
.donate-amount.selected { border-color: var(--primary); background: var(--bg); color: var(--primary); box-shadow: 0 0 0 3px rgba(2,136,209,0.1); }
.donate-amount.custom { border-style: dashed; color: var(--text-muted); }
.donate-amount.custom input {
  width: 80px; border: none; background: transparent;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
  text-align: center; outline: none; color: var(--text);
}
.donate-amount.custom input::placeholder { color: var(--text-muted); }
.momo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-bottom: 28px; }
.momo-card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px; text-align: center;
  cursor: pointer; transition: all 0.25s;
}
.momo-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.momo-card.selected { border-color: var(--primary); background: var(--bg); box-shadow: 0 0 0 3px rgba(2,136,209,0.1); }
.momo-card .momo-logo { width: 48px; height: 48px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }
.momo-card .momo-logo img { width: 40px; height: 40px; }
.momo-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.momo-card .momo-number { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin: 6px 0 2px; }
.momo-card .momo-op { font-size: 0.75rem; color: var(--text-muted); }
.momo-reference {
  background: linear-gradient(135deg, var(--bg), #E0F2FE);
  border: 1px dashed var(--primary); border-radius: var(--radius);
  padding: 20px; text-align: center; margin-bottom: 24px;
}
.momo-reference .ref-label { font-size: 0.8rem; color: var(--text-light); }
.momo-reference .ref-code { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 900; color: var(--primary); letter-spacing: 2px; margin: 4px 0; }
.momo-reference .ref-info { font-size: 0.8rem; color: var(--text-muted); }
.btn-momo {
  display: block; width: 100%; padding: 16px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.3s;
}
.btn-momo:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(1,87,155,0.3); }
.paypal-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; border: none; border-radius: 12px;
  background: #0070BA; color: #fff; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.paypal-btn:hover { background: #003087; transform: translateY(-2px); }
.paypal-btn img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.stripe-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; border: none; border-radius: 12px;
  background: #6772E5; color: #fff; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.stripe-btn:hover { background: #555ABF; transform: translateY(-2px); }
.stripe-btn img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.donate-secure { text-align: center; margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); }
.donate-secure img { width: 14px; height: 14px; vertical-align: middle; margin-right: 4px; }
.donate-info { max-width: 600px; margin: 32px auto 0; }
.donate-info details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.donate-info details summary { padding: 16px 20px; font-weight: 700; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.donate-info details summary::-webkit-details-marker { display: none; }
.donate-info details summary::before { content: '+'; font-weight: 900; color: var(--primary); font-size: 1.1rem; transition: transform 0.2s; }
.donate-info details[open] summary::before { content: '−'; }
.donate-info details .detail-body { padding: 0 20px 16px; font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ─── IMAGE PLACEHOLDER ─────────────────────── */
.img-holder {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.img-holder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-holder .img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 40px 24px 20px; color: #fff;
}
.img-holder .img-overlay h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.img-holder .img-overlay p { font-size: 0.85rem; opacity: 0.85; }
.img-caption { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 8px; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* ─── VIDEO GALLERY ─────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.video-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-card .video-thumb {
  aspect-ratio: 16/9; background: linear-gradient(135deg, #0F172A, #1E293B);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.video-card .video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.video-card .video-play {
  width: 60px; height: 60px; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; transition: transform 0.3s;
}
.video-card:hover .video-play { transform: scale(1.1); background: var(--red); }
.video-card .video-play img { position: static; opacity: 1; width: 24px; height: 24px; filter: brightness(0) invert(1); margin-left: 3px; }
.video-card .video-info { padding: 16px; }
.video-card .video-info h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.video-card .video-info p { font-size: 0.8rem; color: var(--text-light); }
.video-card .video-info .video-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; display: flex; gap: 12px; }

/* ─── DONATION BANNER / AD ──────────────────── */
.donate-banner {
  background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
  border-radius: var(--radius-lg); padding: 36px 28px;
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.donate-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/heart.svg') no-repeat center/30%;
  opacity: 0.05;
}
.donate-banner > * { position: relative; z-index: 1; }
.donate-banner h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.donate-banner p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 20px; }
.donate-banner .btn-donate-banner {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--secondary); color: #fff;
  border-radius: 10px; font-weight: 700; font-size: 0.9rem;
  transition: all 0.25s; text-decoration: none;
}
.donate-banner .btn-donate-banner:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.donate-banner .btn-donate-banner img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

/* ─── DONATION CTA SECTION ──────────────────── */
.donate-cta {
  background: linear-gradient(135deg, var(--secondary), #F97316);
  color: #fff; border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center;
}
.donate-cta h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; }
.donate-cta p { font-size: 0.95rem; opacity: 0.9; margin: 8px 0 20px; }
.donate-cta .btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: #fff; color: var(--secondary-dark);
  border-radius: 12px; font-weight: 800; font-size: 1rem;
  text-decoration: none; transition: all 0.25s;
}
.donate-cta .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.donate-cta .btn-cta img { width: 16px; height: 16px; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  body { padding-top: calc(56px + var(--nav-height)); }
  .navbar-main { padding: 0 16px; }
  .navbar .nav-links {
    display: none; position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column; padding: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .navbar .nav-links.open { display: flex; }
  .navbar .nav-links a { padding: 14px 16px; border-radius: 10px; }
  .navbar .nav-links a.active::after { display: none; }
  .menu-toggle { display: flex; }
  .top-bar { justify-content: center; padding: 5px 12px; gap: 4px; }
  .top-bar a { font-size: 0.7rem; padding: 3px 8px; }
  .hero { padding: 80px 16px 60px; min-height: auto; }
  .hero .cross-icon-img { width: 56px; height: 56px; }
  .section { padding: 50px 16px; }
  .stats { gap: 16px; }
  .stat-item { padding: 20px 24px; min-width: 130px; }
  .grid-2 { grid-template-columns: 1fr; }
  .dept-list { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; text-align: center; }
  .timeline { padding-left: 30px; }
  .page-header { padding: 60px 16px; }
}
