
/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold:           #D4A017;
  --gold-light:     #E8BE50;
  --gold-pale:      rgba(212, 160, 23, 0.12);
  --gold-border:    rgba(212, 160, 23, 0.30);

  --purple:         #4B0082;
  --purple-mid:     #6B0F6B;
  --purple-dark:    #2E0050;
  --purple-soft:    rgba(75, 0, 130, 0.06);
  --purple-border:  rgba(75, 0, 130, 0.18);

  --white:          #FFFFFF;
  --cream:          #FAF7FD;
  --text:           #1A1228;
  --text-light:     #5C5C7A;
  --border:         #E4DCF0;

  --ff-display:     'Cormorant Garamond', Georgia, serif;
  --ff-body:        'Outfit', sans-serif;
  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
  --radius:         10px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--cream); color: var(--text); overflow-x: hidden; }


/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --gold:          #D4A017;
  --gold-light:    #E8BE50;
  --gold-pale:     rgba(212, 160, 23, 0.14);
  --gold-border:   rgba(212, 160, 23, 0.30);
  --purple:        #4B0082;       /* Winners Chapel deep purple */
  --purple-mid:    #6B0F3C;       /* maroon-purple variant */
  --purple-dark:   #2E0050;       /* darkest purple for backgrounds */
  --white:         #FFFFFF;
  --cream:         #FDF9F2;
  --text:          #1E1E2E;
  --text-light:    #5A5A72;
  --muted:         rgba(255,255,255,0.60);

  --nav-h:       72px;
  --sidebar-w:   290px;
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Outfit', sans-serif;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--ff-body); background: var(--winners-white); color: var(--text-dark); overflow-x: hidden; }


/* ══════════════════════════════════════════════════════════
   NAVBAR (desktop)
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8, 17, 31, 0.096);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--gold);
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.navbar-logo i { font-size: 1rem; }

/* Nav links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navbar-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.navbar-links a:hover { color: var(--gold-light); }
.navbar-links a:hover::after { transform: scaleX(1); }

/* Right side */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--purple-mid);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 9px 22px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.navbar-join-btn:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(219, 61, 61, 0.35);
}

/* Hamburger — hidden on desktop, visible on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--purple);
  border-radius: 4px;
  cursor: pointer;
  padding: 7px 6px;
  transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--cream); }
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════
   MOBILE SIDEBAR
══════════════════════════════════════════════════════════ */

/* Dark overlay behind sidebar */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* Sidebar panel */
.sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 1100;
  width: var(--sidebar-w);
  max-width: 85vw;
  background: var(--purple);
  border-left: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}
.sidebar.open {
  transform: translateX(0);
}

/* Sidebar header */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gold);
}
.sidebar-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 9px;
}
.sidebar-logo i { font-size: 0.9rem; }

.sidebar-close {
  background: none;
  border: 1px solid var(--gold-light);
  color: rgba(255,255,255,0.7);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: color 0.2s, border-color 0.2s;
}
.sidebar-close:hover { color: var(--white); border-color: var(--gold-light); }

/* Sidebar nav links */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex: 1;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 26px;
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.sidebar-nav a i {
  width: 18px;
  text-align: center;
  color: var(--white);
  font-size: 0.9rem;
}
.sidebar-nav a:hover {
  color: var(--white);
  background: rgba(201,168,76,0.07);
  border-left-color: var(--gold);
}

/* Sidebar CTA buttons */
.sidebar-actions {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--gold-border);
}
.sidebar-btn-primary,
.sidebar-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sidebar-btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  color: var(--cream);
}
.sidebar-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(93, 19, 153, 0.35);
}
.sidebar-btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--gold-border);
}
.sidebar-btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* Sidebar social icons */
.sidebar-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sidebar-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.sidebar-socials a:hover { color: var(--purple-mid); border-color: var(--purple); }


/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 6% 100px;
}

/* ── Background image ── */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('logo.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 9s ease;
  will-change: transform;
}
.hero-bg.zoomed { transform: scale(1.0); }

/* ── Overlays ── */
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(8,17,31,0.62);
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(8,17,31,0.7) 100%),
    linear-gradient(to bottom, rgba(8,17,31,0.3) 0%, transparent 35%, rgba(8,17,31,0.8) 80%, rgba(8,17,31,1) 100%);
}

/* ── Dot texture ── */
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

/* ── Gold accent lines ── */
.hero-accent-left,
.hero-accent-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  pointer-events: none;
}
.hero-accent-left  { left:  clamp(20px, 5%, 80px); }
.hero-accent-right { right: clamp(20px, 5%, 80px); }

/* ── Content ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 26px;

  opacity: 0;
  transform: translateY(18px);
}
.eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--cream);
  opacity: 0.7;
}
.hero-eyebrow i { font-size: 0.85rem; }

/* Title */
.hero-title {
  font-family: var(--ff-display);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 22px;

  opacity: 0;
  transform: translateY(22px);
}
.title-top {
  display: block;
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  color: var(--white);
  letter-spacing: -0.5px;
}
.title-main {
  display: block;
  font-size: clamp(4rem, 11vw, 9.5rem);
  color: var(--white);
  letter-spacing: -2px;
  line-height: 0.88;
  text-shadow: 0 0 100px rgba(201,168,76,0.30);
}

