/* ============================================================
   BELIEVERS RESTORATION CHAPEL INTERNATIONAL
   Shared Stylesheet — v3 (multi-page, icon-free)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap&display=swap');
/* ── VARIABLES ── */
:root {
  --navy:         #07111f;
  --blue:         #1565c0;
  --blue-mid:     #1e88e5;
  --gold:         #c8972a;
  --gold-light:   #f0c040;
  --white:        #ffffff;
  --section-dark: #0b1a30;
  --section-mid:  #0f2040;
  --text-dim:     rgba(255,255,255,0.6);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── CANVAS ── */
#bg-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}

nav, main, section, .page-hero, .strip,
.verse-banner, footer { position: relative; z-index: 1; }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 44px; }
section { padding: 96px 0; }

/* ── SECTION LABELS / TITLES ── */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content:''; height:1px; width:38px; background:var(--gold); }
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-title.centered { text-align: center; }

.section-desc {
  font-size: 16px; color: var(--text-dim);
  line-height: 1.85; max-width: 560px;
}
.section-desc.centered { text-align: center; margin: 0 auto; }

/* ── DIVIDER ── */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 28px 0;
}
.gold-divider.centered { margin: 28px auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-family: 'Cinzel', serif; font-size: 12px;
  font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 15px 38px;
  text-decoration: none; border-radius: 1px;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 4px 22px rgba(200,151,42,0.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200,151,42,0.5);
}
.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white); font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 38px; text-decoration: none;
  border-radius: 1px;
  transition: border-color .3s, color .3s, transform .3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ── SECTION BG SYSTEM ── */
.section-has-bg { position: relative; overflow: hidden; }
.section-bg-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sbg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.sbg-orb-1 { width:500px; height:500px; top:-100px; left:-80px; background:radial-gradient(circle, rgba(21,101,192,.2) 0%, transparent 70%); animation: orb-a 16s ease-in-out infinite; }
.sbg-orb-2 { width:400px; height:400px; bottom:-80px; right:-60px; background:radial-gradient(circle, rgba(200,151,42,.12) 0%, transparent 70%); animation: orb-b 20s ease-in-out infinite; }
.sbg-orb-3 { width:550px; height:550px; top:50%; right:-120px; transform:translateY(-50%); background:radial-gradient(circle, rgba(21,101,192,.16) 0%, transparent 65%); animation: orb-b 18s ease-in-out infinite; }
.sbg-orb-4 { width:450px; height:450px; bottom:-100px; left:-80px; background:radial-gradient(circle, rgba(200,151,42,.1) 0%, transparent 70%); animation: orb-a 14s ease-in-out infinite; }

@keyframes orb-a { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,40px)} }
@keyframes orb-b { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-50px,-30px)} }

/* ============================================================
   NAVIGATION (shared across all pages)
   ============================================================ */
