/*
  Promesas de Dios — Church Website
  Inspired by Salvation theme (CMSMasters)
  Colors: Navy #1c2647 | Gold #e6c068 | Cream #f7f3e6 | Gray #6a7a83
  Fonts: Libre Baskerville | PT Sans
*/

/* =========================================================
   1. RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1c2647;
  --gold:   #e6c068;
  --gold2:  #ac9052;
  --steel:  #6a7a83;
  --cream:  #f7f3e6;
  --border: #e9e5de;
  --white:  #ffffff;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--steel);
  background: var(--white);
}

a { color: var(--gold2); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .6em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; font-style: italic; font-weight: normal; }
h5 { font-size: 1rem; font-weight: bold; letter-spacing: .05em; text-transform: uppercase; }

p { margin-bottom: 1.2em; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* =========================================================
   2. TYPOGRAPHY HELPERS
   ========================================================= */
.section-tag {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 12px;
}
.section-tag.center { display: block; text-align: center; }

.section-title { margin-bottom: .4em; }
.section-subtitle {
  color: var(--steel);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-subtitle.center { text-align: center; }

.text-center { text-align: center; }
.gold { color: var(--gold); }
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 18px 0 28px;
}
.divider.center { margin: 18px auto 28px; }

/* =========================================================
   3. BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* =========================================================
   4. NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 88px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--white);
  line-height: 1;
  transition: color .35s;
}
.nav-logo-name span { color: var(--gold); }
.nav.scrolled .nav-logo-name { color: var(--navy); }
.nav-logo-sub {
  font-family: 'PT Sans', sans-serif;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .35s;
}
.nav.scrolled .nav-logo-sub { color: var(--steel); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'PT Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color .25s;
}
.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--gold2); }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language switch */
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  font-family: 'PT Sans', sans-serif; font-size: .72rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.lang-switch .lang-active { color: var(--white); opacity: .5; }
.lang-switch .lang-sep { color: var(--white); opacity: .3; }
.lang-switch .lang-inactive { color: var(--white); opacity: .85; transition: opacity .2s; }
.lang-switch .lang-inactive:hover { opacity: 1; color: var(--gold); }
.nav.scrolled .lang-switch .lang-active { color: var(--steel); }
.nav.scrolled .lang-switch .lang-sep { color: var(--border); opacity: 1; }
.nav.scrolled .lang-switch .lang-inactive { color: var(--navy); opacity: .7; }
.nav.scrolled .lang-switch .lang-inactive:hover { color: var(--gold2); opacity: 1; }

/* Lang toast */
.lang-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--white);
  font-family: 'PT Sans', sans-serif; font-size: .85rem;
  padding: 12px 28px; border-radius: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  z-index: 9999; white-space: nowrap;
  animation: toastIn .3s ease;
}
@keyframes toastIn { from { opacity:0; transform: translateX(-50%) translateY(12px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: background .35s;
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 92px; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 999;
  padding: 20px 32px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'PT Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold2); }

/* =========================================================
   5. HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(28,38,71,.55) 0%,
    rgba(28,38,71,.70) 60%,
    rgba(28,38,71,.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 20px;
  max-width: 820px;
}
.hero-tag {
  font-family: 'PT Sans', sans-serif;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-family: 'PT Sans', sans-serif;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.4);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Service Times Strip */
.service-strip {
  background: var(--navy);
  padding: 0;
}
.service-strip-inner {
  display: flex;
  align-items: stretch;
}
.service-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .25s;
}
.service-strip-item:last-child { border-right: none; }
.service-strip-item:hover { background: rgba(255,255,255,.05); }
.service-strip-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  color: var(--gold);
}
.service-strip-text { }
.service-strip-label {
  font-family: 'PT Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.service-strip-value {
  font-family: 'Libre Baskerville', serif;
  font-size: .95rem;
  color: var(--white);
}

/* =========================================================
   6. PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: 140px 0 70px;
  background: var(--cream);
  text-align: center;
  position: relative;
}
.page-hero.has-bg {
  background-size: cover;
  background-position: center;
}
.page-hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,38,71,.7);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero.has-bg h1 { color: var(--white); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'PT Sans', sans-serif;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 12px;
}
.page-hero.has-bg .breadcrumb { color: rgba(255,255,255,.7); }
.breadcrumb a { color: var(--gold2); }
.page-hero.has-bg .breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .5; }

/* =========================================================
   7. WELCOME SECTION
   ========================================================= */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-img-wrap {
  position: relative;
}
.welcome-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}
.welcome-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(230,192,104,.3);
}
.welcome-img-badge strong {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.welcome-img-badge span {
  font-family: 'PT Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.welcome-text .btn { margin-top: 8px; }

/* =========================================================
   8. ABOUT / VALUES
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .25s, transform .25s;
}
.value-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* =========================================================
   9. SERMONS
   ========================================================= */
.sermons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sermon-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s;
}
.sermon-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.sermon-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.sermon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: opacity .3s, transform .3s;
}
.sermon-card:hover .sermon-thumb img { opacity: .7; transform: scale(1.04); }
.sermon-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sermon-play-btn {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(230,192,104,.4);
  transition: transform .2s, background .2s;
}
.sermon-card:hover .sermon-play-btn {
  transform: scale(1.1);
  background: var(--gold2);
  color: var(--white);
}
.sermon-series {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'PT Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.sermon-body { padding: 22px; }
.sermon-meta {
  font-family: 'PT Sans', sans-serif;
  font-size: .78rem;
  color: var(--gold2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sermon-meta span { color: var(--steel); }
.sermon-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sermon-body h3 a { color: var(--navy); }
.sermon-body h3 a:hover { color: var(--gold2); }
.sermon-preacher {
  font-family: 'PT Sans', sans-serif;
  font-size: .8rem;
  color: var(--steel);
  font-style: italic;
}

/* =========================================================
   10. SERVICES / SCHEDULE
   ========================================================= */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.schedule-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s;
}
.schedule-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.schedule-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}
.schedule-day {
  font-family: 'PT Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 8px;
}
.schedule-time {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 6px;
}
.schedule-name { font-size: 1rem; margin-bottom: 8px; }
.schedule-desc { font-size: .88rem; color: var(--steel); margin: 0; }

/* =========================================================
   11. MINISTRIES
   ========================================================= */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ministry-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}
