/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0A1628;
  --navy-mid: #0F2040;
  --navy-light: #1A3460;
  --gold: #C9922A;
  --gold-light: #E8B84B;
  --gold-pale: #F5E6C8;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --gray-100: #F3F0EB;
  --gray-300: #D4CFC7;
  --gray-600: #6B6560;
  --text-dark: #1A1612;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Outfit', sans-serif; background: var(--off-white); color: var(--text-dark); overflow-x: hidden; }
img { display: block; }
a { text-decoration: none; }

/* ===== AMHARIC FONT ===== */
.amharic-serif, [lang="am"] { font-family: 'Noto Serif Ethiopic', serif; }

/* ===== DARK MODE ===== */
body.dark {
  --off-white: #0A1628;
  --gray-100: #0F2040;
  --text-dark: #F8F6F1;
  --gray-600: #A09A92;
  --white: #1A3460;
  --gray-300: #2a4070;
}
body.dark .nav { background: rgba(10,22,40,0.97); }
body.dark .section-light { background: var(--navy-mid); }
body.dark .event-card,
body.dark .testimonial-card,
body.dark .leader-card,
body.dark .membership-card,
body.dark .prayer-wall,
body.dark .resource-box { background: var(--navy-light); color: var(--off-white); }
body.dark .event-card-title,
body.dark .leader-name,
body.dark .membership-card-title,
body.dark .value-item h4 { color: var(--off-white); }
body.dark .event-card-meta,
body.dark .testimonial-text,
body.dark .section-desc,
body.dark .membership-card-desc { color: rgba(255,255,255,0.6); }
body.dark .form-input { background: var(--navy-light); color: var(--off-white); border-color: var(--navy); }
body.dark .form-label { color: var(--off-white); }
body.dark .contact-item-title { color: var(--off-white); }
body.dark .prayer-item-name { color: var(--off-white); }
body.dark .prayer-wall { background: var(--navy-mid); }
body.dark .section-title { color: var(--off-white); }
body.dark footer { background: #06101e; }

/* ===== LANGUAGE BAR ===== */
.lang-bar {
  background: var(--navy);
  padding: 0.4rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.lang-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.lang-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
.lang-toggle-wrap {
  display: flex;
  gap: 0.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  padding: 0.2rem;
}
.lang-btn {
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.03em;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 32px;
  left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,146,42,0.15);
  transition: all 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.nav-brand-sub { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin-top: 0.15rem; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--navy); transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-nav { background: var(--navy); color: var(--white); padding: 0.55rem 1.3rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; }
.btn-nav:hover { background: var(--gold); }
.dark-toggle { background: none; border: 1.5px solid var(--gray-300); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.3s; }
.dark-toggle:hover { border-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); display: block; border-radius: 2px; transition: all 0.3s; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.4rem; font-family: 'Playfair Display', serif; }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ===== PAGE STRUCTURE ===== */
.page-section { display: none; }
.page-section.active { display: block; }
.page-hero-spacer { height: 100px; background: var(--navy); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: 32px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(0.3);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.65) 55%, rgba(15,32,64,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-left { animation: fadeInUp 0.7s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,146,42,0.12);
  border: 1px solid rgba(201,146,42,0.35);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-badge span { font-size: 0.72rem; font-weight: 600; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.4rem;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 2.25rem; max-width: 450px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { position: relative; animation: fadeInRight 0.7s ease 0.2s both; }
.hero-img-stack { position: relative; height: 460px; }
.hero-img-main { position: absolute; right: 0; top: 0; width: 75%; height: 360px; object-fit: cover; border-radius: 1.5rem; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.hero-img-secondary { position: absolute; left: 0; bottom: 0; width: 55%; height: 230px; object-fit: cover; border-radius: 1.2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.4); border: 3px solid var(--navy); }
.hero-stat-card {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem;
  padding: 0.9rem 1.2rem;
}
.hero-stat-num { font-size: 1.7rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, transparent, rgba(201,146,42,0.6)); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 0.85rem 1.9rem; border-radius: 100px;
  font-weight: 700; font-size: 0.9rem; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,146,42,0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.85rem 1.9rem; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 2rem; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 900; line-height: 1.15; margin-bottom: 1rem; color: var(--navy); }
body.dark .section-title { color: var(--off-white); }
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { font-size: 0.97rem; color: var(--gray-600); line-height: 1.75; max-width: 540px; }

/* ===== EVENTS ===== */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.event-card { background: var(--white); border-radius: 1.25rem; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.event-card-img { width: 100%; height: 190px; object-fit: cover; }
.event-card-body { padding: 1.4rem; }
.event-date-badge { display: inline-flex; gap: 0.4rem; align-items: center; background: var(--gold-pale); color: var(--gold); font-size: 0.76rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 0.7rem; }
.event-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); line-height: 1.3; }
.event-card-meta { font-size: 0.8rem; color: var(--gray-600); display: flex; gap: 1rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.event-countdown { background: var(--navy); color: var(--white); border-radius: 0.75rem; padding: 0.7rem; display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 0.9rem; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
.countdown-num { font-size: 1.15rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.countdown-label { font-size: 0.58rem; text-transform: uppercase; opacity: 0.55; letter-spacing: 0.08em; }
.btn-register { display: block; text-align: center; background: var(--navy); color: var(--white); padding: 0.6rem; border-radius: 0.75rem; font-weight: 600; font-size: 0.82rem; transition: all 0.3s; border: none; cursor: pointer; width: 100%; font-family: 'Outfit', sans-serif; }
.btn-register:hover { background: var(--gold); }

/* ===== VERSE ===== */
.verse-section { padding: 4rem 2rem; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); position: relative; overflow: hidden; }
.verse-section::before { content: '"'; position: absolute; top: -2rem; left: 1rem; font-size: 18rem; font-family: 'Playfair Display', serif; color: rgba(201,146,42,0.06); line-height: 1; pointer-events: none; }
.verse-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.5rem; padding: 3rem; max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.verse-text { font-family: 'Noto Serif Ethiopic', serif; font-size: clamp(1.1rem, 2vw, 1.45rem); color: var(--white); line-height: 1.75; margin-bottom: 1rem; }
.verse-text-en { font-family: 'Playfair Display', serif; }
.verse-ref { color: var(--gold-light); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; }
.verse-divider { width: 55px; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 0.9rem auto; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--white); border-radius: 1.25rem; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; position: relative; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--gold); line-height: 0.6; display: block; margin-bottom: 0.9rem; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.4rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-pale); }
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
body.dark .testimonial-name { color: var(--off-white); }
.testimonial-role { font-size: 0.73rem; color: var(--gray-600); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; margin-top: 2.5rem; }
.about-images { position: relative; height: 480px; }
.about-img-1 { position: absolute; left: 0; top: 0; width: 70%; height: 360px; object-fit: cover; border-radius: 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.13); }
.about-img-2 { position: absolute; right: 0; bottom: 0; width: 60%; height: 270px; object-fit: cover; border-radius: 1.25rem; box-shadow: 0 16px 50px rgba(0,0,0,0.12); border: 4px solid var(--off-white); }
.about-gold-accent { position: absolute; top: 25px; right: 5px; width: 70px; height: 70px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; opacity: 0.18; }
.values-list { margin-top: 1.75rem; display: grid; gap: 1rem; }
.value-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.value-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.value-item h4 { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--navy); }
.value-item p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.55; }