nav {
  position: fixed; top:0; left:0; right:0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  transition: background .4s, padding .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(7,17,31,0.97);
  padding: 13px 60px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.65);
  backdrop-filter: blur(18px);
}
.nav-logo { display:flex; align-items:center; gap:14px; text-decoration:none; }
.nav-logo img {
  height:50px; width:50px; object-fit:cover; border-radius:50%;
  border: 2px solid rgba(200,151,42,0.5);
  box-shadow: 0 0 18px rgba(200,151,42,0.25);
}
.nav-logo-text .church-name {
  font-family:'Cinzel',serif; font-size:11.5px; font-weight:700;
  color:var(--white); letter-spacing:.06em; line-height:1.25;
}
.nav-logo-text .church-aka {
  font-size:9.5px; color:var(--gold);
  letter-spacing:.14em; text-transform:uppercase;
}
.nav-links { display:flex; gap:34px; list-style:none; align-items:center; }
.nav-links a {
  font-family:'Lato',sans-serif; font-size:12px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.8); text-decoration:none;
  position:relative; transition:color .3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background:var(--gold); transition:width .3s;
}
.nav-links a:hover,
.nav-links a.active { color:var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width:100%; }
.nav-cta-btn {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 10px 22px; border-radius: 1px; font-weight:700 !important;
  transition: background .3s !important;
}
.nav-cta-btn:hover { background: var(--gold-light) !important; }
.nav-cta-btn::after { display:none !important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:10; }
.hamburger span { display:block; width:26px; height:2px; background:white; transition:all .3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   PAGE HERO (inner pages — not homepage)
   ============================================================ */
.page-hero {
  min-height: 340px;
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #07111f 0%, #0d2248 60%, #07111f 100%);
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.07; filter: grayscale(40%) blur(1px);
}
.page-hero-orb {
  position: absolute; border-radius:50%; filter:blur(80px);
}
.page-hero-orb.a {
  width:500px; height:500px; top:-150px; left:-80px;
  background:radial-gradient(circle, rgba(21,101,192,.3) 0%, transparent 70%);
}
.page-hero-orb.b {
  width:400px; height:400px; bottom:-120px; right:-60px;
  background:radial-gradient(circle, rgba(200,151,42,.16) 0%, transparent 70%);
}
.page-hero-beams { position:absolute; inset:0; }
.page-hero-beams span {
  position:absolute; top:0; width:1px; height:100%;
  background: linear-gradient(180deg,transparent,rgba(200,151,42,.18),transparent);
}
.page-hero-beams span:nth-child(1) { left:20%; animation:bpulse 7s 0s infinite; }
.page-hero-beams span:nth-child(2) { left:40%; width:2px; animation:bpulse 9s -2s infinite; }
.page-hero-beams span:nth-child(3) { left:60%; width:2px; animation:bpulse 8s -4s infinite; }
.page-hero-beams span:nth-child(4) { left:80%; animation:bpulse 10s -1s infinite; }
@keyframes bpulse { 0%,100%{opacity:.15} 50%{opacity:.9} }

.page-hero-content { position:relative; z-index:2; }
.page-hero-content .page-eyebrow {
  font-family:'Lato',sans-serif; font-size:11px; font-weight:700;
  letter-spacing:.3em; color:var(--gold); text-transform:uppercase;
  margin-bottom:12px; display:flex; align-items:center; gap:12px;
}
.page-hero-content .page-eyebrow::before { content:''; height:1px; width:36px; background:var(--gold); opacity:.6; }
.page-hero-content h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,5vw,64px);
  font-weight:900; line-height:1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.page-hero-content h1 span { color:var(--gold); font-style:italic; }

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #07111f 0%, #0d2248 52%, #07111f 100%);
}
.hero-billboard {
  position:absolute; inset:0;
  background-image:url('../images/billboard.jpeg');
  background-size:cover; background-position:center top;
  opacity:.07; filter:grayscale(50%) blur(2px);
}
.hero-orb {
  position:absolute; border-radius:50%;
  filter:blur(80px); pointer-events:none;
}
.hero-orb.o1 { width:600px; height:600px; top:-150px; left:-100px; background:radial-gradient(circle,rgba(21,101,192,.32) 0%,transparent 70%); animation:orb-a 14s infinite; }
.hero-orb.o2 { width:500px; height:500px; bottom:-100px; right:-80px; background:radial-gradient(circle,rgba(200,151,42,.18) 0%,transparent 70%); animation:orb-b 18s infinite; }
.hero-orb.o3 { width:400px; height:400px; top:40%; left:50%; transform:translate(-50%,-50%); background:radial-gradient(circle,rgba(21,101,192,.14) 0%,transparent 65%); animation:orb-b 22s infinite; }
.hero-grid {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(21,101,192,.07) 1px,transparent 1px), linear-gradient(90deg,rgba(21,101,192,.07) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 20%,transparent 80%);
}
.hero-beam { position:absolute; top:0; height:100%; pointer-events:none; }
.hero-beam.b1 { left:18%; width:1px; background:linear-gradient(180deg,transparent,rgba(200,151,42,.18),transparent); animation:bpulse 7s 0s infinite; }
.hero-beam.b2 { left:33%; width:2px; background:linear-gradient(180deg,transparent,rgba(21,101,192,.22),transparent); animation:bpulse 9s -2s infinite; }
.hero-beam.b3 { left:50%; width:3px; background:linear-gradient(180deg,transparent,rgba(200,151,42,.2),transparent); animation:bpulse 11s -4s infinite; }
.hero-beam.b4 { left:67%; width:2px; background:linear-gradient(180deg,transparent,rgba(21,101,192,.18),transparent); animation:bpulse 8s -6s infinite; }
.hero-beam.b5 { left:82%; width:1px; background:linear-gradient(180deg,transparent,rgba(200,151,42,.14),transparent); animation:bpulse 10s -3s infinite; }

