/* ==========================================================================
   HGIC Website — shared styles
   House of Glory International Church | Dodoma, Tanzania
   ========================================================================== */

:root {
  --purple: #C2185B;        /* HGIC pink-magenta from logo */
  --purple-dark: #8E0E3C;
  --gold: #D4A74A;          /* HGIC gold from laurel */
  --gold-dark: #B8892F;
  --gold-bright: #E5BD60;
  --navy: #1A1B4B;          /* Deep navy for hero/headlines */
  --navy-light: #25266B;
  --ink: #1A1B4B;           /* Use navy for body headlines too */
  --body: #4A4A4A;
  --muted: #6B6B6B;
  --light: #FAF7F2;
  --cream: #FFF9F0;
  --white: #FFFFFF;
  --line: #E8E3D9;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--purple-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

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

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 56px;
  width: auto;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-dark);
  font-weight: 400;
  font-style: italic;
  font-family: var(--sans);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-main a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.nav-main a:hover { color: var(--purple); }

.nav-main a.active {
  color: var(--purple);
  position: relative;
}

.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--light);
  border-radius: 20px;
  padding: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  gap: 2px;
}

.lang-toggle button {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
}

.lang-toggle button.active {
  background: var(--purple);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--purple);
  cursor: pointer;
  padding: 4px 8px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: var(--sans);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-secondary:hover {
  background: var(--purple);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ==========================================================================
   HERO — Navy gradient with bold typography (matches existing site vibe)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,167,74,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(194,24,91,0.15) 0%, transparent 55%),
    linear-gradient(135deg, #1A1B4B 0%, #25266B 35%, #1F2058 70%, #181938 100%);
  color: var(--white);
  padding: 90px 24px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

/* Logo on hero with soft glow */
.hero-logo {
  display: block;
  width: fit-content;
  margin: 0 auto 32px;
  background: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow:
    0 0 60px rgba(212,167,74,0.25),
    0 0 120px rgba(194,24,91,0.2),
    0 8px 32px rgba(0,0,0,0.3);
}

.hero-logo img {
  height: 110px;
  width: auto;
  display: block;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(212,167,74,0.12);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  border: 1px solid rgba(212,167,74,0.35);
}

.hero h1 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero h1 .accent {
  color: var(--gold);
  font-style: normal;
}

.hero-scripture {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-scripture-cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 36px;
}

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-bottom: 44px;
  opacity: 0.92;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-gold {
  background: var(--gold);
  color: #1A1B4B;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212,167,74,0.4);
}

.hero-cta .btn-gold:hover {
  background: #E5BD60;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,167,74,0.55);
}

.hero-cta .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover {
  background: var(--white);
  color: #1A1B4B;
  border-color: var(--white);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section {
  padding: 80px 24px;
}

.section-light { background: var(--light); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-header h2 {
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto;
  border: none;
}

/* ==========================================================================
   CARDS / GRIDS
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  border: 1px solid var(--line);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--purple);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

/* ==========================================================================
   SERVICE BAND
   ========================================================================== */
.service-band {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
  padding: 80px 24px;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.service-info h2 {
  color: var(--navy);
  margin-bottom: 32px;
}

.service-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.service-item:last-child { border: none; }

.service-time {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-detail {
  color: var(--muted);
  margin-bottom: 0;
}

.service-visual {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: 16px;
  padding: 60px 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,167,74,0.2) 0%, transparent 60%);
}

.service-visual > * { position: relative; }

.service-visual-logo {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  margin: 0 auto 20px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-logo img { max-height: 100%; }

.service-visual h3 {
  color: var(--gold);
  margin-bottom: 8px;
  font-family: var(--serif);
}

.service-visual p { opacity: 0.95; margin-bottom: 0; }

/* ==========================================================================
   SCRIPTURE CALLOUT
   ========================================================================== */
.scripture {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.scripture blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
  position: relative;
}

.scripture blockquote::before,
.scripture blockquote::after {
  content: '"';
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  opacity: 0.4;
  font-family: var(--serif);
}

.scripture cite {
  display: block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PASTOR SECTION
   ========================================================================== */
.pastor-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.pastor-photo-wrap {
  position: relative;
}

.pastor-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.pastor-photo-caption {
  text-align: center;
  margin-top: 16px;
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pastor-photo-caption strong {
  display: block;
  color: var(--purple);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 2px;
}

.pastor-bio h2 {
  color: var(--navy);
  margin-bottom: 8px;
}

.pastor-bio .pastor-title {
  color: var(--gold-dark);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

/* ==========================================================================
   CONTACT / GIVE SECTIONS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-block {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-info-block h3 {
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.contact-info-block p { margin-bottom: 8px; }
.contact-info-block a { font-weight: 500; }

.contact-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   FORM
   ========================================================================== */
.form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 12px;
}

/* ==========================================================================
   GIVE SECTION
   ========================================================================== */
.give-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.give-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 12px;
  border: 2px solid var(--line);
  transition: all 0.3s;
  text-align: center;
}

.give-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.give-card h3 {
  color: var(--navy);
  margin-bottom: 16px;
}

.give-number {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 16px 0;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(135deg, #2A1423 0%, #4B1D3F 100%);
  color: rgba(255,255,255,0.85);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  color: var(--white);
  font-family: var(--serif);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.footer-brand .scripture-small {
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding-top: 20px;
}

.footer-bottom p { margin-bottom: 8px; }

.footer-foundation {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 16px;
}

.footer-foundation a { color: var(--gold); font-weight: 600; }
.footer-foundation a:hover { color: var(--white); }

/* ==========================================================================
   MISC
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 12px;
}

.page-header .page-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
}

.bible-verses {
  list-style: none;
  padding: 0;
}

.bible-verses li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.bible-verses li:last-child { border: none; }

.bible-verses li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--gold);
  font-size: 1.1rem;
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.ministry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ministry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ministry-card h3 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.ministry-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .service-content { grid-template-columns: 1fr; gap: 40px; }
  .pastor-section { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .nav-main.open { display: flex; }
  .nav-main a { width: 100%; padding: 8px 0; }

  .hero { min-height: 500px; padding: 60px 24px; }
  section { padding: 60px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .logo-text { font-size: 0.9rem; }
  .logo-text small { font-size: 0.65rem; }
  .logo-img { height: 44px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* Language switcher hidden content */
.lang-en, .lang-sw { display: none; }
html[lang="en"] .lang-en { display: initial; }
html[lang="sw"] .lang-sw { display: initial; }
html[lang="en"] .lang-en.block, html[lang="sw"] .lang-sw.block { display: block; }
html[lang="en"] .lang-en.grid, html[lang="sw"] .lang-sw.grid { display: grid; }
html[lang="en"] .lang-en.flex, html[lang="sw"] .lang-sw.flex { display: flex; }
html[lang="en"] .lang-en.inline-block, html[lang="sw"] .lang-sw.inline-block { display: inline-block; }

/* ==========================================================================
   GLOBAL PRAYER MINISTRY PAGE
   ========================================================================== */
.prayer-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #6B1434 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prayer-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,167,74,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.prayer-hero > * { position: relative; }

.prayer-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.prayer-hero h1 .accent {
  color: var(--gold);
}

.prayer-hero .scripture-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.prayer-hero .scripture-cite {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--sans);
}

.prayer-hero p.lead {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-size: 1.1rem;
}

/* How it works steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--body);
}

/* Promise band */
.promise-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
  border-radius: 12px;
  max-width: 900px;
  margin: 48px auto;
  box-shadow: var(--shadow-lg);
}

.promise-band h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.promise-band p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Enhanced form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.radio-group {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}

.radio-option:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.radio-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--purple);
  flex-shrink: 0;
}

.radio-option-content {
  flex: 1;
}

.radio-option-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.radio-option-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #FFF3E0;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  margin-top: 12px;
}

.checkbox-row input {
  accent-color: var(--purple);
}

.checkbox-row label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
}

/* ==========================================================================
   SERMONS PAGE
   ========================================================================== */
.sermon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.sermon-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sermon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sermon-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  overflow: hidden;
}

.sermon-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.sermon-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
}

.sermon-body {
  padding: 24px;
}

.sermon-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.sermon-meta .lang-tag {
  background: var(--cream);
  color: var(--purple);
  padding: 2px 8px;
  border-radius: 4px;
}

.sermon-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sermon-card p {
  font-size: 0.95rem;
  color: var(--body);
  margin-bottom: 16px;
  line-height: 1.5;
}

.sermon-card .sermon-verse {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

/* ==========================================================================
   FAQ SECTION (GEO critical)
   ========================================================================== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--cream); }

.faq-question::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--body);
  line-height: 1.7;
}

/* ==========================================================================
   GLOBAL OUTREACH BAND (homepage)
   ========================================================================== */
.global-band {
  background: linear-gradient(135deg, #1A237E 0%, #4B1D3F 100%);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.global-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(212,167,74,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(194,24,91,0.15) 0%, transparent 50%);
}

.global-band > * { position: relative; }

.global-band h2 {
  color: var(--gold);
  margin-bottom: 16px;
}

.global-band p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  opacity: 0.95;
}

.global-band .btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.global-band .btn-primary:hover {
  background: var(--white);
}

.global-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.global-stat {
  text-align: center;
}

.global-stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.global-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