/* Sub */
.hero-sub {
  font-size: clamp(0.93rem, 1.8vw, 1.1rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 26px;

  opacity: 0;
  transform: translateY(18px);
}
.hero-sub em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 500;
}

/* Ornamental divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 38px;

  opacity: 0;
  transform: translateY(18px);
}
.hero-divider span {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--purple-mid));
}
.hero-divider span:last-child {
  background: linear-gradient(to left, transparent, var(--purple-mid));
}
.hero-divider i {
  color: var(--purple-mid);
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ── CTA BUTTONS ── */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;

  opacity: 0;
  transform: translateY(18px);
}

/* Shared CTA base */
.cta-worship,
.cta-midnight {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 6px;
  min-width: 240px;
  max-width: 310px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

/* Icon bubble */
.cta-ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* CTA text block */
.cta-body {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}
.cta-body strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.cta-body small {
  font-size: 0.73rem;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
}

/* Arrow icon */
.cta-arrow {
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s;
}

/* ── Worship CTA (gold) ── */
.cta-worship {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple) 100%);
  color: var(--cream);
  box-shadow: 0 8px 30px rgba(82, 14, 146, 0.3);
  border: none;
}
.cta-worship .cta-ic {
  background: rgba(8,17,31,0.18);
  color: var(--cream);
}
.cta-worship:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(74, 4, 88, 0.5);
}
.cta-worship:hover .cta-arrow { transform: translateX(3px); }

/* ── Midnight CTA (dark glass) ── */
.cta-midnight {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--purple-mid);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.cta-midnight .cta-ic {
  background: var(--cream);
  color: var(--gold-light);
}
.cta-midnight:hover {
  transform: translateY(-4px);
  background: rgba(201,168,76,0.10);
  border-color: var(--purple-mid);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.cta-midnight:hover .cta-arrow { transform: translateX(3px); }

/* ── Live tag ── */
.hero-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);

  opacity: 0;
  transform: translateY(14px);
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}


/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */

/* Entrance animation class added by JS */
.revealed {
  animation: revealUp 0.8s var(--ease-out) forwards;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(0.8); }
  50%      { opacity: 1;   transform: scaleY(1); }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── Tablet: hide nav links, show hamburger ── */
@media (max-width: 960px) {
  .navbar-links { display: none; }
  .hamburger    { display: flex; }
  .navbar-join-btn { display: none; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .hero {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 80px;
  }

  .hero-accent-left,
  .hero-accent-right { display: none; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-worship,
  .cta-midnight {
    width: 100%;
    max-width: 340px;
    min-width: unset;
  }

  .br-desk { display: none; }

  .title-main { letter-spacing: -1px; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */

.about {
  background: var(--purple-soft);
  padding: 100px 5% 110px;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.about-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ── Section Label ──────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;

  opacity: 0;
  transform: translateY(16px);
}
.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}


/* ── Section Heading ────────────────────────────────────── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--gold);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 18px;

  opacity: 0;
  transform: translateY(18px);
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--gold);
  line-height: 1.85;
  opacity:0;
  transform: translateY(16px);
}
.section-intro strong { color: var(--gold); font-weight: 700; }


/* ── Story + VM Grid ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 72px;
  align-items: start;

  opacity: 0;
  transform: translateY(20px);
}


/* ── Story Card ─────────────────────────────────────────── */
.story-card {
  background: var(--purple);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

/* gold corner accent */
.story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* dot texture */
.story-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.story-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.story-card-top i { font-size: 1rem; }

.story-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.story-card p strong { color: var(--gold-light); font-weight: 600; }

.story-card blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  margin: 20px 0;
  background: rgba(201,168,76,0.08);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Stats strip */
.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
  position: relative;
  z-index: 1;
}
.sstat {
  text-align: center;
  padding: 0 6px;
}
.sstat:not(:last-child) {
  border-right: 1px solid rgba(201,168,76,0.2);
}
.sstat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.sstat span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}


/* ── Vision & Mission Stack ─────────────────────────────── */
.vm-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid #EAE4D8;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.vm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
}

/* top accent stripe */
.vision-card::before,
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.vision-card::before  { background: linear-gradient(to right, var(--gold), var(--gold-light)); }
.mission-card::before { background: linear-gradient(to right, var(--purple), var(--purple-mid)); }

.vm-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.vision-card  .vm-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.mission-card .vm-icon { background: var(--purple); color: var(--gold); }

.vm-body h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}
.vm-body p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
}
.vm-ref {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.vm-ref i { font-size: 0.7rem; }


/* ══════════════════════════════════════════════════════════
   12 PILLARS
══════════════════════════════════════════════════════════ */

.pillars-section {
  margin-bottom: 72px;

  opacity: 0;
  transform: translateY(20px);
}

.pillars-header {
  text-align: center;
  margin-bottom: 44px;
}
.pillars-header h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.pillars-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid #EAE4D8;
  border-radius: var(--radius);
  padding: 24px 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s;

  opacity: 0;
  transform: translateY(20px);
}
.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: 0 12px 36px rgba(201,168,76,0.12);
}

/* Animated gold bottom bar on hover */
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(201,168,76,0.10);
  line-height: 1;
  pointer-events: none;
}