/* SVG cross floats */
.hero-cross { position:absolute; pointer-events:none; }
.cross-a { width:46px; top:15%; left:8%;  animation:float-x 9s  ease-in-out infinite; }
.cross-b { width:70px; top:22%; right:7%; animation:float-x 12s -3s ease-in-out infinite; }
.cross-c { width:32px; bottom:26%; left:14%; animation:float-x 8s -5s ease-in-out infinite; }
.cross-d { width:58px; bottom:28%; right:11%; animation:float-x 11s -7s ease-in-out infinite; }
@keyframes float-x {
  0%,100%{ transform:translateY(0) rotate(0); opacity:.7; }
  50%    { transform:translateY(-16px) rotate(4deg); opacity:1; }
}

.hero-content {
  position:relative; z-index:2;
  max-width:860px; padding:0 24px;
}
.hero-eyebrow {
  font-family:'Lato',sans-serif; font-size:11px; font-weight:700;
  letter-spacing:.32em; color:var(--gold); text-transform:uppercase;
  margin-bottom:22px; display:flex; align-items:center; justify-content:center; gap:14px;
  animation:fadeUp .8s ease both;
}
.hero-eyebrow::before,.hero-eyebrow::after { content:''; height:1px; width:50px; background:var(--gold); opacity:.5; }

.hero-logo-wrap {
  position:relative; display:inline-block;
  margin:0 auto 28px;
  animation:fadeUp .8s .15s ease both; opacity:0;
}
.hero-logo-wrap img {
  width:138px; height:138px; object-fit:cover; border-radius:50%;
  position:relative; z-index:2;
  border:3px solid rgba(200,151,42,.5);
  box-shadow: 0 0 40px rgba(200,151,42,.4);
}
.logo-ring {
  position:absolute; border-radius:50%;
  border:1.5px solid rgba(200,151,42,.4);
  top:50%; left:50%; transform:translate(-50%,-50%) scale(1);
  width:158px; height:158px;
}
.logo-ring-1 { animation:ring-out 3s ease-out infinite; }
.logo-ring-2 { animation:ring-out 3s 1.5s ease-out infinite; }
@keyframes ring-out { 0%{transform:translate(-50%,-50%) scale(1);opacity:.8} 100%{transform:translate(-50%,-50%) scale(1.75);opacity:0} }

.hero-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(42px,7vw,86px);
  font-weight:900; line-height:1.04; margin-bottom:14px;
  text-shadow:0 4px 30px rgba(0,0,0,.5);
  animation:fadeUp .8s .3s ease both; opacity:0;
}
.hero-title span { color:var(--gold); font-style:italic; }

.hero-subtitle {
  font-family:'Cinzel',serif;
  font-size:clamp(12px,2vw,17px); letter-spacing:.22em;
  color:rgba(255,255,255,.58); margin-bottom:26px;
  animation:fadeUp .8s .45s ease both; opacity:0;
}
.hero-tagline {
  font-size:17px; color:rgba(255,255,255,.78);
  font-weight:300; margin-bottom:46px; line-height:1.8;
  animation:fadeUp .8s .55s ease both; opacity:0;
}
.hero-ctas {
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  animation:fadeUp .8s .7s ease both; opacity:0;
}
.hero-scroll {
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:10px;
  animation:fadeIn 1s 1.2s ease both; opacity:0;
}
.hero-scroll-label { font-size:10px; letter-spacing:.22em; color:rgba(255,255,255,.38); text-transform:uppercase; }
.scroll-line {
  width:1px; height:50px;
  background:linear-gradient(180deg,rgba(200,151,42,.8),transparent);
  animation:scroll-drop 1.5s ease-in-out infinite;
}