.ministry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.ministry-card:hover img { transform: scale(1.08); }
.ministry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(28,38,71,.88) 0%,
    rgba(28,38,71,.3) 60%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background .3s;
}
.ministry-card:hover .ministry-overlay {
  background: linear-gradient(to top,
    rgba(28,38,71,.95) 0%,
    rgba(28,38,71,.5) 60%,
    rgba(28,38,71,.2) 100%);
}
.ministry-icon { font-size: 1.8rem; margin-bottom: 8px; }
.ministry-overlay h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.ministry-overlay p {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.ministry-card:hover .ministry-overlay p { max-height: 80px; }
.ministry-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'PT Sans', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-bottom: 8px;
  border-radius: 2px;
}

/* =========================================================
   12. VERSE / QUOTE
   ========================================================= */
.verse-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.verse-section::before,
.verse-section::after {
  content: '"';
  position: absolute;
  font-size: 20rem;
  line-height: 1;
  color: rgba(255,255,255,.03);
  font-family: 'Libre Baskerville', serif;
}
.verse-section::before { top: -60px; left: 20px; }
.verse-section::after { bottom: -80px; right: 20px; }
.verse-section blockquote {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}
.verse-ref {
  font-family: 'PT Sans', sans-serif;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* =========================================================
   13. EVENTS
   ========================================================= */
.events-list { display: flex; flex-direction: column; gap: 20px; }
.event-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .25s, border-color .25s;
}
.event-row:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); border-color: var(--gold); }
.event-date-box {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 10px 8px;
  border-radius: var(--radius);
}
.event-date-box .month {
  font-family: 'PT Sans', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.event-date-box .day {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.1;
}
.event-info { flex: 1; }
.event-info h4 { color: var(--navy); margin-bottom: 4px; font-style: normal; font-weight: bold; font-size: 1rem; }
.event-info p { font-size: .88rem; margin: 0; color: var(--steel); }
.event-meta {
  font-family: 'PT Sans', sans-serif;
  font-size: .75rem;
  color: var(--gold2);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.event-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-family: 'PT Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* =========================================================
   14. PASTORAL / TEAM
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card { text-align: center; }
.team-photo {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
}
.team-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .4s;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,38,71,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity .3s;
}
.team-card:hover .team-photo-overlay { opacity: 1; }
.team-social-btn {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: bold;
  transition: background .2s;
}
.team-social-btn:hover { background: var(--white); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role {
  font-family: 'PT Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold2);
}

/* =========================================================
   15. CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 28px; margin-top: 28px; }
.contact-info-item { display: flex; gap: 18px; }
.contact-info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-info-text h5 { margin-bottom: 4px; color: var(--navy); font-style: normal; }
.contact-info-text p { margin: 0; font-size: .9rem; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'PT Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Libre Baskerville', serif;
  font-size: .9rem;
  color: var(--steel);
  background: var(--white);
  transition: border-color .25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold2); }
.form-group textarea { height: 120px; resize: vertical; }

/* Map */
.map-wrap {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* =========================================================
   16. CTA SECTION
   ========================================================= */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '✝';
  position: absolute;
  font-size: 28rem;
  color: rgba(255,255,255,.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-section h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
  font-style: italic;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =========================================================
   17. APP BANNER
   ========================================================= */
.app-section {
  background: var(--cream);
  padding: 70px 0;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.app-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .25s;
}
.app-badge:hover { background: var(--gold2); color: var(--white); }
.app-badge-icon { font-size: 1.6rem; }
.app-badge-text { display: flex; flex-direction: column; }
.app-badge-sub { font-family: 'PT Sans', sans-serif; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.app-badge-name { font-family: 'PT Sans', sans-serif; font-size: 1rem; font-weight: 700; }
.app-img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(28,38,71,.2);
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto;
}

/* =========================================================
   18. FOOTER
   ========================================================= */
.footer {
  background: #111827;
  color: rgba(255,255,255,.65);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-name span { color: var(--gold); }
.footer-logo-sub {
  font-family: 'PT Sans', sans-serif;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-desc { font-size: .88rem; margin-bottom: 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .8rem;
  font-weight: bold;
  transition: background .25s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  font-family: 'PT Sans', sans-serif;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color .2s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact-item span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'PT Sans', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* =========================================================
   19. FADE-UP ANIMATION
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   20. GRID UTILITIES
   ========================================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
}
.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(28,38,71,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'PT Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .75;
}

/* Belief cards */
.belief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.belief-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.belief-num {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: .5;
}
.belief-item h4 { font-style: normal; font-weight: bold; font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.belief-item p { margin: 0; font-size: .88rem; }

/* =========================================================
   21. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .welcome-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ministries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .sermons-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .belief-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 60px 0; }
  .nav-links, .nav-right .btn, .lang-switch { display: none; }
  .nav-toggle { display: block; }
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-img-badge { right: 0; bottom: -20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .sermons-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .service-strip-inner { flex-direction: column; }
  .service-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .app-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .belief-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