.pillar-card > i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.pillar-card h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.pillar-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}
.pillar-ref {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* ══════════════════════════════════════════════════════════
   SCRIPTURE BANNER
══════════════════════════════════════════════════════════ */

.scripture-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.18);

  opacity: 0;
  transform: translateY(20px);
}

.scripture-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.quote-icon {
  color: var(--gold);
  font-size: 2rem;
  opacity: 0.4;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.scripture-banner p {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}

.scripture-banner span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════════════════════════ */

.revealed {
  animation: revealUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .story-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sstat:not(:last-child) { border-right: none; }
  .sstat:nth-child(odd) { border-right: 1px solid rgba(201,168,76,0.2); }
}

@media (max-width: 520px) {
  .about { padding: 70px 5% 80px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vm-card { flex-direction: column; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .scripture-banner { padding: 36px 22px; }
}

.prayer {
  position: relative;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  padding: 110px 5% 120px;
  overflow: hidden;
}
 
/* ── Starfield background ── */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
 
.stars span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
  animation: twinkle var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}
 
/* Individual star positions & sizes */
.stars span:nth-child(1)  { width:2px;  height:2px;  top:8%;  left:12%; --dur:3.5s; --delay:0s;    }
.stars span:nth-child(2)  { width:1px;  height:1px;  top:15%; left:78%; --dur:4.2s; --delay:0.5s;  }
.stars span:nth-child(3)  { width:2px;  height:2px;  top:22%; left:45%; --dur:5s;   --delay:1s;    }
.stars span:nth-child(4)  { width:1px;  height:1px;  top:32%; left:90%; --dur:3.8s; --delay:1.5s;  }
.stars span:nth-child(5)  { width:3px;  height:3px;  top:5%;  left:60%; --dur:6s;   --delay:0.2s;  }
.stars span:nth-child(6)  { width:1px;  height:1px;  top:50%; left:20%; --dur:4.5s; --delay:2s;    }
.stars span:nth-child(7)  { width:2px;  height:2px;  top:65%; left:85%; --dur:3.2s; --delay:0.8s;  }
.stars span:nth-child(8)  { width:1px;  height:1px;  top:72%; left:35%; --dur:5.5s; --delay:1.2s;  }
.stars span:nth-child(9)  { width:2px;  height:2px;  top:10%; left:30%; --dur:4.8s; --delay:0.4s;  }
.stars span:nth-child(10) { width:1px;  height:1px;  top:85%; left:70%; --dur:3.6s; --delay:1.8s;  }
.stars span:nth-child(11) { width:2px;  height:2px;  top:40%; left:5%;  --dur:5.2s; --delay:0.6s;  }
.stars span:nth-child(12) { width:1px;  height:1px;  top:28%; left:55%; --dur:4s;   --delay:2.2s;  }
.stars span:nth-child(13) { width:3px;  height:3px;  top:78%; left:15%; --dur:6.5s; --delay:1s;    }
.stars span:nth-child(14) { width:1px;  height:1px;  top:55%; left:92%; --dur:3.9s; --delay:0.3s;  }
.stars span:nth-child(15) { width:2px;  height:2px;  top:92%; left:48%; --dur:4.6s; --delay:1.6s;  }
 
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50%       { opacity: 0.7; transform: scale(1.2); }
}
 
/* Glow in center top */
.prayer::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
 
.prayer-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
 
 
/* ── Section Label ──────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}
.label-line {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}
 
 
/* ── Section Title ──────────────────────────────────────── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: rgb(209, 201, 201);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(18px);
}
.title-gold {
  color: var(--gold);
  display: block;
}
 
 
/* ── Section Intro ──────────────────────────────────────── */
.section-intro {
  max-width: 620px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
}
 
 
/* ── Scripture Strip ────────────────────────────────────── */
.scripture-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin: 0 auto 56px;
  display: flex;
  justify-content: center;
  width: fit-content;
  opacity: 0;
  transform: translateY(14px);
}
.scripture-strip i { font-size: 0.85rem; flex-shrink: 0; }
.scripture-strip strong { color: var(--white); font-weight: 700; }
 
 
/* ══════════════════════════════════════════════════════════
   PRAYER CARDS GRID
══════════════════════════════════════════════════════════ */
 
.prayer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  align-items: start;
}
 
 
/* ── Individual Card ────────────────────────────────────── */
.prayer-card {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(160deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(22px);
}
 
/* Top gold line on hover */
.prayer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
 
.prayer-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201,168,76,0.1);
}
.prayer-card:hover::before { transform: scaleX(1); }
 
 
/* ── Featured card (3AM) ────────────────────────────────── */
.featured-card {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(160deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
}
.featured-card::before { transform: scaleX(1); } /* always visible */
 
.featured-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.featured-tag i { font-size: 0.6rem; }
 
 
/* ── Card Top ───────────────────────────────────────────── */
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.card-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 5px 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.card-time-badge i { font-size: 0.75rem; }
 
/* Pulsing live dot */
.card-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
 
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
 
 
/* ── Card Body ──────────────────────────────────────────── */
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.card-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
 
.card-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
 
 
/* ── Focus list ─────────────────────────────────────────── */
.card-focus {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
 
.card-focus li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
 
.card-focus li i {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
 
 
/* ── Join Button ────────────────────────────────────────── */
.join-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  background: var(--gold-light);
  color: var(--text-dark);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  margin-top: auto;
}
 
.join-btn:hover {
  background: #20b957;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
 
.btn-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.8;
  transition: transform 0.2s;
}
.join-btn:hover .btn-arrow { transform: translateX(3px); }
 
/* Featured card button */
.join-btn-featured {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
}
.join-btn-featured:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 36px rgba(201,168,76,0.5);
}
 
 
/* ══════════════════════════════════════════════════════════
   BOTTOM BANNER
══════════════════════════════════════════════════════════ */
 
.prayer-banner {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
}
 
.prayer-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
 
.prayer-banner-text {
  flex: 1;
  min-width: 200px;
}
 
.prayer-banner-text h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
 
.prayer-banner-text p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}
 