@keyframes fadeUp  { from{opacity:0;transform:translateY(34px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes scroll-drop {
  0% {transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ============================================================
   SERVICE STRIP
   ============================================================ */
.strip { background:var(--gold); overflow:hidden; }
.strip-inner { display:flex; align-items:stretch; }
.strip-item {
  flex:1; display:flex; align-items:center; justify-content:center;
  gap:18px; padding:24px 28px;
  border-right:1px solid rgba(0,0,0,.13);
}
.strip-item:last-child { border-right:none; }
.strip-item-text { line-height:1.3; }
.strip-lbl {
  font-family:'Cinzel',serif; font-size:10px; font-weight:700;
  letter-spacing:.2em; color:rgba(10,22,40,.6); text-transform:uppercase; display:block;
}
.strip-val {
  font-family:'Playfair Display',serif; font-size:18px;
  font-weight:700; color:var(--navy); display:block;
}
.strip-sub { font-size:11px; color:rgba(10,22,40,.58); font-weight:700; letter-spacing:.06em; }

/* ============================================================
   VERSE BANNER
   ============================================================ */
.verse-banner {
  background:var(--gold); padding:68px 40px;
  text-align:center; position:relative; overflow:hidden; z-index:1;
}
.verse-banner::before {
  content:'\201C'; position:absolute; top:-20px; left:28px;
  font-family:'Playfair Display',serif; font-size:300px;
  color:rgba(0,0,0,.06); line-height:1; pointer-events:none;
}
.verse-cross {
  position:absolute; right:56px; top:50%; transform:translateY(-50%);
  width:80px; opacity:.5; pointer-events:none;
}
.verse-text {
  font-family:'Playfair Display',serif;
  font-size:clamp(18px,3vw,30px); font-style:italic; font-weight:700;
  color:var(--navy); max-width:780px; margin:0 auto 16px;
  line-height:1.5; position:relative; z-index:1;
}
.verse-ref {
  font-family:'Cinzel',serif; font-size:13px; font-weight:700;
  color:rgba(10,22,40,.58); letter-spacing:.16em;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
#about-main { background:var(--section-dark); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-image-wrap { position:relative; }
.about-img-glow {
  position:absolute; inset:-20px;
  background:radial-gradient(ellipse at center,rgba(21,101,192,.28) 0%,transparent 70%);
  border-radius:12px; filter:blur(30px); pointer-events:none;
}
.about-main-img {
  width:100%; height:460px; object-fit:cover;
  border-radius:4px; display:block;
  box-shadow:0 24px 70px rgba(0,0,0,.6); position:relative; z-index:1;
}
.about-badge {
  position:absolute; bottom:-24px; right:-24px;
  width:128px; height:128px; background:var(--gold); border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:0 8px 30px rgba(200,151,42,.5); z-index:2;
}
.about-badge .badge-num { font-family:'Playfair Display',serif; font-size:26px; font-weight:900; color:var(--navy); line-height:1; }
.about-badge .badge-txt { font-size:9px; font-weight:700; letter-spacing:.07em; color:var(--navy); text-align:center; text-transform:uppercase; }

.features-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:36px; }
.feature-card {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:4px; padding:24px 20px;
  transition:border-color .3s, background .3s, box-shadow .3s;
  position:relative; overflow:hidden;
}
.feature-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--blue));
  transform:scaleX(0); transition:transform .4s;
}
.feature-card:hover { border-color:rgba(200,151,42,.35); background:rgba(200,151,42,.05); box-shadow:0 8px 28px rgba(0,0,0,.3); }
.feature-card:hover::before { transform:scaleX(1); }
.feature-num {
  font-family:'Cinzel',serif; font-size:11px; font-weight:700;
  color:var(--gold); letter-spacing:.12em; margin-bottom:8px; display:block;
}
.feature-name { font-family:'Cinzel',serif; font-size:14px; font-weight:700; color:var(--white); margin-bottom:7px; }
.feature-desc { font-size:13px; color:rgba(255,255,255,.5); line-height:1.65; }

/* About mission block */
.about-mission { background:var(--section-mid); }
.mission-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px; }
.mission-card {
  border-left:2px solid var(--gold);
  padding:28px 26px; background:rgba(255,255,255,.03);
  border-radius:0 4px 4px 0;
  transition:background .3s, box-shadow .3s;
}
.mission-card:hover { background:rgba(200,151,42,.05); box-shadow:0 12px 36px rgba(0,0,0,.3); }
.mission-num {
  font-family:'Playfair Display',serif; font-size:44px;
  font-weight:900; color:rgba(200,151,42,.2);
  line-height:1; margin-bottom:10px;
}
.mission-title { font-family:'Cinzel',serif; font-size:15px; font-weight:700; color:var(--white); margin-bottom:10px; }
.mission-text  { font-size:14px; color:rgba(255,255,255,.55); line-height:1.75; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
#services-main { background:var(--section-dark); }
.services-intro { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-bottom:80px; }
.services-intro-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  display: block;
}

.services-list { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.svc-card {
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:4px; padding:42px 34px;
  position:relative; overflow:hidden;
  transition:transform .35s, border-color .35s, box-shadow .35s;
}
.svc-card-glow {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(200,151,42,.16),transparent 70%);
  opacity:0; transition:opacity .4s; pointer-events:none;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--blue-mid),var(--gold));
  background-size:200%; transform:scaleX(0); transition:transform .4s;
}
.svc-card:hover { transform:translateY(-8px); border-color:rgba(200,151,42,.3); box-shadow:0 20px 50px rgba(0,0,0,.4); }
.svc-card:hover::before { transform:scaleX(1); animation:shimmer 2s linear infinite; }
.svc-card:hover .svc-card-glow { opacity:1; }
@keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }

