@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --blue:       #1E3A8A;
  --blue-dark:  #152B6B;
  --blue-light: #2D4EAD;
  --red:        #B91C1C;
  --red-dark:   #991B1B;
  --red-light:  #DC2626;
  --white:      #FFFFFF;
  --bg:         #F7F8FC;
  --bg-2:       #EEF1F9;
  --bg-3:       #E4E9F5;
  --text:       #1C2340;
  --text-muted: #5A6380;
  --border:     rgba(30,58,138,0.12);
  --radius:     12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:     0 4px 24px rgba(30,58,138,0.10);
  --shadow-lg:  0 16px 48px rgba(30,58,138,0.15);
  --glass:      rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --gold:       #D4AF37;
  --gold-light: #F1D38A;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 10px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(30,58,138,0.08);
}
.navbar.scrolled {
  padding: 10px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(30,58,138,0.12);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(30,58,138,0.2); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #0F172A;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.45;
  filter: brightness(0.6) sepia(0.2);
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
  z-index: 1;
}
/* Divine Light Rays */
.hero-glow {
  display: none;
}
@keyframes rotateGlow { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(15, 23, 42, 0.7); border: 1px solid var(--gold);
  backdrop-filter: blur(8px);
  color: #fff; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 10px 24px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { 
  font-size: clamp(2.8rem, 6.5vw, 4.8rem); 
  color: var(--white); 
  margin-bottom: 24px; 
  font-weight: 700;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.hero h1 em { 
  color: var(--gold); font-style: normal; 
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { 
  font-size: 1.15rem; 
  color: rgba(255,255,255,0.9); 
  margin-bottom: 48px; 
  max-width: 680px; 
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
.hero .btn-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }

/* Unified Premium Button System */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer; border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { 
  background: var(--blue); color: var(--white); 
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}
.btn-primary:hover { 
  background: var(--blue-dark); 
  transform: translateY(-3px); 
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.btn-gold { 
  background: var(--gold); color: #000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}
.btn-gold:hover { 
  background: var(--gold-light); 
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline { 
  background: transparent; color: var(--white); 
  border: 2px solid rgba(255,255,255,0.5); 
}
.btn-outline:hover { 
  background: var(--white); color: var(--blue-dark); 
  border-color: var(--white); 
  transform: translateY(-3px); 
}

/* Hero Specific Adjustments */
.hero .btn-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.hero .btn { min-width: 220px; }

/* Subpage Hero Adjustment */
.hero-sub {
  min-height: 50vh !important;
  height: auto !important;
  padding: 180px 0 80px !important;
  align-items: flex-start !important;
}
.hero-sub .hero-content {
  margin-top: 0;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.7); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span {
  display: block; width: 24px; height: 36px;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 50px;
  position: relative;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--white); border-radius: 50px;
  animation: mouseScroll 2s infinite;
}
@keyframes mouseScroll {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* ── NEXT SERVICE SECTION ── */
.next-service-section {
  padding: 60px 0;
  background: var(--bg);
}
.next-service-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 48px; border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.next-service-info { flex: 1.2; }
.next-service-info h2 { font-size: 2rem; }
.next-service-timer {
  flex: 1.5;
  display: flex; gap: 24px; justify-content: center;
  background: var(--bg-2); padding: 24px 32px; border-radius: 24px;
}
.timer-unit { text-align: center; }
.timer-val {
  display: block; font-size: 2.2rem; font-weight: 800;
  color: var(--blue); font-family: 'Playfair Display', serif;
  line-height: 1; margin-bottom: 6px;
}
.timer-label {
  display: block; font-size: 0.65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
}
.next-service-cta { flex: 0.8; text-align: right; }

.live-pulse {
  width: 10px; height: 10px; background: #10B981; border-radius: 50%;
  display: inline-block; position: relative;
}
.live-pulse::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid #10B981;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

@media(max-width: 1024px) {
  .next-service-card { flex-direction: column; text-align: center; padding: 40px 24px !important; }
  .next-service-cta { text-align: center; width: 100%; }
  .next-service-timer { width: 100%; gap: 12px; padding: 20px !important; }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.float { animation: float 5s ease-in-out infinite; }

/* ── GLASSMORPHISM ── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* ── HOVER EFFECTS ── */
.hover-lift { transition: transform var(--transition), box-shadow var(--transition); }
.hover-lift:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.hover-glow:hover { box-shadow: none; }

.bg-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bg-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(21, 43, 107, 0.85);
  z-index: 1;
}
.bg-overlay > * { position: relative; z-index: 2; }

/* Hero photo strip */
.hero-strip { display:flex; gap:4px; position:absolute; right:0; top:0; bottom:0; width:36%; overflow:hidden; z-index:1; }
.hero-strip-col { display:flex; flex-direction:column; gap:4px; flex:1; }
.hero-strip-col img { flex:1; object-fit:cover; width:100%; filter:brightness(0.45) saturate(0.8); }
.hero-strip-col:nth-child(2) { margin-top:60px; }
.hero-strip::before { content:''; position:absolute; inset:0; background:linear-gradient(to right, var(--blue-dark) 0%, transparent 60%); z-index:2; }
@media(max-width:900px){.hero-strip{display:none}}

/* ── TIMES BAR ── */
.times-bar {
  background: var(--white); border-radius: 24px;
  display: flex; justify-content: center; align-items: stretch; gap: 0; flex-wrap: wrap;
  margin-top: -60px; box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: relative; z-index: 10;
}
.time-item { 
  text-align: center; padding: 32px 40px; flex: 1; min-width: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.time-item:not(:last-child) { border-right: 1px solid rgba(0,0,0,0.05); }
.time-item:hover { background: var(--bg); }
.time-item strong { display: block; color: var(--blue-dark); font-family: 'Playfair Display',serif; font-size: 1.1rem; margin-bottom: 6px; }
.time-item span { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.time-item .time-icon { font-size: 1.6rem; margin-bottom: 12px; }
@media(max-width:768px){ 
  .times-bar { margin-top: -40px; }
  .time-item { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 24px; }
  .time-item:last-child { border-bottom: none; }
}

/* ── SECTION COMMONS ── */
section { padding: 100px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--blue-dark); margin-bottom: 14px; }
.section-title em { color: var(--red); font-style: normal; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 560px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { justify-content: center; }
.section-header.center .section-tag::before { display: none; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── ABOUT ── */
.about-strip { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -32px; right: -32px; width: 200px;
  border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--white); box-shadow: var(--shadow-lg);
}
.about-img-float img { width: 100%; height: 150px; object-fit: cover; }
.about-stat {
  position: absolute; top: 24px; left: -24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white); padding: 16px 20px; border-radius: var(--radius);
  text-align: center; box-shadow: 0 8px 24px rgba(30,58,138,0.35);
}
.about-stat strong { display: block; font-size: 1.8rem; font-family: 'Playfair Display',serif; }
.about-stat span { font-size: 0.75rem; font-weight: 600; opacity: 0.85; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.verse-card {
  background: var(--bg-2); border-left: 4px solid var(--red);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.verse-card p { color: var(--text); font-style: italic; margin: 0; }
.verse-card cite { color: var(--red); font-size: 0.85rem; font-style: normal; font-weight: 600; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 80px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.stat-item { background: var(--white); padding: 40px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family:'Playfair Display',serif; font-size: 2.8rem; color: var(--blue); display: block; }
.stat-item p { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
@media(max-width:768px){ .stats-row { grid-template-columns: repeat(2,1fr); } .stat-item:nth-child(2){ border-right:none; } }

/* ── SCRIPTURE BANNER ── */
.scripture-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.scripture-banner::before {
  content: '✝'; position: absolute; font-size: 300px; color: rgba(255,255,255,0.03);
  top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: serif;
}
.scripture-banner blockquote {
  font-family: 'Playfair Display',serif; font-size: clamp(1.3rem,2.8vw,1.9rem);
  color: var(--white); font-style: italic; max-width: 800px; margin: 0 auto 16px; line-height: 1.6;
}
.scripture-banner cite { color: #FCA5A5; font-size: 0.9rem; font-style: normal; font-weight: 600; letter-spacing: 1px; }

/* ── MINISTRIES ── */
.ministries { background: var(--bg); }
.min-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.min-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.min-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.min-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.min-card:hover::before { transform: scaleX(1); }
.min-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--bg-2); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; margin-bottom: 20px;
}
.min-card h3 { font-size: 1.15rem; color: var(--blue-dark); margin-bottom: 10px; }
.min-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── LEADERSHIP ── */
.leadership { background: var(--bg-2); }
.leaders-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.leader-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.leader-img img { width: 100%; height: 300px; object-fit: cover; object-position: top; }
.leader-info { padding: 24px; border-top: 3px solid var(--blue); }
.leader-info h3 { font-size: 1.15rem; color: var(--blue-dark); margin-bottom: 4px; }
.leader-info span { color: var(--red); font-size: 0.85rem; font-weight: 600; }
.leader-info p { color: var(--text-muted); font-size: 0.88rem; margin-top: 10px; }

/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery-filters {
  display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--white); color: var(--text); font-weight: 600;
  cursor: pointer; transition: all var(--transition); font-size: 0.9rem;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue); color: white; border-color: var(--blue);
  box-shadow: 0 10px 20px rgba(21, 43, 107, 0.2);
}

.gallery-grid {
  columns: 3 300px; gap: 24px; margin-bottom: 80px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 24px; position: relative;
  border-radius: 20px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.gallery-item.hide { display: none; }
.gallery-item img {
  width: 100%; display: block; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(212, 175, 55, 0.85); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; opacity: 0; transition: all 0.4s ease;
  transform: translateY(20px);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }

@media(max-width: 900px) { .gallery-grid { columns: 2; } }
@media(max-width: 600px) { .gallery-grid { columns: 1; } }

/* ── GIVE ── */
.give { background: var(--bg); }
.give-inner {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  box-shadow: var(--shadow);
}
.give-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.give-method {
  background: var(--bg-2); border-radius: var(--radius);
  padding: 20px 24px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.give-method:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(30,58,138,0.08); }
.give-method-icon { font-size: 1.8rem; }
.give-method strong { display: block; color: var(--blue-dark); margin-bottom: 2px; }
.give-method span { color: var(--text-muted); font-size: 0.88rem; }
.give-highlight {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 16px; color: var(--white);
}
.give-highlight .big { font-size: 3rem; font-family: 'Playfair Display',serif; color: #FCA5A5; display: block; }
.give-highlight p { color: rgba(255,255,255,0.85); margin-top: 8px; font-size: 0.95rem; font-style: italic; }
.give-highlight cite { color: #FCA5A5; font-size: 0.85rem; font-style: normal; font-weight: 600; margin-top: 12px; display: block; }

/* ── CONTACT ── */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--white);
}
.contact-item strong { display: block; color: var(--blue-dark); margin-bottom: 2px; }
.contact-item span { color: var(--text-muted); font-size: 0.9rem; }
.contact-form {
  background: var(--white); border-radius: 20px;
  padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text); font-size: 0.85rem; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 13px 16px; color: var(--text);
  font-family: 'Inter',sans-serif; font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,58,138,0.08);
}
.form-group textarea { height: 130px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; background: var(--blue);
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 18px; border-radius: 50px; border: none; cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(30,58,138,0.2); }
.form-msg { padding: 12px 16px; border-radius: 8px; margin-top: 16px; display: none; font-size: 0.9rem; }
.form-msg.success { background: rgba(21,128,61,0.08); color: #15803D; border: 1px solid rgba(21,128,61,0.25); display: block; }
.form-msg.error { background: rgba(185,28,28,0.08); color: var(--red); border: 1px solid rgba(185,28,28,0.25); display: block; }

/* ── FOOTER ── */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 52px; margin-bottom: 16px; background: white; border-radius: 8px; padding: 6px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; line-height: 1.7; opacity: 0.75; }
.footer-col h4 { color: var(--gold); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; font-family: 'Inter',sans-serif; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(21,43,107,0.97); display: none;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--white); font-size: 2.2rem;
  cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ── WHATSAPP WIDGET ── */
.wa-widget {
  position: fixed; bottom: 30px; right: 30px; z-index: 1000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 10px 25px rgba(37,211,102,0.3);
  transition: all var(--transition);
  position: relative;
}
.wa-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: wa-pulse 2s infinite;
}
.wa-btn:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 15px 35px rgba(37,211,102,0.4); }

.wa-bubble {
  background: var(--white); color: var(--text);
  padding: 10px 18px; border-radius: 16px; border-bottom-right-radius: 2px;
  font-size: 0.85rem; font-weight: 700; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: wa-bubble-float 4s infinite ease-in-out;
  white-space: nowrap;
}

@keyframes wa-pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes wa-bubble-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

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

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .about-grid,.give-inner { grid-template-columns: 1fr; }
  .min-grid,.leaders-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1){ grid-column:span 2; grid-row:span 1; }
}
@media(max-width:768px){
  .nav-links { 
    display: flex; position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; 
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; align-items: center; gap: 32px; 
    z-index: 999; 
    opacity: 0; pointer-events: none; transform: translateY(-20px);
    transition: all 0.4s ease;
  }
  .nav-links.open { 
    opacity: 1; pointer-events: auto; transform: translateY(0); 
  }
  .nav-links a:not(.nav-cta) { color: var(--text) !important; font-size: 1.4rem; font-weight: 600; }
  
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .min-grid { grid-template-columns:1fr; }
  .leaders-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; text-align: center; gap: 32px; }
  .footer-brand img { margin: 0 auto 16px; }
  .footer-brand p { max-width: 100%; margin: 0 auto 16px; }
  .social-links { justify-content: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
  .form-row { grid-template-columns:1fr; }
  .give-inner { padding:0; grid-template-columns: 1fr !important; }
  .pledge-form-card, .pledge-sidebar-card { padding: 24px !important; }
  .pledge-sidebar-wrapper { padding-left: 0 !important; margin-top: 32px; }
  .stats-row { grid-template-columns:repeat(2,1fr); }
}

/* ==========================================================================
   DAILY VERSE POP-UP
   ========================================================================== */
.verse-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(21, 43, 107, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 20px;
}

.verse-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.verse-modal {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    position: relative;
    overflow: hidden;
}

.verse-modal-overlay.active .verse-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

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

.verse-modal .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.verse-modal .close-btn:hover {
    color: var(--red);
}

.verse-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.verse-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--blue-dark);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 20px;
}

.verse-ref {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--blue-dark);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(21, 43, 107, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 998; /* Just below the overlay/WhatsApp */
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--blue-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   SERMON CAROUSEL
   ========================================================================== */
.sermon-carousel-wrapper {
    position: relative;
    margin-top: 40px;
}

.sermon-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 40px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sermon-carousel::-webkit-scrollbar {
    display: none;
}

.sermon-slide {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    min-width: 320px;
}

@media(max-width: 992px) {
    .sermon-slide { flex: 0 0 calc(50% - 15px); }
}
@media(max-width: 600px) {
    .sermon-slide { flex: 0 0 100%; min-width: 100%; }
}

.carousel-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--blue-dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark);
    transform: translateY(-3px);
}

/* ==========================================================================
   SERMON DETAIL GRID
   ========================================================================== */
.sermon-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

@media(max-width: 992px) {
    .sermon-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


