/* Modern Design System - Pastor Víctor Páez / IBBVA Venezuela Church & Relief */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Core Color Tokens */
  --primary-950: #060d1f;
  --primary-900: #0a142f;
  --primary-800: #12214d;
  --primary-700: #1e3575;
  --primary-600: #29479b;
  --primary-500: #3b62c4;

  --gold-500: #d4af37;
  --gold-400: #e5c358;
  --gold-300: #f4d884;
  --gold-glow: rgba(212, 175, 55, 0.28);

  --relief-red: #e63946;
  --relief-glow: rgba(230, 57, 70, 0.35);

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Gradients & Shadows */
  --grad-hero: linear-gradient(135deg, rgba(6, 13, 31, 0.94) 0%, rgba(10, 20, 47, 0.88) 50%, rgba(30, 53, 117, 0.85) 100%);
  --grad-gold: linear-gradient(135deg, #f4d884 0%, #d4af37 60%, #b8911f 100%);
  --grad-relief: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 13, 31, 0.1);
  --shadow-lg: 0 16px 40px rgba(6, 13, 31, 0.16);
  --shadow-xl: 0 24px 60px rgba(6, 13, 31, 0.22);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.35);
  --shadow-relief: 0 10px 30px rgba(230, 57, 70, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.nav-open {
  overflow: hidden;
}

img, svg, video, iframe, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6, p, span, a, li, blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background-color: var(--primary-950);
  color: var(--white);
}

.section-muted {
  background-color: var(--slate-100);
}

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

/* Header & Sticky Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 13, 31, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

/* Emergency Announcement Bar */
.emergency-bar {
  background: linear-gradient(90deg, #991b1b 0%, #dc2626 50%, #991b1b 100%);
  color: var(--white);
  padding: 6px 16px;
  font-size: 0.79rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.emergency-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.35;
}

.emergency-link {
  color: #fef08a;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 6px;
  transition: var(--transition);
}

.emergency-link:hover {
  color: #ffffff;
}

.emergency-bar span.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 4px;
  animation: pulseDot 1.4s infinite;
  vertical-align: middle;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Main Navigation Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
  gap: 16px;
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-950);
  font-size: 18px;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--slate-200);
  white-space: nowrap;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: all 0.2s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Bilingual Language Switcher */
.lang-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
  padding: 2px;
  gap: 2px;
  flex-shrink: 0;
}