.svc-number {
  font-family:'Playfair Display',serif; font-size:52px; font-weight:900;
  color:rgba(200,151,42,.15); line-height:1; margin-bottom:16px;
}
.svc-title { font-family:'Cinzel',serif; font-size:16px; font-weight:700; color:var(--white); margin-bottom:14px; letter-spacing:.04em; }
.svc-desc  { font-size:14px; color:rgba(255,255,255,.55); line-height:1.8; margin-bottom:20px; }
.svc-badge {
  display:inline-block;
  background:rgba(200,151,42,.1); border:1px solid rgba(200,151,42,.28);
  color:var(--gold); font-size:11px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  padding:6px 16px; border-radius:100px;
}

/* ============================================================
   GIVE PAGE
   ============================================================ */
#give-main { background:var(--section-dark); }
.give-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }

.give-card {
  background:linear-gradient(135deg,#1565c0,#0d47a1);
  border-radius:6px; padding:50px 46px;
  position:relative; overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.5);
}
.give-card::before {
  content:''; position:absolute; top:-60px; right:-60px;
  width:220px; height:220px; border-radius:50%;
  background:rgba(200,151,42,.1);
}
.give-card::after {
  content:''; position:absolute; bottom:-40px; left:-40px;
  width:160px; height:160px; border-radius:50%;
  background:rgba(255,255,255,.04);
}
.give-card-bg {
  position:absolute; inset:0;
  background-image:url('../images/offering-card.jpeg');
  background-size:cover; background-position:center;
  opacity:.06; border-radius:6px;
}
.give-card-label {
  font-size:11px; font-weight:700; letter-spacing:.26em;
  color:rgba(255,255,255,.5); text-transform:uppercase;
  display:block; margin-bottom:8px; position:relative; z-index:1;
}
.give-card-heading {
  font-family:'Playfair Display',serif; font-size:22px; font-weight:700;
  color:var(--white); margin-bottom:30px; position:relative; z-index:1;
}
.give-field { margin-bottom:22px; position:relative; z-index:1; }
.give-field-label {
  font-size:10px; letter-spacing:.22em; color:var(--gold-light);
  text-transform:uppercase; font-weight:700; margin-bottom:5px; display:block;
}
.give-field-value {
  font-family:'Cinzel',serif; font-size:15px; color:var(--white); font-weight:600; line-height:1.45;
}
.give-acct-number {
  font-family:'Playfair Display',serif; font-size:38px; font-weight:900;
  color:var(--white); letter-spacing:.04em; margin-top:6px;
  cursor:pointer; transition:color .2s;
}
.give-acct-number:hover { color:var(--gold-light); }
.give-copy-hint {
  font-size:10px; color:rgba(255,255,255,.38);
  letter-spacing:.1em; text-transform:uppercase;
  position:relative; z-index:1;
}
.give-bank-row {
  margin-top:28px; position:relative; z-index:1;
  border-top:1px solid rgba(255,255,255,.14);
  padding-top:20px; display:flex; align-items:center; gap:14px;
}
.ecobank-logo {
  background:white; color:#006600;
  font-size:15px; font-weight:900; font-style:italic;
  font-family:Arial,sans-serif;
  padding:6px 14px; border-radius:3px;
}
.ecobank-logo em { color:#339933; font-style:normal; }
.ecobank-sub { font-size:11px; color:rgba(255,255,255,.45); line-height:1.4; }

.give-info-blocks { display:flex; flex-direction:column; gap:20px; margin-top:40px; }
.give-info-block {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-left:2px solid var(--gold);
  border-radius:0 4px 4px 0; padding:22px 24px;
}
.give-info-block-title {
  font-family:'Cinzel',serif; font-size:13px; font-weight:700;
  color:var(--white); margin-bottom:7px; letter-spacing:.04em;
}
.give-info-block-text { font-size:14px; color:rgba(255,255,255,.55); line-height:1.75; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
#contact-main { background:var(--section-dark); }
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }

.contact-blocks { display:flex; flex-direction:column; gap:0; }
.contact-block {
  padding:28px 0; border-bottom:1px solid rgba(255,255,255,.07);
  display:grid; grid-template-columns:110px 1fr; gap:20px; align-items:start;
}
.contact-block:first-child { padding-top:0; }
.contact-block:last-child  { border-bottom:none; }
.contact-block-key {
  font-family:'Cinzel',serif; font-size:11px; font-weight:700;
  letter-spacing:.16em; color:var(--gold); text-transform:uppercase;
  padding-top:2px;
}
.contact-block-val { font-size:15px; color:rgba(255,255,255,.78); line-height:1.7; }
.contact-block-val strong { color:var(--white); font-weight:700; display:block; margin-bottom:4px; }

.contact-map-panel {
  background:rgba(21,101,192,.07);
  border:1px solid rgba(21,101,192,.18); border-radius:6px;
  overflow:hidden; position:relative;
}
.contact-map-img {
  width:100%; height:260px; object-fit:cover;
  object-position:center; opacity:.3; display:block;
  filter:grayscale(30%);
}
.contact-map-body {
  padding:32px 34px;
  background:rgba(7,17,31,.6);
}
.contact-map-name {
  font-family:'Cinzel',serif; font-size:13px; font-weight:700;
  color:var(--gold); letter-spacing:.1em; text-transform:uppercase;
  margin-bottom:10px; line-height:1.4;
}
.contact-map-addr { font-size:14px; color:rgba(255,255,255,.65); line-height:1.75; margin-bottom:24px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background:#040c18;
  border-top:1px solid rgba(255,255,255,.06);
  padding:58px 0 28px;
  position:relative; z-index:1; overflow:hidden;
}
.footer-glow {
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:600px; height:200px;
  background:radial-gradient(ellipse,rgba(21,101,192,.1) 0%,transparent 70%);
  filter:blur(40px); pointer-events:none;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:60px; margin-bottom:46px; }
.footer-logo { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.footer-logo img {
  height:52px; width:52px; object-fit:cover; border-radius:50%;
  border:2px solid rgba(200,151,42,.35);
  box-shadow:0 0 20px rgba(200,151,42,.2);
}
.footer-brand-name { font-family:'Cinzel',serif; font-size:13px; font-weight:700; color:white; line-height:1.35; }
.footer-brand-name small { font-size:10px; color:var(--gold); letter-spacing:.1em; display:block; margin-top:3px; }
.footer-desc { font-size:14px; color:rgba(255,255,255,.35); line-height:1.8; max-width:300px; }
.footer-col-title {
  font-family:'Cinzel',serif; font-size:11.5px; font-weight:700;
  color:var(--gold); letter-spacing:.12em; text-transform:uppercase;
  margin-bottom:18px; padding-bottom:10px;
  border-bottom:1px solid rgba(200,151,42,.18);
}
.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a { font-size:14px; color:rgba(255,255,255,.38); text-decoration:none; transition:color .3s; }
.footer-links a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:22px;
  display:flex; justify-content:space-between; align-items:center;
}
.footer-copy { font-size:13px; color:rgba(255,255,255,.26); }
.footer-socials { display:flex; gap:12px; }
.social-btn {
  width:36px; height:36px;
  border:1px solid rgba(255,255,255,.12); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; text-decoration:none;
  color:rgba(255,255,255,.38); font-weight:700;
  transition:border-color .3s, color .3s, box-shadow .3s;
}
.social-btn:hover { border-color:var(--gold); color:var(--gold); box-shadow:0 0 16px rgba(200,151,42,.3); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity:0; transform:translateY(30px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  nav { padding: 16px 22px; }
  nav.scrolled { padding: 12px 22px; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,17,31,.98); padding: 22px 28px; gap: 18px;
    border-top: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  section { padding: 68px 0; }
  .hero-cross { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .page-hero { min-height: 260px; padding-bottom: 44px; }
  .strip-inner { display: flex; flex-direction: column; }
.strip-item {
  border-right: none;
  border-bottom: 1px solid rgba(0,0,0,.13);
  padding: 20px 24px;
  justify-content: flex-start;
  gap: 12px;
}
.strip-item:last-child { border-bottom: none; }
.strip-item-text { text-align: left; }
.strip-lbl { font-size: 10px; margin-bottom: 2px; }
.strip-val { font-size: 20px; }
.strip-sub { font-size: 12px; }
  .about-grid, .services-intro, .give-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .about-image-wrap { order: 2; }
  .about-grid > div:last-child { order: 1; }
  .mission-grid, .services-list, .features-grid,
  .home-quick-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .about-badge { right: 12px; bottom: -18px; width: 96px; height: 96px; }
  .about-badge .badge-num { font-size: 20px; }
  .about-main-img { height: 340px; }
  .services-intro-img { height: 280px; }
  .give-card { padding: 36px 28px; }
  .give-acct-number { font-size: 30px; }
  .contact-block { grid-template-columns: 90px 1fr; gap: 14px; }
  .verse-cross { display: none; }
  .verse-banner { padding: 52px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
  
/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */
.pastor-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 90px;
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pastor-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pastor-section.reverse {
  grid-template-columns: 1fr 380px;
}
.pastor-section.reverse .pastor-img-wrap { order: 2; }
.pastor-section.reverse .pastor-text { order: 1; }
.pastor-img-wrap { position: relative; }
.pastor-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.pastor-img-tag {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 1px;
}
.pastor-text { padding-top: 10px; }
.pastor-role {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pastor-role::before {
  content: '';
  height: 1px;
  width: 36px;
  background: var(--gold);
}
.pastor-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.pastor-aka {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  margin-bottom: 28px;
}
.pastor-bio {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  line-height: 1.9;
  margin-bottom: 20px;
}
.pastor-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.pastor-fact {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 16px 18px;
}
.pastor-fact-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.pastor-fact-value {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* ============================================================
   CHURCH GROUPS SECTION
   ============================================================ */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.group-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}

.group-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,151,42,.14), transparent 70%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}

.group-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-mid), var(--gold));
  background-size: 200%; transform: scaleX(0); transition: transform .4s;
}

.group-card:hover { transform: translateY(-8px); border-color: rgba(200,151,42,.3); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.group-card:hover::before { transform: scaleX(1); animation: shimmer 2s linear infinite; }
.group-card:hover .group-card-glow { opacity: 1; }

.group-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900;
  color: rgba(200,151,42,.15);
  line-height: 1; margin-bottom: 14px;
}

.group-name {
  font-family: 'Cinzel', serif;
  font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
  letter-spacing: .04em; line-height: 1.3;
}

.group-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}