/* ===== LEADERSHIP ===== */
.leadership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.leader-card { text-align: center; background: var(--white); border-radius: 1.25rem; padding: 2rem 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; }
.leader-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
.leader-img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--gold-pale); }
.leader-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.leader-role { font-size: 0.73rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== SERMONS ===== */
.sermons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.sermon-card { background: var(--navy); border-radius: 1.25rem; overflow: hidden; position: relative; cursor: pointer; transition: all 0.3s; }
.sermon-card:hover { transform: scale(1.02); }
.sermon-img { width: 100%; height: 190px; object-fit: cover; opacity: 0.55; }
.sermon-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.96), transparent 50%); }
.sermon-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem; }
.sermon-tag { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.67rem; font-weight: 700; padding: 0.18rem 0.55rem; border-radius: 100px; margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.05em; }
.sermon-title { font-family: 'Playfair Display', serif; font-size: 0.97rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; line-height: 1.35; }
.sermon-meta { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); width: 52px; height: 52px; background: rgba(201,146,42,0.88); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--navy); transition: all 0.3s; backdrop-filter: blur(10px); }
.sermon-card:hover .play-btn { background: var(--gold); transform: translate(-50%, -60%) scale(1.1); }
.resource-box { background: var(--white); border-radius: 1rem; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.resource-box h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; font-size: 0.92rem; }
.resource-box p { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.55; }