.lang-btn {
  padding: 4px 9px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--slate-200);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.lang-btn.active {
  background: var(--grad-gold);
  color: var(--primary-950);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.nav-cta-btn {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-drawer-cta {
  display: none;
}

.modal-btn-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-modal-full {
  flex: 1 1 100%;
}

.btn-modal-half {
  flex: 1 1 45%;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--primary-950);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.btn-relief {
  background: var(--grad-relief);
  color: var(--white);
  box-shadow: var(--shadow-relief);
  position: relative;
  overflow: hidden;
}

.btn-relief:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.5);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: var(--grad-hero), url('../assets/images/caracas_hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding-top: 155px;
  padding-bottom: 80px;
}


.hero-content {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-radius: var(--radius-full);
  color: #ff9b9f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .highlight-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--slate-200);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

/* Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.86rem;
  color: var(--slate-300);
  font-weight: 500;
}

/* Section Header Shared */
.section-header {
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: #b8911f;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-relief {
  background: rgba(230, 57, 70, 0.12);
  color: var(--relief-red);
  border: 1px solid rgba(230, 57, 70, 0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 760px;
  margin: 0 auto;
}

.section-dark .section-desc {
  color: var(--slate-300);
}

/* Rebuilding Fund Section */
.relief-card-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  margin-bottom: 48px;
}

.relief-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.relief-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.relief-media:hover img {
  transform: scale(1.03);
}

.relief-media-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(6, 13, 31, 0.85);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.relief-media-badge p {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Progress Bar Widget */
.progress-widget {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.progress-header h4 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  margin-bottom: 8px;
}

.progress-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--relief-red);
  line-height: 1;
  margin-bottom: 4px;
}

.progress-subtext {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 20px;
}

.progress-bar-container {
  width: 100%;
  height: 16px;
  background: var(--slate-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #f43f5e, #e11d48, #be123c);
  border-radius: var(--radius-full);
  position: relative;
  transition: width 1.2s ease-in-out;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.urgent-note-box {
  background: rgba(230, 57, 70, 0.08);
  border-left: 4px solid var(--relief-red);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: #991b1b;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Relief Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon svg {
  transform: scale(1.12);
}

.icon-red { background: rgba(230, 57, 70, 0.12); color: var(--relief-red); border: 1px solid rgba(230, 57, 70, 0.22); }
.icon-orange { background: rgba(245, 158, 11, 0.14); color: #d97706; border: 1px solid rgba(245, 158, 11, 0.25); }
.icon-blue { background: rgba(59, 130, 246, 0.12); color: #2563eb; border: 1px solid rgba(59, 130, 246, 0.22); }
.icon-gold { background: rgba(212, 175, 55, 0.15); color: #b8911f; border: 1px solid rgba(212, 175, 55, 0.28); }

.contact-info-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 10px;
}

.contact-info-heading svg {
  color: var(--gold-500);
  flex-shrink: 0;
}


.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.94rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Interactive Donation Tier Selector */
.donate-calculator {
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.donate-calculator h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.donate-calculator p.subtitle {
  color: var(--slate-300);
  margin-bottom: 30px;
}

.tier-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.tier-chip {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tier-chip:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-400);
}

.tier-chip.active {
  background: var(--grad-gold);
  color: var(--primary-950);
  border-color: var(--gold-300);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.tier-impact-display {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 680px;
  margin: 0 auto 30px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-impact-text {
  font-size: 1.05rem;
  color: var(--gold-300);
  font-weight: 500;
}

.mwbm-verification-note {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-top: 18px;
}

/* About Pastor Victor */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.pastor-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.pastor-photo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.pastor-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 13, 31, 0.95), transparent);
  padding: 40px 24px 20px 24px;
  color: var(--white);
}

.pastor-photo-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.pastor-photo-caption p {
  font-size: 0.85rem;
  color: var(--gold-300);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--slate-700);
  margin-bottom: 18px;
  line-height: 1.7;
}

.quote-box {
  margin-top: 32px;
  padding: 24px 30px;
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-box blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--primary-950);
  margin-bottom: 8px;
  line-height: 1.6;
}

.quote-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: #946f05;
}

/* Seminary Section */
.seminary-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.seminary-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.seminary-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-400);
  transform: translateY(-4px);
}

.seminary-card-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-950);
  font-size: 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-gold);
}

.seminary-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.seminary-card p {
  font-size: 0.95rem;
  color: var(--slate-300);
  line-height: 1.6;
}

/* Ministries & Media Grid */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.ministry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}

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

.ministry-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.ministry-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 12px;
}

.ministry-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Location & Times */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}

.location-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 14px;
}

.location-address {
  font-size: 1.05rem;
  color: var(--slate-700);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 20px;
  border-left: 3px solid var(--primary-500);
}

.transit-callout {
  background: var(--slate-100);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 24px;
}

.schedule-card {
  background: var(--primary-950);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.schedule-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.service-name {
  font-weight: 500;
  color: var(--slate-200);
}

.service-time {
  font-weight: 700;
  color: var(--gold-300);
  font-size: 0.95rem;
}

/* Giving Channel Section */
.giving-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
}

.giving-channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 36px;
}

.channel-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px 26px;
}

.channel-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 16px;
}

.channel-card p, .channel-card li {
  font-size: 0.94rem;
  color: var(--slate-700);
  margin-bottom: 10px;
}

.channel-card ul {
  list-style-type: none;
  padding: 0;
}

.channel-card li {
  padding-left: 24px;
  position: relative;
}

.channel-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 800;
}

.memo-highlight {
  background: rgba(212, 175, 55, 0.2);
  color: #855f00;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.contact-daughter-banner {
  background: var(--primary-900);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--slate-900);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--slate-100);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--slate-200);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 31, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  font-size: 24px;
  color: var(--slate-400);
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--slate-800);
}

/* Footer */
.site-footer {
  background-color: var(--primary-950);
  color: var(--slate-400);
  padding: 80px 0 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

.scripture-banner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-300);
  margin-bottom: 40px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--slate-500);
}

/* =========================================================
   STORYBRAND (SB7) FRAMEWORK STYLES
   ========================================================= */

/* SB7: The Problem Section (External, Internal, Philosophical) */
.sb7-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.sb7-problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

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

.sb7-problem-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.tag-external { background: rgba(230, 57, 70, 0.12); color: var(--relief-red); }
.tag-internal { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.tag-philosophical { background: rgba(212, 175, 55, 0.18); color: #b8911f; }

.sb7-problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--primary-950);
  margin-bottom: 12px;
}