/* ============================================================
   GIVE CARDS STACK
   ============================================================ */
.give-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}


.opay-logo {
  background: white;
  color: #00b050;
  font-size: 16px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  padding: 6px 16px;
  border-radius: 3px;
  letter-spacing: .02em;
}

/* ============================================================
   RESPONSIVE — GROUPS & CARDS STACK
   ============================================================ */
@media (max-width: 960px) {
  .groups-grid { grid-template-columns: 1fr 1fr; }
  .give-cards-stack { gap: 22px; }
}

@media (max-width: 600px) {
  .groups-grid { grid-template-columns: 1fr; }
  .group-card { padding: 28px 22px; }
  .group-number { font-size: 36px; }
  .give-cards-stack { gap: 18px; }
}

@media (max-width: 960px) {
  .pastor-section,
  .pastor-section.reverse {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  .pastor-section.reverse .pastor-img-wrap { order: 1; }
  .pastor-section.reverse .pastor-text { order: 2; }
  .pastor-img-wrap img { height: 420px; }
  .pastor-facts { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pastor-img-wrap img { height: 320px; }
  .pastor-img-tag { font-size: 10px; padding: 8px 16px; }
  .pastor-facts { grid-template-columns: 1fr; }
}

/* ============================================================
   PRAYER REQUEST PAGE
   ============================================================ */
.prayer-bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.prayer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.prayer-orb.o1 {
  width: 600px; height: 600px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(21,101,192,.28) 0%, transparent 70%);
  animation: orb-a 14s ease-in-out infinite;
}

.prayer-orb.o2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(200,151,42,.16) 0%, transparent 70%);
  animation: orb-b 18s ease-in-out infinite;
}

