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

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

:root {
  --navy: #0a1f44;
  --deep-blue: #103783;
  --mid-blue: #1a56c4;
  --light-blue: #4a90e2;
  --gold: #f5a623;
  --gold-light: #ffd166;
  --white: #ffffff;
  --off-white: #f4f6fb;
  --text-dark: #0d1b2a;
  --text-muted: #5a6a7e;
}

html { scroll-behavior: smooth; width: 100%; max-width: 100vw; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: var(--white); width: 100%; max-width: 100vw; overflow-x: hidden; }

/* ── ANNOUNCE ── */
.announce {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}
.announce a { color: var(--gold); text-decoration: none; font-weight: 700; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(10,31,68,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 42px; height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid rgba(245,166,35,0.4);
}
.nav-logo-text { color: white; font-size: 14px; font-weight: 700; line-height: 1.2; }
.nav-logo-text span { color: var(--gold); display: block; font-size: 10px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 9px 22px; border-radius: 50px; font-weight: 700 !important; transition: transform 0.2s, box-shadow 0.2s !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,0.45) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(10,31,68,0.99);
  padding: 20px 5% 28px;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100vw;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .m-cta { color: var(--gold) !important; font-weight: 700; border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.slide.active { opacity: 1; }
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,31,68,0.88) 0%, rgba(16,55,131,0.55) 55%, rgba(10,31,68,0.78) 100%);
}

.slide:nth-child(1) { background-image: url('assets/slide 1.JPG'); }
.slide:nth-child(2) { background-image: url('assets/slide 2.JPG'); }
.slide:nth-child(3) { background-image: url('assets/slide 3.JPG'); }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-logo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(245,166,35,0.65);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  margin-bottom: 22px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.45);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero h1 {
  color: white;
  font-size: clamp(30px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--gold); }

.hero-tagline {
  color: rgba(255,255,255,0.72);
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-welcome {
  color: rgba(255,255,255,0.92);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600;
  margin-bottom: 38px;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.35); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,166,35,0.5); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.55);
  color: white;
  padding: 12px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-blue {
  display: inline-block;
  background: var(--deep-blue);
  color: white;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-blue:hover { background: var(--mid-blue); transform: translateY(-1px); }

/* ── LAYOUT ── */
section { padding: 90px 0; width: 100%; box-sizing: border-box; overflow-x: hidden; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 5%; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--mid-blue); margin-bottom: 10px; }
.section-title { font-size: clamp(24px, 3.8vw, 44px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
.section-title .accent { color: var(--mid-blue); }
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── STATS ── */
.stats-bar { background: var(--deep-blue); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-number { font-size: 46px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.68); font-weight: 500; margin-top: 6px; letter-spacing: 0.3px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; height: 500px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 72%; height: 80%; object-fit: cover; border-radius: 20px; }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 54%; height: 50%; object-fit: cover; border-radius: 16px; border: 5px solid white; box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.about-badge-float {
  position: absolute; top: 56%; left: 56%; transform: translate(-50%,-50%);
  background: var(--gold); color: var(--navy); padding: 14px 18px; border-radius: 14px;
  text-align: center; font-weight: 700; box-shadow: 0 10px 28px rgba(245,166,35,0.4); z-index: 5; white-space: nowrap;
}
.about-badge-float strong { display: block; font-size: 26px; }
.about-badge-float span { font-size: 11px; font-weight: 600; letter-spacing: 1px; }

.values-list { display: flex; flex-direction: column; gap: 11px; margin: 24px 0 32px; }
.value-row { display: flex; align-items: center; gap: 13px; }
.value-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(26,86,196,0.1); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.value-text { font-size: 14px; font-weight: 600; color: var(--navy); }

/* ── SERVICES ── */
.services-section { background: var(--off-white); }
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-sub { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(10,31,68,0.07); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(10,31,68,0.14); }
.service-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.service-card-body { padding: 24px; }
.service-day { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--mid-blue); margin-bottom: 7px; }
.service-name { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-time { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ── CAMPUS ── */
.campus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.campus-card { border-radius: 22px; overflow: hidden; position: relative; min-height: 340px; display: flex; align-items: flex-end; }
.campus-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.campus-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,31,68,0.93) 0%, rgba(10,31,68,0.15) 60%); }
.campus-card-body { position: relative; z-index: 2; padding: 28px; }
.campus-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.campus-name { font-size: 22px; font-weight: 700; color: white; margin-bottom: 5px; }
.campus-sub { font-size: 13px; color: rgba(255,255,255,0.68); }