.sb7-problem-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* SB7: The 3-Step Process Plan */
.sb7-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.sb7-step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--slate-200);
  position: relative;
  transition: var(--transition);
}

.sb7-step-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.sb7-step-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.sb7-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 12px;
}

.sb7-step-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* SB7: The Guide (Authority Checklist) */
.sb7-authority-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sb7-authority-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-950);
}

.sb7-authority-list li span.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

/* SB7: The Stakes (Failure Avoidance) */
.sb7-stakes-section {
  background: linear-gradient(180deg, #fff5f5 0%, #fef2f2 100%);
  border-top: 1px solid #fecaca;
  border-bottom: 1px solid #fecaca;
}

.sb7-stakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.sb7-stake-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border-left: 4px solid var(--relief-red);
  box-shadow: var(--shadow-sm);
}

.sb7-stake-item h4 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 8px;
}

.sb7-stake-item p {
  font-size: 0.92rem;
  color: #7f1d1d;
  line-height: 1.6;
}

/* SB7: The Transformation (Before & After) */
.sb7-trans-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.sb7-trans-box {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
}

.sb7-trans-before {
  background: var(--slate-100);
  border: 1px solid var(--slate-300);
}

.sb7-trans-after {
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-950) 100%);
  color: var(--white);
  border: 2px solid var(--gold-400);
  box-shadow: var(--shadow-xl);
}

.sb7-trans-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-before { background: rgba(100, 116, 139, 0.2); color: var(--slate-700); }
.badge-after { background: var(--grad-gold); color: var(--primary-950); }

.sb7-trans-box h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.sb7-trans-box p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.sb7-trans-before p { color: var(--slate-600); }
.sb7-trans-after p { color: var(--slate-200); }

/* SB7: Transitional CTA Banner - Ultra High Contrast */
.sb7-transitional-bar {
  background: linear-gradient(135deg, #071129 0%, #0f214d 50%, #091533 100%);
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-lg);
  padding: 42px 46px;
  margin: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 40px rgba(5, 10, 25, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.sb7-transitional-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.sb7-transitional-content {
  flex: 1;
  min-width: 280px;
  position: relative;
  z-index: 1;
}

.sb7-transitional-bar h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 10px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sb7-transitional-bar p {
  font-size: 1.08rem;
  font-weight: 500;
  color: #f8fafc !important;
  line-height: 1.65;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.sb7-transitional-btn {
  flex-shrink: 0;
  padding: 15px 30px;
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

/* Relief Timeline Styles */
.timeline-container {
  max-width: 900px;
  margin: 50px auto 0;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 28px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--relief-red) 70%, var(--slate-300) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  margin-bottom: 36px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-900);
  font-weight: 800;
  font-size: 0.82rem;
  z-index: 2;
}

.timeline-dot.active {
  background: var(--relief-red);
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.3);
  color: #ffffff;
  animation: pulse-dot 2s infinite;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}

.timeline-status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.badge-completed {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.badge-in-progress {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.badge-target {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.timeline-card h4 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--primary-950);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.94rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* FAQ Accordion Styles */
.faq-grid {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold-300);
}

.faq-item.open {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-950);
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-600);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: var(--primary-900);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-400);
  color: var(--primary-950);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 26px;
  color: var(--slate-600);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 350px;
  padding: 0 26px 24px 26px;
}

/* Prayer Guide Modal Specifics */
.prayer-modal-box {
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-300);
}

.prayer-point-card {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.prayer-point-num {
  width: 32px;
  height: 32px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary-950);
  flex-shrink: 0;
}

.prayer-point-content h5 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 4px;
}

.prayer-point-content p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

/* Caracas Communities & Neighborhoods Tags (Local SEO) */
.neighborhoods-box {

  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}

.neighborhoods-header h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-950);
  margin-bottom: 8px;
}

.neighborhoods-header p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.n-tag {
  background: var(--slate-100);
  color: var(--primary-900);
  border: 1px solid var(--slate-200);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.n-tag:hover {
  background: var(--gold-100, #fef9c3);
  border-color: var(--gold-400);
  color: var(--primary-950);
  transform: translateY(-1px);
}

/* Monthly Church Sponsorship Section */
.sponsorship-section {
  margin-bottom: 56px;
}

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

.sponsor-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.sponsor-card.featured {
  border: 2px solid var(--gold-500);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}

.sponsor-badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--primary-950);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sponsor-tier-price {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-950);
  margin-bottom: 12px;
  line-height: 1;
}