.prayer-orb.o3 {
  width: 400px; height: 400px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(21,101,192,.12) 0%, transparent 65%);
  animation: orb-b 22s ease-in-out infinite;
}

.prayer-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.prayer-beam {
  position: absolute; top: 0; height: 100%; pointer-events: none;
}
.prayer-beam.b1 { left: 20%; width: 1px; background: linear-gradient(180deg,transparent,rgba(200,151,42,.14),transparent); animation: bpulse 7s 0s infinite; }
.prayer-beam.b2 { left: 50%; width: 2px; background: linear-gradient(180deg,transparent,rgba(21,101,192,.18),transparent); animation: bpulse 10s -3s infinite; }
.prayer-beam.b3 { left: 80%; width: 1px; background: linear-gradient(180deg,transparent,rgba(200,151,42,.12),transparent); animation: bpulse 8s -5s infinite; }

/* Form page layout */
.prayer-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.prayer-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

/* Form card */
.form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  padding: 56px 52px;
  width: 100%;
  max-width: 560px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
}

.form-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,151,42,.08), transparent 70%);
  pointer-events: none;
}

.form-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}

.form-eyebrow::before {
  content: ''; height: 1px; width: 36px;
  background: var(--gold); opacity: .6;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}

.form-title span { color: var(--gold); font-style: italic; }