.prayer-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.prayer-banner-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
 
 
/* ══════════════════════════════════════════════════════════
   ANIMATION
══════════════════════════════════════════════════════════ */
 
.revealed {
  animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
 
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
 
/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
 
@media (max-width: 1024px) {
  .prayer-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 600px) {
  .prayer { padding: 70px 5% 80px; }
  .prayer-grid { grid-template-columns: 1fr; }
  .prayer-banner { flex-direction: column; text-align: center; }
  .prayer-banner-icon { margin: 0 auto; }
  .prayer-banner-btn { width: 100%; justify-content: center; }
  .scripture-strip { text-align: center; flex-direction: column; border-radius: 12px; }
}
 
 /* ══════════════════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════════════════ */
.services {
  background: var(--purple-dark);
  padding: 100px 5% 110px;
  position: relative;
  overflow: hidden;
}
 
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
 
.services-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
 
 
/* ── Section Label ──────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}
.label-line { display: block; width: 38px; height: 1px; background: var(--gold); opacity: 0.65; }
 
 
/* ── Heading ────────────────────────────────────────────── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
}
.title-gold { color: var(--gold); }
 
.section-intro {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  color: var(--text);
  line-height: 1.85;
  opacity: 0;
  transform: translateY(16px);
}
 
 
/* ── Today Banner ───────────────────────────────────────── */
.today-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}
 
.today-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
 
.today-text { flex: 1; min-width: 160px; }
.today-text strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.today-text span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
 
.today-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  flex-shrink: 0;
}
 
 
/* ══════════════════════════════════════════════════════════
   SERVICE TABLE
══════════════════════════════════════════════════════════ */
 
.table-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  overflow-x: auto; /* mobile scroll */
}
 
.service-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--purple);
}
 
/* ── Table Head ── */
.service-table thead tr {
  background: var(--navy);
}
 
.service-table thead th {
  padding: 16px 18px;
  text-align: left;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
 
.service-table thead th i {
  color: var(--gold);
  margin-right: 6px;
  font-size: 0.75rem;
}
 
/* ── Table Rows ── */
.day-row {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.day-row:last-child { border-bottom: none; }
.day-row:hover { background: var(--row-hover); }
 
.service-table td {
  padding: 16px 18px;
  font-size: 0.875rem;
  vertical-align: middle;
}
 
/* Day cell */
.day-cell {
  white-space: nowrap;
  font-weight: 700;
  color: var(--gold-light);
}
.day-abbr {
  display: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.main-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}
 
/* Service name */
.service-name {
  color: var(--cream);
  font-weight: 500;
  line-height: 1.4;
}
.service-icon {
  color: var(--purple);
  margin-right: 8px;
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}
.gold-icon { color: var(--gold) !important; }
 
.service-note {
  display: block;
  font-size: 0.74rem;
  color: var(--white);
  font-weight: 400;
  margin-top: 3px;
  margin-left: 24px;
}
 
/* Time cell */
.time-cell { white-space: nowrap; }
.time-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(11,28,61,0.07);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.2px;
}
.time-badge-gold {
  background: var(--gold-pale);
  color: #8B6914;
  border: 1px solid var(--gold-border);
}
 
/* For cell */
.for-cell {
  color: var(--gold-light);
  font-size: 0.82rem;
}
 
/* ── Featured (Wednesday) rows ── */
.featured-row { background: rgba(99,102,241,0.02); }
.featured-row:hover { background: rgba(99,102,241,0.05); }
 
/* ── Sunday rows ── */
.sunday-row { background: var(--sunday-bg); }
.sunday-row:hover { background: rgba(201,168,76,0.09); }
 
 
/* ── Type Pills ─────────────────────────────────────────── */
.type-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
 
.type-prayer     { background: var(--prayer-bg);     color: var(--prayer-color); }
.type-communion  { background: var(--communion-bg);  color: var(--communion-color); }
.type-word       { background: var(--word-bg);        color: var(--word-color); }
.type-fellowship { background: var(--fellowship-bg); color: var(--fellowship-color); }
.type-worship    { background: var(--worship-bg);    color: var(--worship-color); }
.type-children   { background: var(--children-bg);   color: var(--children-color); }
.type-youth      { background: var(--youth-bg);       color: var(--youth-color); }
 
 
/* ══════════════════════════════════════════════════════════
   SPECIAL SERVICES
══════════════════════════════════════════════════════════ */
 
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}
 
.special-card {
 background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.12);
}
 
.special-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
 
