/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --gold: #c8973a;
  --gold-light: #e8b85c;
  --gold-dark: #a07428;
  --navy: #0a1e3c;
  --navy-light: #142b52;
  --navy-mid: #1a3668;
  --white: #ffffff;
  --off-white: #f9f6f1;
  --gray-100: #f4f1ec;
  --gray-200: #e8e4db;
  --gray-400: #9a9086;
  --gray-600: #5a5248;
  --gray-800: #2c2820;
  --text: #2c2820;
  --text-muted: #6b6158;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(10,30,60,.08);
  --shadow: 0 4px 24px rgba(10,30,60,.12);
  --shadow-lg: 0 12px 48px rgba(10,30,60,.18);
  --shadow-gold: 0 4px 24px rgba(200,151,58,.3);

  --transition: .3s ease;
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--off-white);
  z-index: -1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.section-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
h2 em { color: var(--gold); font-style: normal; }

h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.7);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-sm:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-full { width: 100%; justify-content: center; }

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(10,30,60,.3);
  height: 68px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.logo-sub { font-size: .7rem; font-weight: 500; color: var(--gold-light); letter-spacing: .05em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-btn {
  background: var(--gold);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  margin-left: 8px;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.nav-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   CAROUSEL
   =========================== */
.carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
  transform: scale(1.04);
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide-content {
  max-width: 700px;
  padding: calc(var(--nav-h) + 40px) 48px 80px;
  color: var(--white);
  animation: slideUp .8s ease forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.slide-content h1 em { color: var(--gold-light); font-style: normal; }

.slide-content p {
  font-size: 1.15rem;
  opacity: .92;
  margin-bottom: 32px;
  max-width: 540px;
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}

.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }
.carousel-prev:hover, .carousel-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.carousel-dots {
  position: absolute;
  bottom: 120px;
  left: 48px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: var(--transition);
  border: none;
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Quick Info Bar */
.quick-info {
  position: relative;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 24px;
  z-index: 5;
}
.qi-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  color: var(--white);
}
.qi-icon { font-size: 1.6rem; }
.qi-item div { display: flex; flex-direction: column; gap: 2px; }
.qi-item strong { font-size: .9rem; font-weight: 600; }
.qi-item span { font-size: .8rem; color: rgba(255,255,255,.65); }
.qi-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* ===========================
   ABOUT
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 32px; left: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
  display: flex; flex-direction: column;
}
.about-badge strong { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.about-badge span { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }

.about-content { padding-bottom: 40px; }
.about-lead { font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 16px; }
.about-content > p:not(.about-lead) { color: var(--text-muted); margin-bottom: 32px; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.pillar:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-2px); }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.pillar p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
}
.stat > span { font-size: 1.8rem; color: var(--gold); font-family: var(--font-serif); font-weight: 700; }
.stat p { margin-top: 6px; font-size: .85rem; color: rgba(255,255,255,.65); }

/* ===========================
   SERVICES
   =========================== */
.services-section .section-bg-pattern { background-color: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 6px; }
.service-time {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  display: block;
}
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   EVENTS
   =========================== */
.events-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.event-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.event-card.featured .event-img-wrap { aspect-ratio: 16/10; }
.event-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.event-card:hover .event-img-wrap img { transform: scale(1.06); }

.event-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.event-body {
  padding: 24px;
  display: flex;
  gap: 20px;
}
.event-date {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  height: fit-content;
}
.ed-day { display: block; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.ed-month { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-light); }
.event-info { flex: 1; }
.event-info h3 { font-size: 1.1rem; margin-bottom: 6px; }
.event-meta { font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; }
.event-info p { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

/* ===========================
   PASTOR QUOTE
   =========================== */
.pastor-section { padding: 96px 0; }
.pastor-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.pastor-content {
  display: flex;
  justify-content: center;
}
.pastor-quote {
  max-width: 780px;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
  opacity: .8;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 40px;
  opacity: .95;
}
.pastor-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.pastor-img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.pastor-info div { text-align: left; }
.pastor-info strong { display: block; font-size: 1rem; font-weight: 600; }
.pastor-info span { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ===========================
   GALLERY
   =========================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gf-btn {
  padding: 9px 24px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gf-btn:hover { background: var(--gray-200); color: var(--navy); }
.gf-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,60,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item.hidden { display: none; }

.gallery-zoom {
  background: rgba(255,255,255,.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: .9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.gallery-zoom:hover { background: var(--gold); border-color: var(--gold); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(10px);
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
#lightbox-caption {
  color: rgba(255,255,255,.8);
  margin-top: 16px;
  font-size: .95rem;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  background: rgba(255,255,255,.1);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.2);
}
.lightbox-close:hover { background: var(--gold); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 1.4rem;
  background: rgba(255,255,255,.1);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.2);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }

/* ===========================
   CONTACT
   =========================== */
.contact-section .section-bg-pattern { background-color: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 56px;
}

.contact-info { display: flex; flex-direction: column; gap: 4px; }
.ci-card {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  margin-bottom: 12px;
}
.ci-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.ci-icon { font-size: 1.6rem; flex-shrink: 0; }
.ci-card h3 { font-size: 1rem; margin-bottom: 4px; }
.ci-card p { font-size: .88rem; color: var(--text-muted); }
.ci-card a { color: var(--gold); transition: var(--transition); }
.ci-card a:hover { color: var(--gold-dark); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.social-btn {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); transform: translateY(-3px); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--navy);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e53e3e; }
.form-error { font-size: .78rem; color: #e53e3e; margin-top: 4px; min-height: 18px; }

.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }

.btn-primary.btn-full { font-size: 1rem; padding: 16px; }

.form-success {
  margin-top: 16px;
  padding: 16px;
  background: #f0fff4;
  color: #276749;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  border: 1px solid #9ae6b4;
  text-align: center;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: var(--navy); color: var(--white); }

.footer-top { padding: 80px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 320px; }

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  display: inline-block;
}
.footer-col ul a:hover { color: var(--gold-light); transform: translateX(4px); }

.service-times-list li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.service-times-list li strong { color: var(--gold-light); }
.service-times-list li span { color: rgba(255,255,255,.6); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .84rem; color: rgba(255,255,255,.5); }

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 500;
  border: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-4px); }