.form-subtitle {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Form fields */
.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
}

.optional-tag {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,.35);
  letter-spacing: .08em;
  text-transform: none;
  margin-left: 8px;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  resize: none;
}

.form-group input[type="text"]::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.25);
  font-style: italic;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  border-color: rgba(200,151,42,.6);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(200,151,42,.1);
}

.form-group textarea { min-height: 150px; }

/* Submit button */
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 38px;
  border: none; border-radius: 2px;
  cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 4px 22px rgba(200,151,42,.4);
  margin-top: 8px;
}

.btn-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,151,42,.5);
}

.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.btn-submit .spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(7,17,31,.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto;
}

.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .spinner  { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Response messages */
.form-message {
  display: none;
  border-radius: 4px;
  padding: 16px 20px;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

.form-message.success {
  background: rgba(21,101,192,.15);
  border: 1px solid rgba(21,101,192,.35);
  color: #90caf9;
}

.form-message.error {
  background: rgba(200,50,50,.12);
  border: 1px solid rgba(200,50,50,.3);
  color: #ef9a9a;
}

.form-message.visible { display: block; }

/* Verse strip */
.prayer-verse {
  background: var(--gold);
  padding: 28px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.prayer-verse p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 18px);
  font-style: italic; font-weight: 700;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto 6px;
  line-height: 1.5;
}

.prayer-verse span {
  font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 700;
  color: rgba(10,22,40,.55);
  letter-spacing: .12em;
}

/* Responsive */
@media (max-width: 600px) {
  .form-card { padding: 36px 24px; }
  .form-title { font-size: 26px; }
}