.sponsor-tier-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-500);
  font-family: var(--font-sans);
}

.sponsor-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 10px;
}

.sponsor-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ==========================================================================
   Stewardship Allocation Breakdown
   ========================================================================== */
.stewardship-box {
  margin: 40px auto 48px;
  max-width: 860px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stewardship-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-950);
  margin: 8px 0 6px 0;
}

.stewardship-header p {
  color: var(--slate-600);
  font-size: 0.94rem;
  margin-bottom: 24px;
}

.stewardship-bar {
  display: flex;
  height: 28px;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 28px;
}

.steward-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.steward-segment:hover {
  opacity: 0.9;
}

.segment-rebuild {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
  color: #0b1528;
}

.segment-kitchen {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.segment-seminary {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.stewardship-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: left;
}

.legend-item {
  display: flex;
  gap: 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.dot-rebuild { background: #d4af37; }
.dot-kitchen { background: #10b981; }
.dot-seminary { background: #3b82f6; }

.legend-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary-950);
  margin-bottom: 4px;
}

.legend-item p {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   Interactive "See Your Impact" Tangible Cards
   ========================================================================== */
.impact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.impact-metric-card {
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.impact-metric-card:hover {
  background: var(--white);
  border-color: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.impact-metric-amount {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 6px;
}

.impact-metric-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.impact-metric-desc {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.45;
  margin: 0 0 10px 0;
  flex-grow: 1;
}

.impact-metric-action {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-500, #b45309);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   1-Click Copy Mailing Info Button & Toast
   ========================================================================== */
.btn-copy-check {
  transition: all 0.25s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
}

.btn-copy-check:hover {
  background: var(--slate-100);
  border-color: var(--slate-400);
}

.btn-copy-check.copied {
  background: #dcfce7 !important;
  border-color: #22c55e !important;
  color: #15803d !important;
}

/* Global Floating Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.toast-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Sticky Rebuilding Progress Floating Pill
   ========================================================================== */
.sticky-rebuild-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 22, 51, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--gold-400);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s;
}

.sticky-rebuild-pill.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-pill-info {
  display: flex;
  flex-direction: column;
}

.sticky-pill-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sticky-pill-sub {
  font-size: 0.74rem;
  color: var(--gold-300);
  font-weight: 700;
}

.sticky-pill-btn {
  background: var(--grad-gold);
  color: var(--primary-950);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sticky-pill-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.sticky-pill-close {
  background: transparent;
  border: none;
  color: var(--slate-400);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.2s;
}

.sticky-pill-close:hover {
  color: var(--white);
}

/* ==========================================================================
   Comprehensive Mobile-First Responsive Breakpoints & Overflow Fixes
   ========================================================================== */

/* --------------------------------------------------------------------------
   Desktop & Tablet Large (max-width: 1180px)
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav-links {
    position: fixed;
    top: 96px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 96px);
    background: rgba(6, 13, 31, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px 20px 80px 20px;
    gap: 8px;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--slate-100);
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-300);
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-drawer-cta {
    display: flex !important;
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-actions .nav-cta-btn {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Tablets & Medium Screens (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .relief-card-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .giving-channel-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .sb7-trans-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sb7-transitional-bar {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 24px;
  }

  .sb7-transitional-content {
    min-width: 0;
  }

  .sb7-transitional-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Standard Mobile Devices & Phablets (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Layout & Container Padding */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  /* Global Button Wrapping for Mobile */
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 12px 18px;
    font-size: 0.92rem;
    max-width: 100%;
    word-break: break-word;
  }

  /* Emergency Top Bar */
  .emergency-bar {
    padding: 6px 12px;
    font-size: 0.74rem;
  }

  .emergency-container {
    gap: 6px;
  }

  /* Navigation Bar */
  .nav-container {
    height: 64px;
    padding: 0 14px;
    gap: 10px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .brand-name {
    font-size: 0.92rem;
    max-width: 160px;
    white-space: normal;
    line-height: 1.15;
  }

  .brand-sub {
    display: none;
  }

  .lang-switch {
    padding: 2px;
    gap: 1px;
  }

  .lang-btn {
    padding: 4px 7px;
    font-size: 0.72rem;
  }

  .mobile-toggle {
    font-size: 24px;
    padding: 4px 6px;
  }

  /* Hero Section */
  .hero {
    padding-top: 124px;
    padding-bottom: 48px;
    min-height: auto;
    background-attachment: scroll;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 5px 12px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.8vw, 2.4rem);
    line-height: 1.16;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
    width: 100%;
  }

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

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    padding-top: 24px;
  }

  .stat-item h3 {
    font-size: 1.85rem;
  }

  .stat-item p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  /* Typography & Headers */
  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.65rem, 5.5vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  /* Rebuilding Fund Section */
  .relief-card-wrapper {
    padding: 18px 14px;
    gap: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 36px;
  }

  .relief-media {
    border-radius: var(--radius-sm);
  }

  .relief-media-badge {
    position: static;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
  }

  .progress-widget {
    padding: 18px 14px;
    border-radius: var(--radius-sm);
  }

  .progress-amount {
    font-size: 2.2rem;
  }

  .progress-meta {
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 6px;
  }

  .urgent-note-box {
    padding: 12px 14px;
    font-size: 0.84rem;
    margin-bottom: 18px;
  }

  /* Stewardship Breakdown */
  .stewardship-box {
    padding: 20px 14px;
    margin: 24px auto 32px auto;
    border-radius: var(--radius-md);
  }

  .stewardship-header h3 {
    font-size: 1.25rem;
  }

  .stewardship-header p {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  .stewardship-bar {
    height: 24px;
    margin-bottom: 20px;
  }

  .steward-segment {
    font-size: 0.72rem;
  }

  .stewardship-legend {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legend-item {
    padding: 12px 12px;
    gap: 10px;
  }

  .legend-item strong {
    font-size: 0.86rem;
  }

  .legend-item p {
    font-size: 0.78rem;
  }

  /* Impact Cards & Relief Pillars */
  .impact-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
  }

  .impact-metric-card {
    padding: 14px 14px;
  }

  .impact-metric-amount {
    font-size: 1.25rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .pillar-card {
    padding: 20px 16px;
  }

  .pillar-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  /* Donation Calculator */
  .donate-calculator {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .donate-calculator h3 {
    font-size: 1.45rem;
  }

  .tier-chips {
    gap: 8px;
    margin-bottom: 20px;
  }

  .tier-chip {
    padding: 10px 14px;
    font-size: 1.05rem;
    min-width: 58px;
    flex: 1 1 28%;
  }

  .tier-impact-display {
    padding: 14px 14px;
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  /* StoryBrand Elements */
  .sb7-problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .sb7-problem-card {
    padding: 20px 16px;
  }

  .sb7-plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .sb7-step-card {
    padding: 22px 16px;
  }

  .sb7-step-num {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .sb7-stakes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .sb7-stake-item {
    padding: 18px 14px;
  }

  .sb7-trans-box {
    padding: 22px 16px;
  }

  .sb7-transitional-bar {
    padding: 24px 16px;
    margin: 32px 0;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    border-radius: var(--radius-md);
  }

  .sb7-transitional-content {
    min-width: 0;
  }

  .sb7-transitional-bar h3 {
    font-size: 1.25rem;
  }

  .sb7-transitional-bar p {
    font-size: 0.92rem;
  }

  .sb7-transitional-btn {
    white-space: normal;
    width: 100%;
    padding: 14px 16px;
    font-size: 0.92rem;
    line-height: 1.35;
    text-align: center;
    word-break: break-word;
  }

  /* Relief Timeline */
  .timeline-container {
    margin-top: 32px;
  }

  .timeline-container::before {
    left: 14px;
  }

  .timeline-dot {
    left: 0;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .timeline-item {
    padding-left: 42px;
    margin-bottom: 22px;
  }

  .timeline-card {
    padding: 18px 14px;
  }

  .timeline-card h4 {
    font-size: 1.05rem;
  }

  .timeline-card p {
    font-size: 0.88rem;
  }

  /* About Pastor Víctor */
  .pastor-photo-caption {
    padding: 20px 14px 12px 14px;
  }

  .about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .about-text p {
    font-size: 0.96rem;
  }

  .quote-box {
    padding: 14px 16px;
    margin-top: 18px;
  }

  .quote-box blockquote {
    font-size: 1rem;
  }

  /* Seminary & Ministries */
  .seminary-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .seminary-card {
    padding: 22px 16px;
  }

  .ministries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ministry-card {
    padding: 22px 16px;
  }

  /* Location & Neighborhoods */
  .location-grid {
    padding: 20px 14px;
    gap: 20px;
    border-radius: var(--radius-md);
  }

  .location-address {
    font-size: 0.96rem;
    padding-left: 14px;
  }

  .schedule-card {
    padding: 20px 14px;
  }

  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
  }

  .neighborhoods-box {
    padding: 18px 14px;
    margin-top: 24px;
    border-radius: var(--radius-md);
  }

  .neighborhood-tags {
    gap: 6px;
  }

  .n-tag {
    padding: 4px 9px;
    font-size: 0.76rem;
  }

  /* Church Sponsorship */
  .sponsorship-section {
    margin-bottom: 36px;
  }

  .sponsorship-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sponsor-card {
    padding: 24px 16px;
  }

  .sponsor-tier-price {
    font-size: 1.95rem;
  }

  /* Giving Section */
  .giving-box {
    padding: 20px 14px;
    border-radius: var(--radius-md);
  }

  .giving-channel-grid {
    gap: 16px;
    margin-top: 18px;
  }

  .channel-card {
    padding: 18px 14px;
  }

  .btn-copy-check {
    width: 100% !important;
    white-space: normal;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .contact-daughter-banner {
    padding: 16px 14px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .contact-daughter-banner .btn {
    width: 100%;
  }

  /* Contact Form & Info */
  .contact-form-card {
    padding: 20px 14px;
    border-radius: var(--radius-md);
  }

  .contact-info-card {
    padding: 16px 14px;
  }

  /* Prevent iOS Safari input focus auto-zoom */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  /* FAQ Accordion */
  .faq-grid {
    margin-top: 28px;
    gap: 12px;
  }

  .faq-question {
    padding: 16px 14px;
    font-size: 0.98rem;
    gap: 10px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .faq-answer {
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 14px 16px 14px;
  }

  /* Modals */
  .modal-overlay {
    padding: 12px;
  }

  .modal-box {
    padding: 24px 16px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }

  .prayer-modal-box {
    padding: 24px 16px;
  }

  .modal-close-btn {
    top: 10px;
    right: 10px;
    font-size: 26px;
    width: 34px;
    height: 34px;
  }

  .prayer-point-card {
    gap: 12px;
    padding: 12px 12px;
  }

  .prayer-point-num {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .modal-btn-row {
    flex-direction: column;
    gap: 10px;
  }

  .modal-btn-row .btn {
    width: 100%;
    flex: 1 1 100%;
  }

  /* Sticky Rebuilding Pill */
  .sticky-rebuild-pill {
    right: 8px;
    left: 8px;
    bottom: 12px;
    padding: 8px 10px;
    gap: 6px;
  }

  .sticky-pill-title {
    font-size: 0.68rem;
  }

  .sticky-pill-sub {
    font-size: 0.64rem;
  }

  .sticky-pill-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .sticky-pill-close {
    font-size: 0.95rem;
    padding: 2px 4px;
  }

  /* Toast */
  .toast-notification {
    width: 90%;
    max-width: 360px;
    font-size: 0.82rem;
    padding: 10px 16px;
    text-align: center;
    justify-content: center;
  }

  /* Footer */
  .site-footer {
    padding: 44px 0 20px 0;
  }

  .footer-grid {
    gap: 24px;
    margin-bottom: 28px;
  }

  .scripture-banner {
    padding: 14px 12px;
    font-size: 0.84rem;
    margin-bottom: 24px;
  }
}

/* --------------------------------------------------------------------------
   Small Mobile Screens (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .btn {
    font-size: 0.88rem;
    padding: 11px 14px;
  }

  .nav-container {
    padding: 0 10px;
    gap: 8px;
  }

  .brand-name {
    font-size: 0.86rem;
    max-width: 145px;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 0.68rem;
  }

  .hero-stats {
    gap: 12px 8px;
  }

  .stat-item h3 {
    font-size: 1.65rem;
  }

  .stat-item p {
    font-size: 0.74rem;
  }

  .progress-amount {
    font-size: 1.95rem;
  }

  .tier-chips {
    gap: 6px;
  }

  .tier-chip {
    padding: 8px 10px;
    font-size: 0.95rem;
    min-width: 48px;
    flex: 1 1 40%;
  }

  .steward-segment {
    font-size: 0.68rem;
    letter-spacing: 0;
  }
}

/* --------------------------------------------------------------------------
   Extra Small / Compact Mobile Screens (max-width: 360px)
   -------------------------------------------------------------------------- */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-name {
    font-size: 0.82rem;
    max-width: 125px;
  }

  .lang-btn span {
    display: none;
  }

  .stewardship-bar {
    height: 20px;
  }

  .steward-segment {
    font-size: 0.62rem;
  }
}