/* ── LEADER ── */
.leader-section { background: var(--navy); padding: 90px 0; }
.leader-section .section-header-center .section-label,
.leader-section .section-header-center .section-title { color: #f5a623; }
.leader-section .section-header-center .section-title .accent { color: white; }
.leader-section .section-header-center .section-sub { color: white; }
.leader-carousel { position: relative; margin-top: 28px; }
.leader-viewport { position: relative; min-height: 720px; }
.leader-stage { position: relative; min-height: 720px; }
.leader-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.leader-slide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.leader-slide-card {
  height: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}
.leader-grid { display: contents; }
.leader-img-wrap { position: relative; }
.leader-img { width: 100%; height: 100%; border-radius: 22px; object-fit: cover; display: block; min-height: 440px; }
.leader-img-wrap::before { content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 2px solid rgba(245,166,35,0.3); border-radius: 26px; z-index: 0; }
.leader-content .section-label { color: var(--gold-light); }
.leader-content .section-title { color: white; }
.leader-content { padding: 8px 6px 8px 2px; display: flex; flex-direction: column; justify-content: center; }
.leader-title-badge { display: inline-block; background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.38); color: var(--gold-light); font-size: 12px; font-weight: 600; padding: 5px 16px; border-radius: 50px; margin-bottom: 22px; }
.leader-bio { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.85; margin-bottom: 30px; }
.leader-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; font-weight: 500; transition: all 0.2s; }
.social-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: white; }
.leader-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
  .leader-nav:hover { background: rgba(255,255,255,0.15); border-color: rgba(245,166,35,0.45); }
  .leader-prev { left: -8px; }
  .leader-next { right: -8px; }
.leader-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.leader-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  padding: 0;
  transition: width 0.2s, background 0.2s, transform 0.2s;
}
.leader-dot:hover { transform: scale(1.1); }
.leader-dot.active { width: 28px; background: var(--gold); }
  .leader-counter { margin-top: 10px; text-align: center; color: rgba(255,255,255,0.48); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ── EVENTS ── */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid rgba(10,31,68,0.07); transition: transform 0.3s, box-shadow 0.3s; }