.special-body h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.special-body p {
  font-size: 0.82rem;
  color: var(--cream);
  line-height: 1.65;
}
 
 
/* ── Verse Bar ──────────────────────────────────────────── */
.verse-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--purple);
  border-radius: var(--radius);
  padding: 24px 30px;
  opacity: 0;
  transform: translateY(16px);
}
 
.verse-bar i {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.5;
  flex-shrink: 0;
}
 
.verse-bar p {
  font-family: var(--ff-display);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.verse-bar p strong {
  color: var(--gold-light);
  font-style: normal;
}
 
 
/* ══════════════════════════════════════════════════════════
   ANIMATION
══════════════════════════════════════════════════════════ */
 
.revealed {
  animation: revealUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
 
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* Today row highlight */
.today-highlight {
  background: rgba(201,168,76,0.08) !important;
  border-left: 3px solid var(--gold);
}
.today-highlight .day-cell { color: var(--gold) !important; }
 
 
/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
 
@media (max-width: 900px) {
  .specials-grid { grid-template-columns: 1fr 1fr; }
}
 
@media (max-width: 640px) {
  .services { padding: 70px 5% 80px; }
  .specials-grid { grid-template-columns: 1fr; }
  .verse-bar { flex-direction: column; text-align: center; }
 
  /* Swap full day name for abbreviation on very small screens */
  .day-name { display: none; }
  .day-abbr { display: block; }
 
  .service-table thead th:last-child,
  .service-table tbody td:last-child { display: none; } /* hide "For" col */
}
 

/* ============================================================
   LFC FIRST CHURCH — location.css
   Winners' Chapel Colors: Deep Purple #4B0082 + Gold #D4A017
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ══════════════════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════════════════ */
.location {
 background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  padding: 100px 5% 110px;
  position: relative;
  overflow: hidden;
}

.location::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(75,0,130,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.location::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,0,130,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.location-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ── Section Label ──────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}
.label-line { display: block; width: 38px; height: 1px; background: var(--gold); opacity: 0.7; }


/* ── Title ──────────────────────────────────────────────── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
}
.title-gold { color: var(--gold); }

.section-intro {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
}


/* ══════════════════════════════════════════════════════════
   GRID
══════════════════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(22px);
}


/* ── Info Panel ─────────────────────────────────────────── */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(75,0,130,0.09);
}

.info-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--purple-soft);
  border: 1px solid var(--purple-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.info-icon-gold {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  color: var(--gold);
}

.info-body h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.info-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}
.info-body strong { color: var(--text); font-weight: 600; }

.info-card-gold {
  border-left-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,160,23,0.04), rgba(75,0,130,0.03));
}

/* Directions button */
.directions-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  letter-spacing: 0.2px;
  margin-top: 4px;
}
.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(75,0,130,0.35);
}
.directions-btn i:first-child { font-size: 1rem; }
.btn-ext { margin-left: auto; font-size: 0.7rem; opacity: 0.7; }

/* Social row */
.social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.social-row span {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 4px;
}
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.social-row a:hover { color: var(--white); background: var(--purple); border-color: var(--purple); }


/* ── Map Panel ──────────────────────────────────────────── */
.map-panel { display: flex; flex-direction: column; gap: 12px; }

.map-frame {
  width: 100%;
  height: 490px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(75,0,130,0.13);
  background: var(--purple-soft);
  position: relative;
}

.map-frame iframe {
  width: 100%; height: 100%;
  display: block; border: 0;
}

/* Fallback shown by JS */
.map-fallback {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  text-align: center;
  padding: 32px;
  gap: 16px;
}
.map-fallback i { font-size: 3rem; color: var(--gold); }
.map-fallback h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.map-fallback p { font-size: 0.85rem; color: rgba(255,255,255,0.6); max-width: 280px; line-height: 1.6; }
.map-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  margin-top: 8px;
  transition: transform 0.2s;
}
.map-fallback a:hover { transform: translateY(-2px); }

/* Map caption */
.map-caption {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}
.map-caption i { color: var(--purple); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.map-caption a { color: var(--gold); font-weight: 700; text-decoration: none; }
.map-caption a:hover { color: var(--purple); }
.map-caption a i { font-size: 0.62rem; margin-left: 3px; }


/* ══════════════════════════════════════════════════════════
   FIRST TIMER BANNER
══════════════════════════════════════════════════════════ */
.visit-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 30px 36px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
}
.visit-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,160,23,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.visit-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 240px;
  position: relative;
  z-index: 1;
}
.banner-icon {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.visit-banner-left h4 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.visit-banner-left p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.visit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(212,160,23,0.4);
}


/* ══════════════════════════════════════════════════════════
   ANIMATION
══════════════════════════════════════════════════════════ */
.revealed {
  animation: revealUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-frame { height: 380px; }
}
@media (max-width: 600px) {
  .location { padding: 70px 5% 80px; }
  .map-frame { height: 300px; }
  .visit-banner { flex-direction: column; padding: 24px 20px; text-align: center; }
  .visit-banner-left { flex-direction: column; align-items: center; text-align: center; }
  .visit-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   LFC FIRST CHURCH — giving.css
   Sow a Seed / Giving Section
   Winners' Chapel Colors: Deep Purple #4B0082 + Gold #D4A017
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }


/* ══════════════════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════════════════ */
.giving {
  position: relative;
  background: linear-gradient(160deg, var(--purple-dark) 0%, #3a0068 50%, var(--purple-dark) 100%);
  padding: 100px 5% 110px;
  overflow: hidden;
}

.giving-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,160,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.giving-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,160,23,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.giving-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ── Section Label ──────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}
.label-line { display: block; width: 38px; height: 1px; background: var(--gold); opacity: 0.7; }


/* ── Title ──────────────────────────────────────────────── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
}
.title-gold { color: var(--gold); }

.section-intro {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
}


/* ── Scripture Strip ────────────────────────────────────── */
.scripture-strip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 14px 24px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
}
.scripture-strip i { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.scripture-strip strong { color: var(--gold-light); font-weight: 700; }


/* ── Giving Type Tabs ───────────────────────────────────── */
.giving-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(14px);
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.3px;
}
.tab-btn i { font-size: 0.8rem; }
.tab-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--purple-dark);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212,160,23,0.30);
}


/* ── Tab Description ────────────────────────────────────── */
.tab-desc {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
  min-height: 56px;
  opacity: 0;
  transform: translateY(14px);
}
.tab-desc p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-style: italic;
  transition: opacity 0.3s ease;
}


/* ══════════════════════════════════════════════════════════
   ACCOUNT CARDS
══════════════════════════════════════════════════════════ */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.account-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(22px);
}

/* top gold accent line on hover */
.account-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.account-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.30);
  box-shadow: 0 20px 50px rgba(0,0,0,0.40);
}
.account-card:hover::before { transform: scaleX(1); }

/* Featured card */
.featured-account {
  border-color: rgba(212,160,23,0.28);
  background: linear-gradient(160deg, rgba(212,160,23,0.07), rgba(75,0,130,0.08));
}
.featured-account::before { transform: scaleX(1); }

.featured-ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.featured-ribbon i { font-size: 0.55rem; }


/* ── Card Header ────────────────────────────────────────── */
.account-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bank-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bank-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bank-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.bank-tag {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.currency-badge {
  background: var(--purple-soft);
  border: 1px solid var(--purple-border);
  color: rgba(255,255,255,0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}


/* ── Account Details ────────────────────────────────────── */
.account-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(0,0,0,0.20);
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.06);
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
}

/* Account number row */
.number-row .detail-value {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
}


/* ── Copy Button ────────────────────────────────────────── */
.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.3px;
  width: 100%;
}
.copy-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.40);
  color: var(--white);
}
.copy-btn.copied {
  background: rgba(74,222,128,0.15);
  border-color: rgba(74,222,128,0.45);
  color: #4ade80;
}

/* Gold copy button (featured) */
.copy-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--purple-dark);
}
.copy-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 20px rgba(212,160,23,0.40);
  color: var(--purple-dark);
}
.copy-btn-gold.copied {
  background: rgba(74,222,128,0.20);
  border: 1.5px solid rgba(74,222,128,0.5);
  color: #4ade80;
}


/* ── Update Note ────────────────────────────────────────── */
.update-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  opacity: 0;
  transform: translateY(12px);
}
.update-note i { font-size: 0.82rem; }


/* ══════════════════════════════════════════════════════════
   GIVING PROMISES GRID
══════════════════════════════════════════════════════════ */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(20px);
}

.promise-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.promise-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.promise-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
}
.promise-card:hover::after { transform: scaleX(1); }