/* ===== PRAYER ===== */
.prayer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
.prayer-wall { background: var(--white); border-radius: 1.25rem; padding: 1.5rem; max-height: 480px; overflow-y: auto; box-shadow: 0 4px 20px rgba(0,0,0,0.06); scrollbar-width: thin; scrollbar-color: var(--gold-pale) transparent; }
.prayer-item { padding: 0.9rem 0; border-bottom: 1px solid var(--gray-100); display: flex; gap: 0.7rem; }
.prayer-item:last-child { border-bottom: none; }
.prayer-avatar-anon { width: 34px; height: 34px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.prayer-item-name { font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.prayer-item-text { font-size: 0.8rem; color: var(--gray-600); line-height: 1.55; }
.prayer-time { font-size: 0.68rem; color: var(--gray-300); margin-top: 0.2rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.form-input { width: 100%; padding: 0.7rem 0.95rem; border: 1.5px solid var(--gray-300); border-radius: 0.7rem; font-family: 'Outfit', sans-serif; font-size: 0.88rem; background: var(--white); color: var(--text-dark); outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--gold); }
textarea.form-input { min-height: 130px; resize: vertical; }
select.form-input { cursor: pointer; }
.dark-input { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.12) !important; color: white !important; }
.dark-input::placeholder { color: rgba(255,255,255,0.4); }
.form-check { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.form-check input { accent-color: var(--gold); }
.form-check label { font-size: 0.83rem; }
.btn-submit { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); padding: 0.85rem 2rem; border-radius: 100px; font-weight: 700; border: none; cursor: pointer; font-size: 0.92rem; font-family: 'Outfit', sans-serif; transition: all 0.3s; width: 100%; }
.btn-submit:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-title { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-item-text { font-size: 0.83rem; color: var(--gray-600); line-height: 1.6; }
.social-links { display: flex; gap: 0.65rem; }
.social-btn { width: 42px; height: 42px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: all 0.3s; }
.social-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.map-placeholder { background: var(--navy); border-radius: 1.25rem; height: 180px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.88rem; position: relative; overflow: hidden; }
.map-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(255,255,255,0.03) 20px), repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(255,255,255,0.03) 20px); }

/* ===== MEMBERSHIP ===== */
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; }
.membership-card { background: var(--white); border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.membership-card-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.membership-card-desc { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.65; }

/* ===== FLOATING CTA ===== */
.floating-cta { position: fixed; bottom: 2rem; right: 2rem; z-index: 998; display: flex; flex-direction: column; gap: 0.65rem; align-items: flex-end; }
.float-btn { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); padding: 0.75rem 1.35rem; border-radius: 100px; font-weight: 700; font-size: 0.82rem; box-shadow: 0 8px 30px rgba(201,146,42,0.38); transition: all 0.3s; display: flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,146,42,0.5); }
.float-icon { background: var(--navy); color: var(--white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 8px 30px rgba(0,0,0,0.2); cursor: pointer; transition: all 0.3s; border: none; }
.float-icon:hover { background: var(--gold); color: var(--navy); transform: scale(1.1); }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); font-weight: 700; }
.footer-brand-sub { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }
.footer-desc { font-size: 0.82rem; line-height: 1.7; margin-top: 0.75rem; }
.footer-heading { font-weight: 700; font-size: 0.78rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.83rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1200px; margin: 1.75rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
.animate-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .prayer-grid, .contact-grid, .membership-grid { grid-template-columns: 1fr; }
  .about-images { height: 320px; margin-bottom: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 5.5rem; }
  .hero-right { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .section { padding: 3.5rem 1.25rem; }
  .verse-card { padding: 2rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .events-grid { grid-template-columns: 1fr; }
  .sermons-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .leadership-grid { grid-template-columns: 1fr; }
  .lang-bar-inner { justify-content: center; }
}