.event-card:hover { transform: translateY(-5px); box-shadow: 0 16px 46px rgba(10,31,68,0.13); }
.event-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.event-card-body { padding: 24px; }
.event-tag { display: inline-block; background: rgba(26,86,196,0.08); color: var(--mid-blue); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.event-name { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.event-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.events-grid { display: none; }
.home-events-shell { background: white; border-radius: 24px; padding: 28px; border: 1px solid rgba(10,31,68,0.08); box-shadow: 0 10px 40px rgba(10,31,68,0.08); overflow-x: hidden; }
.home-events-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.home-events-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr); gap: 22px; align-items: start; }
.home-events-calendar { min-width: 0; }
.home-events-month-label { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.home-events-controls { display: flex; gap: 10px; }
.home-events-btn { border: 1px solid rgba(10,31,68,0.12); background: white; color: var(--navy); border-radius: 12px; padding: 10px 16px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.home-events-btn:hover { border-color: rgba(26,86,196,0.4); transform: translateY(-1px); }
.home-events-weekdays, .home-events-grid { display: grid; grid-template-columns: repeat(7, 1fr); min-width: 0; width: 100%; }
.home-events-weekdays { margin-bottom: 10px; }
.home-events-weekdays span { text-align: center; color: var(--text-muted); font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; padding: 8px 4px; }
.home-events-grid { gap: 10px; }
.home-event-day { min-height: 108px; border-radius: 18px; border: 1px solid rgba(10,31,68,0.08); background: #fbfcff; padding: 12px; cursor: pointer; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.home-event-day:hover { transform: translateY(-2px); border-color: rgba(26,86,196,0.3); }
.home-event-day.muted { opacity: 0.42; }
.home-event-day.today { border-color: rgba(245,166,35,0.75); box-shadow: inset 0 0 0 1px rgba(245,166,35,0.25); }
.home-event-day.active { background: linear-gradient(180deg, #edf4ff, #ffffff); border-color: var(--mid-blue); }
.home-event-day-head { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 4px; margin-bottom: 10px; }
.home-event-day-number { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.home-event-count-badge { display: none; min-width: 22px; height: 22px; border-radius: 999px; background: var(--mid-blue); color: white; font-size: 11px; font-weight: 700; align-items: center; justify-content: center; padding: 0 6px; line-height: 1; flex-shrink: 0; }
.home-event-day-list { display: flex; flex-direction: column; gap: 6px; }
.home-event-pill { display: block; width: 100%; background: rgba(26,86,196,0.1); color: var(--deep-blue); font-size: 10px; font-weight: 700; border-radius: 12px; padding: 5px 8px; white-space: normal; overflow-wrap: anywhere; word-break: break-word; line-height: 1.35; text-align: left; }
.home-events-agenda { border: 1px solid rgba(10,31,68,0.08); border-radius: 20px; background: linear-gradient(180deg, #ffffff, #fbfcff); padding: 20px; min-height: 100%; }
.home-events-agenda-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.home-events-agenda-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.home-event-agenda-card { border: 1px solid rgba(10,31,68,0.08); border-radius: 18px; background: linear-gradient(180deg, #ffffff, #fbfcff); padding: 18px; }
.home-event-agenda-card h3 { font-size: 18px; color: var(--navy); margin: 10px 0 6px; }
.home-event-agenda-meta { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 8px; }
.home-event-agenda-text, .home-event-empty { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── MINISTRIES ── */
.ministries-section { background: var(--off-white); }
.ministry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ministry-card { background: white; border-radius: 20px; padding: 30px 22px; text-align: left; border: 1px solid rgba(10,31,68,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.ministry-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(10,31,68,0.1); }
.ministry-icon { width: 68px; height: 68px; border-radius: 18px; background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue)); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 18px; }
.ministry-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ministry-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.ministry-detail { font-size: 12.5px; color: var(--text-dark); line-height: 1.6; margin-bottom: 8px; }
.ministry-meta { font-size: 12px; color: var(--mid-blue); font-weight: 600; }

/* ── VISITORS ── */
.visitor-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.visitor-img { width: 100%; border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; display: block; }
.visitor-steps { display: flex; flex-direction: column; gap: 22px; margin: 28px 0 32px; }
.visitor-step { display: flex; gap: 18px; align-items: flex-start; }
.step-num { width: 44px; height: 44px; border-radius: 12px; background: var(--deep-blue); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.step-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── GIVING ── */
.giving-section { background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy) 100%); position: relative; overflow: hidden; }
.giving-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.giving-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.giving-content .section-label { color: var(--gold-light); }
.giving-content .section-title { color: white; }
.giving-message { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.85; font-style: italic; border-left: 3px solid var(--gold); padding-left: 20px; margin: 26px 0 34px; }
.giving-img { width: 100%; border-radius: 20px; object-fit: cover; aspect-ratio: 4/3; display: block; }

/* ── SERMONS ── */
.sermons-section { background: var(--off-white); }
.sermons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sermon-card { background: white; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(10,31,68,0.07); transition: transform 0.3s; }
.sermon-card:hover { transform: translateY(-4px); }
.sermon-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.sermon-card-body { padding: 20px; }
.sermon-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-blue); margin-bottom: 6px; }
.sermon-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.sermon-speaker { font-size: 13px; color: var(--text-muted); }
.sermon-cta-card { border-radius: 18px; background: var(--deep-blue); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; padding: 36px 24px; text-align: center; }
.sermon-cta-card .icon { font-size: 42px; }
.sermon-cta-card h3 { font-size: 18px; font-weight: 700; color: white; }
.sermon-cta-card p { font-size: 13px; color: rgba(255,255,255,0.62); }

/* ── SOCIAL MEDIA ── */
.socials-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.social-card { border-radius: 14px; padding: 18px 12px; text-align: center; text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: transform 0.2s, box-shadow 0.2s; }
.social-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.social-card.fb { background: #1877f2; color: white; }
.social-card.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-card.yt { background: #ff0000; color: white; }
.social-card.tt { background: #010101; color: white; }
.social-card.tw { background: #1da1f2; color: white; }
.social-card-icon { font-size: 24px; }
.social-card-name { font-size: 12px; font-weight: 700; }
.social-card-handle { font-size: 10px; opacity: 0.82; line-height: 1.3; }

/* ── CONTACT ── */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.contact-item { display: flex; gap: 15px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--deep-blue); color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-label { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-value a { color: var(--mid-blue); text-decoration: none; }

.contact-form { background: white; border-radius: 24px; padding: 38px; box-shadow: 0 8px 40px rgba(10,31,68,0.08); }
.form-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-input, .form-textarea {
  padding: 12px 15px;
  border: 1.5px solid rgba(10,31,68,0.12);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  background: white;
}
.form-input:focus, .form-textarea:focus { border-color: var(--mid-blue); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-submit { background: var(--deep-blue); color: white; padding: 14px 28px; border: none; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; width: 100%; transition: background 0.2s, transform 0.2s; letter-spacing: 0.3px; margin-top: 4px; }
.form-submit:hover { background: var(--mid-blue); transform: translateY(-1px); }

/* ── NEWSLETTER ── */
.newsletter-section { background: linear-gradient(135deg, var(--gold) 0%, #f5ca3a 100%); padding: 70px 0; }
.newsletter-inner { text-align: center; max-width: 600px; margin: 0 auto; padding: 0 20px; }
.newsletter-title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.newsletter-sub { font-size: 15px; color: rgba(10,31,68,0.7); margin-bottom: 30px; line-height: 1.65; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 190px; padding: 13px 20px; border: none; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 14px; outline: none; box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.newsletter-btn { background: var(--navy); color: white; padding: 13px 26px; border: none; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.newsletter-btn:hover { background: var(--deep-blue); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-logo img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; border: 1.5px solid rgba(245,166,35,0.4); }
.footer-logo-text { color: white; font-size: 13px; font-weight: 700; line-height: 1.25; }
.footer-logo-text small { display: block; color: rgba(255,255,255,0.45); font-size: 9.5px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 9px; }
.footer-social-btn { width: 35px; height: 35px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: background 0.2s, color 0.2s; }
.footer-social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-copy a { color: var(--gold); text-decoration: none; }

/* ── BLOG ── */
.blog-section { background: var(--off-white); padding: 70px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.blog-card-image { width: 100%; height: 200px; object-fit: cover; background: linear-gradient(135deg, var(--light-blue) 0%, var(--mid-blue) 100%); }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.blog-card-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--mid-blue); font-weight: 600; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.blog-card-link:hover { color: var(--light-blue); }
.blog-loading { text-align: center; padding: 40px 20px; color: var(--text-muted); font-size: 15px; }
.blog-error { text-align: center; padding: 40px 20px; color: #d32f2f; font-size: 15px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ministry-grid { grid-template-columns: repeat(2, 1fr); }
  .socials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 4%; }
  .hero { height: 85vh; min-height: 520px; }
  .hero-content { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .visitor-grid, .giving-grid, .contact-grid, .campus-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .events-grid, .sermons-grid, .blog-grid { grid-template-columns: 1fr; }
  .home-events-layout { grid-template-columns: 1fr; }
  .home-events-topbar { flex-direction: column; align-items: flex-start; }
  .home-events-grid { gap: 6px; }
  .home-event-day { min-height: 86px; padding: 8px; border-radius: 14px; }
  .about-images { height: 360px; }
  .leader-nav { display: none; }
  .leader-carousel { margin-top: 20px; }
  .leader-viewport, .leader-stage { min-height: 0; }
  .leader-slide { position: relative; inset: auto; }
  .leader-slide:not(.active) { display: none; }
  .leader-slide-card { grid-template-columns: 1fr; padding: 20px; gap: 18px; }
  .leader-img { min-height: 0; aspect-ratio: 3/4; height: auto; object-position: center top; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .socials-grid { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 0 4%; }
}
@media (max-width: 480px) {
  .hero { height: auto; min-height: auto; padding: 60px 0; }
  .hero-content { padding: 0 16px; }
  .form-row { grid-template-columns: 1fr; }
  .ministry-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .home-events-shell { padding: 18px; }
  .home-events-grid { gap: 6px; }
  .home-event-day { min-height: 86px; padding: 8px; border-radius: 14px; }
  .home-event-day-head { margin-bottom: 0; }
  .home-events-weekdays span { font-size: 10px; padding: 6px 2px; }
  .home-event-count-badge { display: inline-flex; }
  .home-event-day-list { margin-top: 4px; }
  .home-event-pill { display: none; }
  .home-events-agenda { padding: 16px; }
  .ministry-card { padding: 24px 18px; }
  .ministry-icon { margin-left: 0; }
}