.promise-card > i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.promise-card h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.promise-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.promise-ref {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* ── Bottom Banner ──────────────────────────────────────── */
.giving-banner {
  background: rgba(212,160,23,0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
}
.giving-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,160,23,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.quote-icon {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.giving-banner p {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}
.giving-banner span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  background: var(--white);
  color: var(--purple-dark);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: #4ade80; font-size: 1rem; }


/* ══════════════════════════════════════════════════════════
   ANIMATION
══════════════════════════════════════════════════════════ */
.revealed {
  animation: revealUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .promises-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .accounts-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .giving { padding: 70px 5% 80px; }
  .promises-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .giving-banner { padding: 28px 18px; }
  .toast { left: 16px; right: 16px; bottom: 16px; justify-content: center; }
}
@media (max-width: 420px) {
  .promises-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LFC FIRST CHURCH — bishop.css
   Bishop David Oyedepo Section
   Winners' Chapel Colors: Deep Purple #4B0082 + Gold #D4A017
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════════════════ */
.bishop {
  background: var(--cream);
  padding: 100px 5% 110px;
  position: relative;
  overflow: hidden;
}

.bishop-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(75,0,130,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.bishop-glow-left {
  position: absolute;
  top: 10%; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,0,130,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.bishop-glow-right {
  position: absolute;
  bottom: 10%; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bishop-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ── Section Label ──────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}
.label-line { display: block; width: 38px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
}
.title-gold { color: var(--gold); }

.section-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
}


/* ══════════════════════════════════════════════════════════
   MAIN GRID
══════════════════════════════════════════════════════════ */
.bishop-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
  opacity: 0;
  transform: translateY(22px);
}


/* ══════════════════════════════════════════════════════════
   PORTRAIT CARD
══════════════════════════════════════════════════════════ */
.portrait-card {
  background: linear-gradient(160deg, var(--purple-dark), var(--purple));
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(46,0,80,0.25);
  position: relative;
  overflow: hidden;
}

/* dot texture overlay */
.portrait-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,160,23,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Photo */
.portrait-photo-wrap {
  position: relative;
  width: 180px; height: 180px;
  border-radius: 50%;
  z-index: 1;
}

.portrait-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
  border: 3px solid var(--gold);
}

.portrait-fallback {
  display: none;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 3px solid var(--gold);
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
}

/* Rotating gold ring */
.portrait-frame {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(212,160,23,0.40);
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Name block */
.portrait-name {
  text-align: center;
  position: relative;
  z-index: 1;
}
.portrait-name h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.portrait-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.portrait-title-badge i { font-size: 0.65rem; }

/* Stats strip */
.portrait-stats {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  position: relative;
  z-index: 1;
}
.pstat {
  flex: 1;
  text-align: center;
}
.pstat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.pstat span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.pstat-sep {
  width: 1px;
  height: 32px;
  background: rgba(212,160,23,0.20);
  flex-shrink: 0;
}

/* Social icons */
.portrait-socials {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.portrait-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.portrait-socials a:hover {
  color: var(--purple-dark);
  background: var(--gold);
  border-color: var(--gold);
}


/* ══════════════════════════════════════════════════════════
   BIO CONTENT
══════════════════════════════════════════════════════════ */
.bishop-bio {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Mandate quote */
.mandate-quote {
  background: linear-gradient(135deg, rgba(75,0,130,0.06), rgba(212,160,23,0.05));
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
  position: relative;
}
.mandate-quote-icon {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.35;
  margin-bottom: 10px;
  display: block;
}
.mandate-quote p {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.65;
  margin-bottom: 10px;
}
.mandate-quote span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bio paragraphs */
.bio-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bio-text p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.85;
}
.bio-text strong { color: var(--purple); font-weight: 700; }

/* Achievements grid */
.achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 14px;
  border-left: 3px solid var(--gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.achievement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(75,0,130,0.08);
}

.ach-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ach-body h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 4px;
}
.ach-body p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Learn more button */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1.5px solid var(--purple-border);
  color: var(--purple);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  width: fit-content;
  letter-spacing: 0.2px;
}
.learn-more-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(75,0,130,0.25);
}


/* ══════════════════════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════════════════════ */
.timeline-section {
  opacity: 0;
  transform: translateY(22px);
}

.timeline-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  margin-bottom: 44px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting horizontal line */
.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(to right, var(--gold-border), var(--gold), var(--gold-border));
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  opacity: 0;
  transform: translateY(18px);
}

.timeline-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--gold-border);
  margin-bottom: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Last item dot */
.timeline-item:last-child .timeline-dot {
  background: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-border);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px var(--purple-border); }
  50%       { box-shadow: 0 0 0 7px rgba(75,0,130,0.15); }
}

.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-content h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 5px;
  line-height: 1.3;
}
.timeline-content p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════
   ANIMATION
══════════════════════════════════════════════════════════ */
.revealed {
  animation: revealUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .bishop-grid { grid-template-columns: 1fr; gap: 32px; }
  .portrait-card { flex-direction: row; flex-wrap: wrap; text-align: left; border-radius: 12px; }
  .portrait-card { flex-direction: column; align-items: center; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .timeline::before { display: none; }
  .achievements-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .bishop { padding: 70px 5% 80px; }
  .timeline { grid-template-columns: 1fr; gap: 20px; }
  .timeline-item { flex-direction: row; text-align: left; gap: 14px; align-items: flex-start; }
  .timeline-dot { margin-bottom: 0; margin-top: 4px; }
}

/* ============================================================
   LFC FIRST CHURCH — footer.css
   Footer Section
   Winners' Chapel Colors: Deep Purple #4B0082 + Gold #D4A017
   ============================================================ */
   

/* ══════════════════════════════════════════════════════════
   FOOTER WRAPPER
══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--purple);
  overflow: hidden;
}

.footer-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,160,23,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 0;
}

.footer-glow-top {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(75,0,130,0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


/* ══════════════════════════════════════════════════════════
   PRE-FOOTER CTA BAND
══════════════════════════════════════════════════════════ */
.prefooter {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 5%;
  position: relative;
  z-index: 1;
}

.prefooter::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,160,23,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.prefooter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.prefooter-text h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.prefooter-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.prefooter-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.prefooter-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  white-space: nowrap;
}
.prefooter-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.40);
}

.prefooter-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.30);
  color: var(--white);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.prefooter-btn-ghost:hover {
  border-color: var(--gold-border);
  background: var(--gold-pale);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════════
   FOOTER BODY
══════════════════════════════════════════════════════════ */
.footer-body {
  padding: 72px 5% 52px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 48px;
}


/* ── Column base ────────────────────────────────────────── */
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col-title i { font-size: 0.75rem; }


/* ── Brand Column ───────────────────────────────────────── */
.footer-brand { }

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.brand-logo i { font-size: 1.1rem; }

.brand-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 300px;
}

.brand-mandate {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  margin-bottom: 20px;
}
.brand-mandate i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.6;
}
.brand-mandate span {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 9px;
}

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-icon:hover {
  color: var(--purple-dark);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}


