/* ============================================================
   THE CHANGE EMBASSY — Main Stylesheet
   ============================================================ */

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

html {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
}

/* ─── DESIGN TOKENS ─── */
:root {
  /* Colours */
  --red:          #D92524;
  --coral:        #f04444;
  --pastel-pink:  #fff0f0;
  --gold:         #CD9D2B;
  --dark:         #1A0000;
  --black:        #111111;
  --white:        #ffffff;
  --gray:         #6b7280;
  --light-gray:   #f5f5f5;
  --border:       #e5e7eb;
  --surface:      #ffffff;
  --surface-soft: #f7f7f7;

  /* Events section overrides (kept locally for clarity) */
  --events-bg:       #0a0808;
  --event-card-bg:   rgba(255,255,255,0.03);
  --event-overlay:   rgba(10,4,4,0.55);

  /* Spacing */
  --space-xxs: 8px;
  --space-xs:  12px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  32px;
  --space-xl:  40px;

  /* Radii */
  --radius-md: 18px;
  --radius-lg: 28px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 64px; /* offset for fixed nav */
  min-height: 100vh;
}

img, picture, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: rgba(26,0,0,0.97);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}

nav.scrolled { background: rgba(26,0,0,0.97); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img     { height: 56px; width: auto; display: block; }
.footer-logo-img  { height: 64px; width: auto; display: block; }

.nav-logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-give {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.2s;
}

.nav-give:hover { background: #b81e1e; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(26,0,0,0.65), rgba(26,0,0,0.65)),
    url('../images/background.png') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 30px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 { display: inline-block; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 20px 38px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.24);
}

.hero h1 {
  font-size: clamp(48px, 6.8vw, 83px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 span     { color: var(--gold); }
.hero-line-two    { white-space: normal; }

.hero-sub {
  color: rgba(255,255,255,0.95);
  font-size: 22px;
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ─── SHARED BUTTONS ─── */
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 22px 44px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: #b81e1e; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 20px 38px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.btn-red, .btn-dark {
  padding: 14px 28px;
  font-size: 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-red  { background: var(--red);  color: #fff; }
.btn-red:hover  { background: #b81e1e; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #2d0505; }

.btn-view-all {
  background: var(--coral);
  color: #fff;
  padding: 12px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(240,68,68,0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-decoration: none;
}
.btn-view-all:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(240,68,68,0.14); }

.btn-see-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  height: 44px;
  font-size: 14px;
  transition: transform 0.2s, background 0.2s;
}
.btn-see-more:hover { background: #d33d3d; transform: translateY(-1px); }

.btn-give-now {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--gold);
  color: var(--dark);
  padding: 18px 48px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(205,157,43,0.12);
  transition: background 0.18s, transform 0.12s;
  text-decoration: none;
  pointer-events: auto;
}
.btn-give-now:hover { background: #b8891f; transform: translateY(-2px); }

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #ff7a18, #e53e3e);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.btn-gradient:hover { transform: translateY(-1px); }

.btn-register {
  background: linear-gradient(90deg, #ff8a00, #d83826);
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 900;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

.btn-buy {
  background: #111;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s;
}
.btn-buy:hover { background: #333; }

.btn-outline-dark {
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.9);
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
}

/* ─── SECTION LABEL ─── */
.section-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

/* ─── HERO SERVICE STRIP ─── */
.hero-services {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.16);
  margin: 0 auto;
}

.hero-service-item        { display: flex; flex-direction: column; gap: 6px; }
.hero-service-label       { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; }
.hero-service-time        { color: #fff; font-size: 18px; font-weight: 700; }

/* ─── MANDATE ─── */
.mandate { padding: 100px 80px; }

.mandate-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 1fr);
  gap: 60px;
  align-items: start;
}

.mandate-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mandate h2 {
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.8px;
  max-width: 520px;
  word-break: break-word;
}
.mandate h2 span { color: var(--red); font-style: italic; }

.mandate-desc {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.9;
  max-width: 620px;
  margin-bottom: 24px;
}

.mandate-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.mandate-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--surface);
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.value-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,37,36,0.1);
  color: var(--red);
  font-size: 18px;
}

.value-card-title { font-weight: 700; font-size: 15px; }
.value-card-desc  { color: var(--gray); font-size: 14px; line-height: 1.7; }

.mandate-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.mandate-gallery-item {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(10,10,10,0.08);
}

.mandate-gallery-item:nth-child(1) { background-image: url('../images/mandate1.png'); }
.mandate-gallery-item:nth-child(2) { background-image: url('../images/mandate2.png'); }

/* ─── LEADERS ─── */
.leaders {
  background: linear-gradient(225deg, #fbe8e2 0%, #f9f6f3 100%);
  padding: 100px 80px;
}

.leaders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.leaders-left   { display: flex; flex-direction: column; gap: 10px; }

.leaders-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fdecec;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  width: fit-content;
}
.leaders-badge i { font-size: 12px; color: rgba(217,37,36,0.9); }

.leaders-title { font-size: clamp(34px, 5vw, 54px); font-weight: 900; color: #1e120b; line-height: 1.03; }

.leaders-controls { display: flex; gap: 12px; align-items: center; }

.leaders-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a0703;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(10,10,10,0.14);
}
.leaders-btn i { font-size: 16px; }

/* Leaders carousel */
.leaders-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.leaders-track::-webkit-scrollbar        { height: 8px; }
.leaders-track::-webkit-scrollbar-thumb  { background: rgba(0,0,0,0.12); border-radius: 999px; }

.leader-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10,10,10,0.08);
  display: flex;
  flex-direction: column;
}

.leader-card img      { width: 100%; height: 420px; object-fit: cover; display: block; }
.leader-card-body     { padding: 20px 22px 24px; }
.leader-name          { font-weight: 800; font-size: 15px; color: #111; margin-bottom: 6px; }
.leader-title         { color: #6b7280; font-size: 13px; }

/* ─── KINGDOM DUTY ─── */
.kingdom {
  padding: 120px 88px;
  background: linear-gradient(225deg, #2a1410 0%, #3d2217 100%);
}

.kingdom-header { margin-bottom: 48px; }

.kingdom h2 {
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
  color: #fff;
  line-height: 1.08;
}

.kingdom h2 .kingdom-duty-gradient {
  background: linear-gradient(90deg, #d83826 0%, #df913c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kingdom-sub { color: #aaa; font-size: 16px; line-height: 1.8; margin-bottom: 0; max-width: 580px; }

.kingdom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.kingdom-card {
  background: rgba(25,14,13,0.35);
  padding: 56px 40px;
  border-radius: 22px;
  border: 1px solid rgba(217,37,36,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.kingdom-card:hover {
  background: rgba(25,14,13,0.35);
  border-color: rgba(217,37,36,0.18);
  transform: translateY(-6px);
}

.kingdom-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.kingdom-icon  { font-size: 56px; color: #fff; }
.kingdom-name  { font-weight: 800; font-size: 18px; margin-bottom: 14px; color: #fff; }
.kingdom-desc  { color: #aaa; font-size: 15px; line-height: 1.7; margin-bottom: 28px; flex-grow: 1; }

.kingdom-engage {
  color: #d83826;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.kingdom-engage:hover { color: #df913c; }

/* ─── SERVICE DEPARTMENTS ─── */
.departments { padding: 80px 88px; background: #fff; }

.departments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.departments-left { display: flex; flex-direction: column; gap: 8px; }

.departments h2     { font-size: clamp(30px, 4.5vw, 48px); font-weight: 900; color: #111111; margin: 0; }
.departments-sub    { color: #6b7280; font-size: 15px; margin: 0; max-width: 680px; }

.departments-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 28px; }

.dept-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(16,24,32,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.dept-icon-box  { width: 56px; height: 56px; border-radius: 12px; background: var(--pastel-pink); display: flex; align-items: center; justify-content: center; }
.dept-icon      { font-size: 22px; color: var(--coral); }
.dept-name      { font-weight: 800; font-size: 18px; color: #111111; margin-top: 6px; }
.dept-desc      { color: #6b7280; font-size: 14px; line-height: 1.7; margin-top: 6px; }

.dept-join {
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.dept-join:hover { text-decoration: underline; }

.dept-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ─── PARTNER / GIVE ─── */
.partner {
  background: var(--dark);
  padding: 120px 88px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.partner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(205,157,43,0.08) 0%, transparent 70%);
}

.partner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px);
  gap: 40px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
  box-sizing: border-box;
}

.partner-copy,
.partner-right {
  position: relative;
  z-index: 1;
}

.partner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding: 0 12px;
  min-height: 100%;
}

.partner-copy h2,
.partner-copy .partner-label,
.partner-copy .partner-sub { max-width: 560px; }

.partner-image {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}
.partner-image img { width: 100%; height: auto; display: block; }

.partner-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: stretch;
}

.partner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  background: rgba(205,157,43,0.1);
  padding: 10px 18px;
  border-radius: 28px;
}

.partner h2 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.03;
  margin: 0;
  letter-spacing: -1px;
}
.partner h2 span { color: var(--gold); font-style: italic; }

.partner-sub { color: rgba(255,255,255,0.95); font-size: 16px; margin: 0; max-width: 560px; }

/* ─── EVENTS ─── */
.events { padding: 90px 60px; background: var(--events-bg); color: #fff; }

.events .container { max-width: 1240px; margin: 0 auto; text-align: center; }

.events-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.events-header             { margin-bottom: 20px; }
.events-header h2          { font-size: clamp(34px, 5.5vw, 56px); font-weight: 900; color: #fff; margin-bottom: 9px; }
.events-sub                { color: rgba(255,255,255,0.77); font-size: 16px; max-width: 800px; margin: 0 auto 28px; }

.featured-event {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 40px;
  margin-bottom: 32px;
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.featured-event::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(216,56,38,0.22), rgba(10,4,4,0.68));
  mix-blend-mode: multiply;
}

.featured-inner    { position: relative; z-index: 2; display: flex; width: 100%; align-items: center; }
.featured-left     { flex: 1; text-align: left; padding-right: 24px; }

.event-type-pill {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 13px;
}

.featured-title   { font-size: clamp(36px, 6.5vw, 64px); font-weight: 900; color: #fff; margin: 8px 0 14px; line-height: 1.02; }
.featured-desc    { color: rgba(255,255,255,0.82); margin-bottom: 18px; max-width: 700px; font-size: 16px; }

.event-details-row { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 18px; }

.event-pill {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

/* Countdown */
.countdown       { display: flex; gap: 13px; margin-bottom: 18px; }
.countdown-box   { background: rgba(0,0,0,0.5); padding: 14px 16px; border-radius: 12px; min-width: 76px; text-align: center; }
.countdown-num   { font-size: 30px; font-weight: 900; color: #fff; display: block; }
.countdown-label { font-size: 12px; color: rgba(255,255,255,0.78); margin-top: 7px; text-transform: uppercase; }

.featured-cta    { margin-left: auto; z-index: 2; display: flex; align-items: center; }

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 20px; }

.event-card {
  background: var(--event-card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}

.event-card-top {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.event-card-top::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,4,4,0.2), rgba(10,4,4,0.6)); }

.event-card-label {
  position: absolute;
  left: 14px; top: 14px;
  background: #ff6b6b;
  color: #fff;
  padding: 7px 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
  z-index: 1;
}

.event-card-date {
  position: absolute;
  right: 14px; top: 14px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 9px 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
  z-index: 1;
}

.event-card-body  { padding: 18px; color: #fff; display: flex; flex-direction: column; gap: 10px; }
.event-card-title { font-weight: 900; font-size: 18px; }
.event-card-desc  { color: rgba(255,255,255,0.74); font-size: 15px; line-height: 1.6; }
.event-card-meta  { display: flex; gap: 13px; color: rgba(255,255,255,0.78); font-size: 13px; margin-top: auto; align-items: center; }

.events-view-all  { text-align: center; margin-top: 28px; }

/* ─── RESOURCES ─── */
.resources {
  padding: 100px 88px;
  background: linear-gradient(135deg, #fbebe6 0%, #fef9f7 35%, #ffffff 100%);
}

.resources-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.resources-header .section-label {
  background: rgba(240,68,68,0.1);
  color: #d6282d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 10px 18px;
}

.resources-header h2 { font-size: clamp(38px, 5vw, 56px); font-weight: 900; color: #111111; margin: 0; }
.resources-header p  { color: #6b7280; font-size: 16px; max-width: 640px; margin: 0; line-height: 1.8; }

.resources-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }

.resource-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 60px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.resource-card:hover { transform: translateY(-6px); box-shadow: 0 34px 72px rgba(0,0,0,0.12); }

.resource-img {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.resource-card.active .resource-img::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.resource-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.4) 90%); }

.resource-img .resource-book-icon {
  position: absolute;
  top: 18px; left: 18px;
  font-size: 30px;
  color: rgba(255,255,255,0.95);
  z-index: 1;
}

.resource-img .resource-tag {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,0.9);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 1;
}

.resource-card.active .resource-action {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.resource-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0,0,0,0.9);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.9);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.resource-body   { padding: 26px; }
.resource-name   { font-weight: 800; font-size: 18px; color: #111; margin-bottom: 10px; }
.resource-desc   { color: #6b7280; font-size: 14px; line-height: 1.75; margin-bottom: 20px; }

.resource-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.resource-price { font-weight: 800; font-size: 15px; color: #d6282d; }

/* ─── NEW HERE ─── */
.new-here {
  padding: 80px 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  background: #0b0909;
  color: #fff;
}

.new-here-left    { max-width: 620px; display: flex; flex-direction: column; }

.new-here .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #df913c;
  background: rgba(255,255,255,0.05);
  color: #df913c;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.new-here h2 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  margin: 22px 0 16px;
  line-height: 1.05;
}

.new-here-desc {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 32px;
}

.new-here-items { display: grid; gap: 18px; margin-bottom: 36px; }

.new-here-item {
  display: flex;
  gap: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px;
}

.new-here-item-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.new-here-item-content { display: flex; flex-direction: column; gap: 6px; }
.new-here-item-title   { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 0; }
.new-here-item-desc    { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; }

.new-here-right { position: relative; display: flex; flex-direction: column; justify-content: space-between; }

.new-here-photo {
  border-radius: 24px;
  overflow: hidden;
  min-height: 620px;
  background: url("../images/cant-wait-to-meet-you.png") center / cover no-repeat;
  position: relative;
}

.new-here-faq-card {
  position: absolute;
  bottom: -16px;
  left: 24px;
  width: min(520px, calc(100% - 48px));
  background: #000;
  border: 1px solid #df913c;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.18);
}

.new-here-faq-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}
.new-here-faq-title i { color: #df913c; font-size: 16px; }

.new-here-faq-list    { display: grid; gap: 12px; margin-bottom: 18px; }

.new-here-faq-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
}

.new-here-faq-bullet {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #df913c;
  display: grid;
  place-items: center;
  color: #0b0909;
  font-size: 12px;
  font-weight: 700;
}

.new-here-faq-link { color: #df913c; font-size: 14px; font-weight: 700; text-decoration: none; }

/* ─── TCE SCHOOL ─── */
.school { padding: 100px 88px; background: #fcfbf9; color: #111111; }

.school-inner      { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.school-top-row    { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }

.school-badge-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #d4af37;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
}

.school-badge-text { font-size: 14px; font-weight: 800; color: #111; }

.school h2 { font-size: clamp(44px, 6vw, 72px); font-weight: 900; line-height: 1.02; margin-bottom: 24px; }

.school-desc {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 34px;
}

.school-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.school-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #ece8e4;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(17,17,17,0.04);
}

.school-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
}

.school-feature-icon.red    { background: #e55956; }
.school-feature-icon.purple { background: #8a4fff; }
.school-feature-icon.dark   { background: #111111; }
.school-feature-icon.maroon { background: #8b2a2a; }

.school-feature-text { font-weight: 700; color: #111111; font-size: 14px; line-height: 1.4; }

.school-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #160a08;
  color: #fff;
  border-radius: 999px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
}
.school-cta:hover { transform: translateY(-1px); }

.school-right { position: relative; }

.school-image {
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
  background: url('../images/school-of-ministry.png') top center / cover no-repeat;
  position: relative;
}

.school-stats-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -28px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.school-stat-block               { text-align: center; }
.school-stat-block .school-stat-num   { color: #111; font-size: 32px; margin-bottom: 6px; display: block; }
.school-stat-block .school-stat-label { color: #6b7280; font-size: 13px; display: block; }

/* ─── FOOTER ─── */
footer { background: #0c0a0a; color: #fff; padding: 80px 88px 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  max-width: none;
  margin: 0 0 32px 0;
}

.footer-brand-top    { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }

.footer-brand-logo {
  width: 180px;
  min-height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  display: grid;
  place-items: center;
}
.footer-brand-logo img { width: 100%; height: auto; display: block; }

.footer-brand-copy   { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.8; max-width: 420px; margin-bottom: 24px; }

.footer-socials      { display: flex; gap: 12px; }

.footer-social {
  width: 44px;
  height: 44px;
  background: #121010;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.footer-social:hover { transform: translateY(-2px); background: #1d1a1a; }

.footer-col-title { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }

.footer-links     { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; }
.footer-links a   { color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-time-block   { margin-bottom: 18px; }
.footer-time-day     { color: #df913c; font-weight: 800; margin-bottom: 6px; font-size: 14px; }
.footer-time-hours   { color: #fff; font-size: 14px; line-height: 1.7; }

.footer-contact      { display: grid; gap: 14px; }
.footer-contact-item { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.8; }

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #df913c;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy  { color: rgba(255,255,255,0.55); font-size: 13px; }

.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in            { animation: fadeUp 0.6s ease forwards; }
.animate-in-delay-1    { animation: fadeUp 0.6s 0.1s ease both; }
.animate-in-delay-2    { animation: fadeUp 0.6s 0.2s ease both; }
.animate-in-delay-3    { animation: fadeUp 0.6s 0.3s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  /* Nav */
  nav             { padding: 14px 24px; }
  .nav-hamburger  { display: flex; }

  /* Hero */
  .hero { padding: 100px 24px 60px; }
  .hero-content { max-width: 100%; }
  .hero-badge { padding: 16px 26px; }
  .hero-services { flex-wrap: wrap; gap: 18px; }
  .hero-service-item { min-width: 160px; }

  /* Mandate */
  .mandate              { padding: 60px 24px; }
  .mandate-top          { grid-template-columns: 1fr; }
  .mandate-gallery      { grid-template-columns: 1fr; gap: 24px; }
  .mandate-values-grid  { grid-template-columns: 1fr; }

  /* Leaders */
  .leaders       { padding: 60px 24px; }
  .leaders-header { flex-direction: column; align-items: flex-start; }
  .leaders-controls { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .leaders-title { font-size: 28px; }
  .leaders-btn   { width: 48px; height: 48px; }
  .leaders-track { gap: 20px; }
  .leader-card   { flex: 0 0 82%; }
  .leader-card img { height: auto; aspect-ratio: 4 / 5; }

  /* Kingdom */
  .kingdom           { padding: 60px 24px; }
  .kingdom-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .kingdom h2        { font-size: 32px; }
  .kingdom-card      { padding: 32px 18px; }
  .kingdom-icon-box  { width: 64px; height: 64px; }
  .kingdom-icon      { font-size: 32px; }

  /* Departments */
  .departments       { padding: 60px 24px; }
  .departments-grid  { grid-template-columns: 1fr; }

  /* Partner */
  .partner         { padding: 80px 24px; }
  .partner-inner   { grid-template-columns: 1fr; gap: 28px; }
  .partner-copy    { align-items: center; text-align: center; padding: 0 12px; }
  .partner-copy h2,
  .partner-copy .partner-label,
  .partner-copy .partner-sub { max-width: 100%; }
  .partner-right   { align-items: center; }
  .partner-image   { min-height: 420px; }
  .btn-give-now    { padding: 12px 28px; font-size: 14px; align-self: center; }

  /* Events */
  .events          { padding: 70px 18px; }
  .featured-event  { flex-direction: column; padding: 24px; min-height: 300px; }
  .featured-title  { font-size: clamp(26px, 8vw, 40px); }
  .featured-cta    { margin: 16px 0 0 0; }
  .events-grid     { grid-template-columns: 1fr; }
  .event-card-top  { height: 180px; }

  /* Page hero */
  .page-hero       { padding: 80px 24px 56px; }
  .page-hero p     { max-width: 100%; }

  /* Resources */
  .resources       { padding: 60px 24px; }
  .resources-grid  { grid-template-columns: 1fr; }
  .resource-card   { width: 100%; }
  .resource-img    { min-height: 280px; }
  .resource-footer { gap: 12px; }
  .resource-card.active .resource-action {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    margin: 0 auto;
  }

  /* New Here */
  .new-here        { grid-template-columns: 1fr; padding: 60px 24px; }
  .new-here-photo  { min-height: 380px; }
  .new-here-faq-card { position: static; width: 100%; bottom: auto; left: auto; right: auto; box-shadow: none; border-radius: 22px; margin-top: 24px; }

  /* School */
  .school          { padding: 60px 24px; }
  .school-inner    { grid-template-columns: 1fr; }
  .school-image    { min-height: 420px; }
  .school-stats-card { position: static; bottom: auto; left: auto; right: auto; margin-top: 24px; grid-template-columns: 1fr; }
  .school-stats-card .school-stat-block { text-align: left; }

  /* Footer */
  footer           { padding: 40px 24px 20px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  nav { padding: 12px 18px; }
  .nav-logo-img { height: 48px; }
  .nav-links { width: 100vw; max-width: 100vw; }
  .nav-give { padding: 8px 16px; font-size: 13px; }
  .hero { padding: 80px 18px 44px; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }
  .hero-sub { font-size: 18px; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 14px; }
  .hero-services { gap: 14px; }
  .hero-service-item { min-width: 140px; }
  .hero-badge { padding: 14px 22px; font-size: 14px; }
  .mandate { padding: 40px 18px; }
  .mandate h2 { font-size: clamp(32px, 7vw, 42px); }
  .mandate-desc, .kingdom-sub, .partner-sub, .resources-header p, .new-here-desc, .school-desc { font-size: 15px; }
  .partners-inner, .partner-inner, .school-inner, .two-col { gap: 28px; }
  .partner-image, .resource-img, .leader-card img, .school-image, .new-here-photo { min-height: auto; }
  .featured-event { padding: 20px; gap: 18px; min-height: auto; }
  .featured-left { padding-right: 0; }
  .featured-cta { width: 100%; justify-content: center; }
  .events-grid, .resources-grid, .school-features, .give-options { grid-template-columns: 1fr; }
  .resource-card { min-width: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-contact-item { grid-template-columns: 1fr; }
  .footer-contact-icon { margin-top: 4px; }
  .btn-primary, .btn-outline, .btn-see-more, .btn-red, .btn-dark, .btn-give-now { width: 100%; justify-content: center; }
  .btn-primary { padding: 18px 22px; }
  .btn-outline { padding: 16px 22px; }
  .btn-give-now { padding: 14px 24px; }
  .resource-card { margin: 0; }
  .resource-footer {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .resource-action { width: 100%; max-width: 100%; }
  .section-label { white-space: normal; }
}

/* ─── MOBILE MENU DRAWER ─── */
@media (max-width: 900px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: #1a0000;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.mobile-open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 20px;
  }
  /* Overlay behind drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
  .nav-overlay.active { display: block; }

  /* Hamburger → X animation */
  .nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ─── EVENT CONCLUDED MESSAGE ─── */
.event-concluded-msg {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─── INNER PAGE HERO ─── */
.page-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(26,0,0,0.72), rgba(26,0,0,0.72)),
    url('assets/images/background.png') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  flex-direction: column;
  gap: 16px;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1px;
  margin: 0;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
  margin: 0;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 14px 88px;
  font-size: 13px;
  color: var(--gray);
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
@media (max-width: 900px) { .breadcrumb { padding: 12px 24px; } }

/* ─── PAGE SECTIONS ─── */
.page-section {
  padding: 80px 88px;
}
.page-section-alt {
  padding: 80px 88px;
  background: var(--surface-soft);
}
@media (max-width: 900px) {
  .page-section, .page-section-alt { padding: 60px 24px; }
}

/* ─── CONTENT PROSE ─── */
.prose h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 20px; color: #111; }
.prose h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: #111; }
.prose p  { color: var(--gray); font-size: 16px; line-height: 1.9; margin-bottom: 20px; }
.prose ul { color: var(--gray); font-size: 16px; line-height: 1.9; padding-left: 22px; margin-bottom: 20px; }
.prose li { margin-bottom: 8px; }

/* ─── TWO-COL LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ─── ABOUT PAGE STAT BAR ─── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.stat-bar-item {
  background: #fff;
  padding: 36px 28px;
  text-align: center;
}
.stat-bar-num   { font-size: 44px; font-weight: 900; color: var(--red); line-height: 1; }
.stat-bar-label { color: var(--gray); font-size: 14px; margin-top: 8px; }
@media (max-width: 900px) {
  .stat-bar { grid-template-columns: repeat(2,1fr); }
}

/* ─── LEADERSHIP GRID ─── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.leadership-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10,10,10,0.07);
  display: flex;
  flex-direction: column;
}
.leadership-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--light-gray);
  min-height: 320px;
}
.leadership-card-body { padding: 20px 22px 24px; }
.leadership-card-name  { font-weight: 800; font-size: 16px; color: #111; }
.leadership-card-role  { color: var(--gray); font-size: 13px; margin-top: 4px; }

/* ─── MINISTRY CARDS ─── */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.ministry-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ministry-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.ministry-card-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: rgba(217,37,36,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
}
.ministry-card-name { font-weight: 800; font-size: 18px; color: #111; }
.ministry-card-desc { color: var(--gray); font-size: 14px; line-height: 1.75; }

/* ─── EVENTS LIST PAGE ─── */
.events-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

/* ─── GIVE PAGE ─── */
.give-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.give-option-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.give-option-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(217, 37, 36, 0.12);
}

/* ─── YOUTUBE LIVE MODAL ─── */
.live-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.live-modal.active {
  display: flex;
}
.live-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.live-modal-content {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.live-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.live-modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.live-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gray);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.live-modal-close:hover {
  color: var(--red);
}
.live-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ef4444;
  font-weight: 600;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.live-text {
  color: var(--gray);
}
.youtube-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.youtube-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .live-modal-content {
    width: 95vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
  }
  .live-modal-header {
    padding: 16px;
  }
  .live-modal-header h2 {
    font-size: 18px;
  }
  .live-modal-body {
    padding: 16px;
  }
}
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(217,37,36,0.08);
}
.give-option-icon {
  width: 56px; height: 56px;
  background: rgba(217,37,36,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 22px;
}
.give-option-title { font-weight: 800; font-size: 18px; }
.give-option-desc  { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ─── FAQ PAGE ─── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-q {
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: border-color 0.2s, background 0.2s;
}
.faq-q.open { border-color: var(--red); background: #fff8f8; color: var(--red); }
.faq-q i { font-size: 12px; transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open i { transform: rotate(90deg); }
.faq-a {
  display: none;
  padding: 16px 24px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  margin-top: -12px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}
.faq-a.open { display: block; }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.contact-form-group label { font-weight: 600; font-size: 14px; color: #111; }
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus { border-color: var(--red); }
.contact-form-group textarea { min-height: 130px; resize: vertical; }
.btn-submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: #b81e1e; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(217,37,36,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-label { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.contact-info-val   { color: var(--gray); font-size: 14px; line-height: 1.7; }
.map-embed {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 28px;
  height: 260px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ─── VISIT PAGE STEPS ─── */
.visit-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.visit-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.visit-step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}
.visit-step h3 { font-size: 17px; font-weight: 800; }
.visit-step p  { color: var(--gray); font-size: 14px; line-height: 1.75; }

/* ─── SCHOOL PAGE ─── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.course-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.08); }
.course-tag {
  display: inline-flex;
  background: rgba(217,37,36,0.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}
.course-title { font-weight: 800; font-size: 16px; }
.course-desc  { color: var(--gray); font-size: 14px; line-height: 1.7; }
.course-meta  { display: flex; gap: 16px; font-size: 13px; color: var(--gray); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }

/* ─── 404 ─── */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 24px;
  padding: 80px 24px;
}
.not-found-num { font-size: clamp(80px, 18vw, 160px); font-weight: 900; color: var(--red); line-height: 1; }
.not-found h2  { font-size: 28px; font-weight: 800; }
.not-found p   { color: var(--gray); max-width: 440px; font-size: 16px; line-height: 1.8; }

/* ─── RESOURCES PAGE ─── */
.resources-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