/* ===========================
   AOS ANIMATION STUBS
   =========================== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px);  }
[data-aos="zoom-in"]    { transform: scale(.94);          }
[data-aos].aos-animate  {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 520px; margin: 0 auto; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  nav .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 24px) 24px 40px;
    gap: 4px;
    transition: right .35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,.3);
    overflow-y: auto;
  }
  nav .nav-links.open { right: 0; }
  .nav-link { font-size: 1.05rem; padding: 12px 8px; width: 100%; }
  .nav-btn { margin: 16px 0 0; width: 100%; text-align: center; }

  .hamburger { display: flex; }

  .slide-content { padding: calc(var(--nav-h) + 24px) 24px 100px; }
  .carousel-dots { left: 24px; bottom: 100px; }

  .quick-info {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .qi-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .qi-divider { display: none; }

  .about-img-secondary { display: none; }
  .about-badge { left: 16px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:last-child { border-bottom: none; }
  .purpose-grid { grid-template-columns: 1fr; }
  .faith-grid { grid-template-columns: 1fr; }
}

/* ===========================
   OUR PURPOSE
   =========================== */
.purpose-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.purpose-section .section-tag { color: var(--gold-light); }
.purpose-section h2 { color: var(--white); }

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

.purpose-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,151,58,.25);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--transition), transform var(--transition);
}
.purpose-card:hover {
  background: rgba(200,151,58,.12);
  transform: translateY(-4px);
}
.purpose-icon {
  font-size: 2rem;
}
.purpose-card p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.75;
}

/* ===========================
   STATEMENT OF FAITH
   =========================== */
.faith-section {
  background: var(--off-white);
}

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

.faith-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faith-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.faith-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.faith-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.faith-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===========================
   TESTIMONIES
   =========================== */
.testimonies-section {
  background: var(--navy);
  color: var(--white);
}
.testimonies-section .section-tag { color: var(--gold-light); }
.testimonies-section h2 { color: var(--white); }
.testimonies-section .section-header p { color: rgba(255,255,255,.7); }

.testimony-carousel {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
}

.testimony-track {
  display: flex;
  transition: transform .5s ease;
}

.testimony-card {
  min-width: 100%;
  display: flex;
  gap: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,151,58,.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  align-items: flex-start;
  box-sizing: border-box;
}

.testimony-photo-wrap {
  flex-shrink: 0;
}

.testimony-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.testimony-body {
  position: relative;
}

.testimony-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: .8;
  color: var(--gold);
  opacity: .4;
  display: block;
  margin-bottom: 8px;
}

.testimony-body p {
  color: rgba(255,255,255,.85);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimony-author strong {
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
}
.testimony-author span {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.testimony-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold-dark);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.tc-prev, .tc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200,151,58,.2);
  color: var(--gold-light);
  border: 1px solid rgba(200,151,58,.4);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}
.tc-prev { left: 8px; }
.tc-next { right: 8px; }
.tc-prev:hover, .tc-next:hover { background: rgba(200,151,58,.45); }

.tc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.tc-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 680px) {
  .testimony-card { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; }
  .tc-prev { left: 2px; }
  .tc-next { right: 2px; }
}

/* ===========================
   MEETINGS
   =========================== */
.meetings-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.meetings-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.meetings-group-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  background: var(--navy);
  padding: 18px 28px;
  letter-spacing: .02em;
}

.meetings-list {
  padding: 8px 0;
}

.meeting-row {
  display: grid;
  grid-template-columns: 90px 160px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}
.meeting-row:last-child { border-bottom: none; }
.meeting-row:hover { background: var(--gray-100); }

.meeting-day {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.meeting-time {
  font-size: .88rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.meeting-name {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meeting-tag {
  font-size: .75rem;
  font-weight: 600;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 20px;
  padding: 2px 10px;
}

@media (max-width: 860px) {
  .meetings-wrap { grid-template-columns: 1fr; }
  .meeting-row { grid-template-columns: 80px 1fr; }
  .meeting-time { grid-column: 2; margin-top: -8px; }
  .meeting-name { grid-column: 1 / -1; padding-top: 4px; }
}

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.65);
}

@media (max-width: 900px) {
  .purpose-grid { grid-template-columns: 1fr; }
  .faith-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .faith-grid { grid-template-columns: 1fr; }
}

/* ===========================
   VIDEOS SECTION
   =========================== */
.videos-section { background: var(--off-white); }

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

.video-link-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.vlc-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  overflow: hidden;
}
.vlc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.video-link-card:hover .vlc-thumb img { transform: scale(1.05); }

.vlc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,30,60,.4);
  transition: background var(--transition);
}
.video-link-card:hover .vlc-play { background: rgba(10,30,60,.6); }
.vlc-play svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  transition: transform var(--transition);
}
.video-link-card:hover .vlc-play svg { transform: scale(1.15); }

.vlc-info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.vlc-info h3 {
  font-size: .98rem;
  line-height: 1.4;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vlc-date {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: auto;
}

.videos-channel-link {
  text-align: center;
}

@media (max-width: 900px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .videos-grid { grid-template-columns: 1fr; }
}