/* ── Nav Links Columns ──────────────────────────────────── */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
  transition: color 0.2s, gap 0.2s;
}
.footer-links li a i {
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-links li a:hover {
  color: var(--link-hover);
  gap: 12px;
}
.footer-links li a:hover i {
  opacity: 1;
  transform: translateX(2px);
}


/* ── Contact Column ─────────────────────────────────────── */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-contact li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

/* Service times mini table */
.footer-service-times {
  background: rgba(212,160,23,0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.footer-service-times h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-service-times h5 i { font-size: 0.7rem; }

.service-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-time-row:last-child { border-bottom: none; }
.st-label {
  font-size: 0.78rem;
  color: var(--muted);
}
.st-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Courier New', monospace;
}


/* ══════════════════════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════════════════════ */
.footer-divider {
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.divider-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
.divider-cross {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.5;
}


/* ══════════════════════════════════════════════════════════
   FOOTER BOTTOM
══════════════════════════════════════════════════════════ */
.footer-bottom {
  padding: 22px 5%;
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  font-size: 0.78rem;
  color: var(--muted-dark);
}
.copyright strong { color: rgba(255,255,255,0.60); font-weight: 600; }

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }
.dot-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--muted-dark);
  opacity: 0.5;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-tagline i { color: #ef4444; font-size: 0.7rem; }


/* ══════════════════════════════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(212,160,23,0.40);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(212,160,23,0.55);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .prefooter-inner { flex-direction: column; text-align: center; }
  .prefooter-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-body { padding: 52px 5% 36px; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .back-to-top { bottom: 16px; right: 16px; }
}

/* ============================================================
   LFC FIRST CHURCH — pastor.css
   Meet Our Pastor Section
   Winners' Chapel Colors: Deep Purple #4B0082 + Gold #D4A017
   ============================================================ */



/* ══════════════════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════════════════ */
.pastor {
  background: var(--cream);
  padding: 100px 5% 110px;
  position: relative;
  overflow: hidden;
}

.pastor-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(75,0,130,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.pastor-glow {
  position: absolute;
  top: 0; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pastor-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ── Section Label ──────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}
.label-line { display: block; width: 38px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
}
.title-gold { color: var(--gold); }

.section-intro {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
}


/* ══════════════════════════════════════════════════════════
   PASTOR CARD
══════════════════════════════════════════════════════════ */
.pastor-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 60px rgba(75,0,130,0.10);
  opacity: 0;
  transform: translateY(24px);
}


/* ══════════════════════════════════════════════════════════
   PHOTO PANEL (LEFT)
══════════════════════════════════════════════════════════ */
.pastor-photo-panel {
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}

/* Dot texture */
.pastor-photo-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,160,23,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Photo wrap */
.photo-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}

.pastor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Fallback avatar */
.photo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 4px solid var(--gold);
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gold);
}

/* Rotating dashed ring */
.photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(212,160,23,0.35);
  animation: spinRing 25s linear infinite;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Preaching badge */
.preaching-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212,160,23,0.35);
  letter-spacing: 0.3px;
}
.preaching-badge i { font-size: 0.65rem; }

/* Social icons */
.pastor-socials {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.ps-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.ps-icon:hover {
  color: var(--purple-dark);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}


/* ══════════════════════════════════════════════════════════
   INFO PANEL (RIGHT)
══════════════════════════════════════════════════════════ */
.pastor-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

/* Role badge */
.pastor-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
}
.pastor-role-badge i { font-size: 0.65rem; }

/* Name */
.pastor-name {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  color: var(--purple);
  line-height: 1.1;
}

/* Ornamental divider */
.name-divider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.name-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-border), transparent);
}
.name-divider span:last-child {
  background: linear-gradient(to left, var(--gold-border), transparent);
}
.name-divider i {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Bio */
.pastor-bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pastor-bio p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Passion pillars */
.pastor-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pillar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--purple-soft);
  border: 1px solid var(--purple-border);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.pillar-item i {
  color: var(--gold);
  font-size: 0.75rem;
}
.pillar-item:hover {
  background: var(--gold-pale);
  border-color: var(--gold-border);
}

/* Scripture */
.pastor-scripture {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--purple-soft);
  border: 1px solid var(--purple-border);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
}
.scripture-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.7;
}
.pastor-scripture p {
  font-family: var(--ff-display);
  font-size: 0.97rem;
  font-style: italic;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.55;
  margin-bottom: 4px;
}
.pastor-scripture span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA button */
.pastor-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  width: fit-content;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  letter-spacing: 0.2px;
}
.pastor-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(75,0,130,0.30);
}
.cta-arrow {
  margin-left: 4px;
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.pastor-cta:hover .cta-arrow { transform: translateX(3px); }


/* ══════════════════════════════════════════════════════════
   ANIMATION
══════════════════════════════════════════════════════════ */
.revealed {
  animation: revealUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .pastor-card { grid-template-columns: 1fr; }
  .pastor-photo-panel { padding: 48px 32px 36px; }
  .pastor-info { padding: 36px 32px; }
}

@media (max-width: 600px) {
  .pastor { padding: 70px 5% 80px; }
  .photo-wrap { width: 190px; height: 190px; }
  .pastor-info { padding: 28px 20px; }
  .pastor-name { font-size: 2rem; }
  .pastor-pillars { gap: 8px; }
}