@charset "UTF-8";
/* ══════════════════════════════════════════
   Miracle Bible Way Church of Christ
   Interactive Version — Track B Full CSS
   ══════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");
/* PageMotor Blank_Slate Overrides */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#page,
.page,
body > div,
body > section,
body > nav,
body > footer,
.focus #content,
#content {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  color: #2D2D2D;
  line-height: 1.6;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  color: #666666;
}

a {
  color: #6B4C9A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3D2066;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
}

strong {
  color: #2D2D2D;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background-color: #D4AF37;
  color: #1a1a1a;
}

.btn-gold:hover {
  background-color: #F0D875;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #6B4C9A;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #3D2066;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 76, 154, 0.4);
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] {
  transition-delay: 0.15s;
}

[data-animate][data-delay="2"] {
  transition-delay: 0.3s;
}

[data-animate][data-delay="3"] {
  transition-delay: 0.45s;
}

[data-animate][data-delay="4"] {
  transition-delay: 0.6s;
}

/* Navigation */
nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  padding: 0.75rem 0;
  border-bottom: 1px solid e0e0e0;
  box-shadow: 0 2px 8px rgba(15, 10, 26, 0.08);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6B4C9A;
  font-family: "Playfair Display", serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-cross {
  color: #D4AF37;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #2D2D2D;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
}

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

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2D2D2D;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0F0A1A 0%, #2A1548 40%, #3D2066 100%);
  color: #FFFFFF;
  padding: 10rem 0 7rem;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  animation: floatParticle var(--duration) linear infinite;
  animation-delay: var(--delay);
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: var(--max-opacity, 0.5);
  }
  90% {
    opacity: var(--max-opacity, 0.5);
  }
  100% {
    transform: translateY(-110vh) translateX(var(--drift, 30px));
    opacity: 0;
  }
}
.hero-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 320px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-cross::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 100%;
  background: white;
  border-radius: 4px;
}

.hero-cross::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  border-radius: 4px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 10, 26, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-welcome {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #D4AF37;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-divider {
  width: 0;
  height: 3px;
  background: #D4AF37;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  animation: expandLine 0.8s ease 0.6s forwards;
}

.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

/* Countdown */
.countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.4s forwards;
}

.countdown-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #D4AF37;
  margin-bottom: 0.75rem;
}

.countdown-timer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.countdown-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.countdown-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
/* Section Dividers */
.section-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Welcome */
.welcome {
  background-color: #FAF7F2;
  padding: 5rem 0;
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.welcome-content h2 {
  color: #6B4C9A;
}

.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(107, 76, 154, 0.06);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 10, 26, 0.2);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B4C9A 0%, #3D2066 100%);
  color: #D4AF37;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  color: #6B4C9A;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  margin-bottom: 0;
}

/* Stats Bar */
.stats {
  background: linear-gradient(135deg, #0F0A1A 0%, #2A1548 100%);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-size: 2rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

/* About */
.about {
  background-color: #FFFFFF;
  padding: 5rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  color: #6B4C9A;
}

.about-highlight {
  background: linear-gradient(135deg, #FAF7F2 0%, rgba(212, 175, 55, 0.08) 100%);
  border-left: 4px solid #D4AF37;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 1rem 1rem 0;
}

.about-highlight strong {
  color: #6B4C9A;
}

.about-highlight p {
  margin-bottom: 0;
}

/* Scripture */
.scripture {
  background: linear-gradient(160deg, #2A1548 0%, #3D2066 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scripture::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 20rem;
  color: rgba(212, 175, 55, 0.06);
  line-height: 1;
  pointer-events: none;
}

.scripture blockquote {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.verse-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.scripture cite {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #D4AF37;
}

/* Services (Tabs) */
.services {
  background-color: #FAF7F2;
  padding: 5rem 0;
}

.services h2 {
  color: #6B4C9A;
  text-align: center;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: #FFFFFF;
  border: 2px solid e0e0e0;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #6B4C9A;
  color: #6B4C9A;
}

.tab-btn.active {
  background: #6B4C9A;
  border-color: #6B4C9A;
  color: #FFFFFF;
}

.tab-icon {
  font-size: 1.2rem;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-detail {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
  text-align: center;
}

.schedule-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.schedule-badge {
  display: inline-block;
  background: #D4AF37;
  color: #1a1a1a;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schedule-badge.coming-soon {
  background: linear-gradient(135deg, #D4AF37 0%, #F0D875 100%);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(212, 175, 55, 0.3);
  }
}
.service-detail h3 {
  color: #6B4C9A;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-detail p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

.services-signup {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(15, 10, 26, 0.08);
}

.services-signup p {
  color: #2D2D2D;
  font-weight: 600;
  margin-bottom: 0;
}

/* Ministries */
.ministries {
  background-color: #FFFFFF;
  padding: 5rem 0;
}

.ministries h2 {
  color: #6B4C9A;
  text-align: center;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.ministry-box {
  background: #FAF7F2;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(107, 76, 154, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ministry-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6B4C9A 0%, #D4AF37 100%);
}

.ministry-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15, 10, 26, 0.2);
}

.ministry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B4C9A 0%, #3D2066 100%);
  color: #D4AF37;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ministry-box h3 {
  color: #6B4C9A;
  margin-bottom: 1rem;
}

.ministry-box ul {
  list-style: none;
  margin: 1.5rem 0;
}

.ministry-box ul li {
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: #666666;
}

.ministry-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D4AF37;
}

.ministry-recruit {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #6B4C9A;
}

.ministry-cta {
  margin-top: 1.5rem;
}

/* How It Works */
.how-it-works {
  background-color: #FAF7F2;
  padding: 5rem 0;
}

.how-it-works h2 {
  color: #6B4C9A;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6B4C9A 0%, #3D2066 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(107, 76, 154, 0.3);
}

.step h3 {
  color: #6B4C9A;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* Testimonies Carousel */
.testimonies {
  background: linear-gradient(160deg, #0F0A1A 0%, #2A1548 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.testimonies h2 {
  color: #FFFFFF;
  text-align: center;
}

.testimonies-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimony-card {
  min-width: 100%;
  padding: 0 1rem;
}

.testimony-inner {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

.testimony-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimony-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimony-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #F0D875 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #0F0A1A;
  font-size: 1.2rem;
}

.author-info strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
}

.author-info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: #D4AF37;
  width: 28px;
  border-radius: 5px;
}

/* Contact */
.contact {
  background-color: #FAF7F2;
  padding: 5rem 0;
}

.contact h2 {
  color: #6B4C9A;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(15, 10, 26, 0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card h4 {
  font-size: 1rem;
  color: #6B4C9A;
  margin-bottom: 0.5rem;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-card a {
  color: #6B4C9A;
  font-weight: 500;
}

.contact-form {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
}

.form-group {
  position: relative;
  margin-bottom: 1.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  padding-top: 1.5rem;
  border: 2px solid e0e0e0;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #2D2D2D;
  background: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group label {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  font-size: 1rem;
  color: #666666;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #FFFFFF;
  padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: #D4AF37;
  font-weight: 600;
}

.form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
}

.form-group.error .form-error {
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #6B4C9A 0%, #3D2066 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 76, 154, 0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #F0D875 100%);
  color: #0F0A1A;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.form-success h3 {
  color: #6B4C9A;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #0F0A1A;
  color: #FFFFFF;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: #D4AF37;
}

.footer-col a {
  color: #D4AF37;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6B4C9A;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: #D4AF37;
  color: #0F0A1A;
  transform: translateY(-3px);
}

/* Page Content (CMS) */
.page-content {
  padding: 5rem 0;
  background: #FFFFFF;
}

.page-content .container {
  max-width: 780px;
}

.page-content article {
  font-size: 1.05rem;
  line-height: 1.85;
}

.page-content article h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.page-content article h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
}

.page-content article a {
  color: #6B4C9A;
  border-bottom: 1px solid e0e0e0;
}

.page-content article a:hover {
  color: #3D2066;
  border-bottom-color: #3D2066;
}

.page-content article ul,
.page-content article ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.page-content article li {
  margin-bottom: 0.5rem;
  color: #666666;
}

.page-content article blockquote {
  border-left: 4px solid #D4AF37;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #FAF7F2;
  border-radius: 0 0.5rem 0.5rem 0;
}

.page-content article blockquote p {
  color: #2D2D2D;
  margin-bottom: 0;
}

/* Responsive */
@media all and (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media all and (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0F0A1A;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links a {
    color: #FFFFFF;
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover {
    color: #D4AF37;
  }
  .hamburger {
    display: block;
  }
  .hero {
    padding: 8rem 0 4rem;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-tagline {
    font-size: 1.15rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 80%;
    justify-content: center;
  }
  .countdown-timer {
    flex-direction: row;
    gap: 1rem;
  }
  .countdown-number {
    font-size: 1.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  section, .welcome, .about, .services, .ministries, .how-it-works, .testimonies, .contact {
    padding: 3.5rem 0;
  }
  .tab-buttons {
    gap: 0.4rem;
  }
  .tab-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
  .service-detail {
    padding: 2rem 1.5rem;
  }
  .verse-text {
    font-size: 1.4rem;
  }
  .scripture::before {
    font-size: 12rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col ul {
    padding: 0;
  }
  .section-divider svg {
    height: 35px;
  }
}
@media all and (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
}
/* Full-width section overrides */
.hero,
.welcome,
.stats,
.about,
.scripture,
.services,
.ministries,
.how-it-works,
.testimonies,
.contact,
.section-divider,
.site-footer,
footer {
  width: 100%;
  max-width: none;
  position: relative;
}

nav,
.site-nav {
  width: 100%;
  max-width: none;
}

/* Hero decorative elements — full section coverage */
.hero > .hero-particles,
.hero .hero-cross,
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/*---:[ Custom CSS ]:---*/
/* ══════════════════════════════════════════
   Miracle Bible Way Church of Christ
   Interactive Version — Track B Full CSS
   ══════════════════════════════════════════ */
/* PageMotor Blank_Slate Overrides */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#page,
.page,
body > div,
body > section,
body > nav,
body > footer,
.focus #content,
#content {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  color: #2D2D2D;
  line-height: 1.6;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  color: #666666;
}

a {
  color: #6B4C9A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3D2066;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
}

strong {
  color: #2D2D2D;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background-color: #D4AF37;
  color: #1a1a1a;
}

.btn-gold:hover {
  background-color: #F0D875;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #6B4C9A;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #3D2066;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 76, 154, 0.4);
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] {
  transition-delay: 0.15s;
}

[data-animate][data-delay="2"] {
  transition-delay: 0.3s;
}

[data-animate][data-delay="3"] {
  transition-delay: 0.45s;
}

[data-animate][data-delay="4"] {
  transition-delay: 0.6s;
}

/* Navigation */
nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  padding: 0.75rem 0;
  border-bottom: 1px solid e0e0e0;
  box-shadow: 0 2px 8px rgba(15, 10, 26, 0.08);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6B4C9A;
  font-family: "Playfair Display", serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-cross {
  color: #D4AF37;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #2D2D2D;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
}

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

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2D2D2D;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0F0A1A 0%, #2A1548 40%, #3D2066 100%);
  color: #FFFFFF;
  padding: 10rem 0 7rem;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  animation: floatParticle var(--duration) linear infinite;
  animation-delay: var(--delay);
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: var(--max-opacity, 0.5);
  }
  90% {
    opacity: var(--max-opacity, 0.5);
  }
  100% {
    transform: translateY(-110vh) translateX(var(--drift, 30px));
    opacity: 0;
  }
}
.hero-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 320px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-cross::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 100%;
  background: white;
  border-radius: 4px;
}

.hero-cross::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  border-radius: 4px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 10, 26, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-welcome {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #D4AF37;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-divider {
  width: 0;
  height: 3px;
  background: #D4AF37;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  animation: expandLine 0.8s ease 0.6s forwards;
}

.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

/* Countdown */
.countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.4s forwards;
}

.countdown-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #D4AF37;
  margin-bottom: 0.75rem;
}

.countdown-timer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.countdown-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.countdown-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
/* Section Dividers */
.section-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Welcome */
.welcome {
  background-color: #FAF7F2;
  padding: 5rem 0;
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.welcome-content h2 {
  color: #6B4C9A;
}

.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(107, 76, 154, 0.06);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 10, 26, 0.2);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B4C9A 0%, #3D2066 100%);
  color: #D4AF37;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  color: #6B4C9A;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  margin-bottom: 0;
}

/* Stats Bar */
.stats {
  background: linear-gradient(135deg, #0F0A1A 0%, #2A1548 100%);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-size: 2rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

/* About */
.about {
  background-color: #FFFFFF;
  padding: 5rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  color: #6B4C9A;
}

.about-highlight {
  background: linear-gradient(135deg, #FAF7F2 0%, rgba(212, 175, 55, 0.08) 100%);
  border-left: 4px solid #D4AF37;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 1rem 1rem 0;
}

.about-highlight strong {
  color: #6B4C9A;
}

.about-highlight p {
  margin-bottom: 0;
}

/* Scripture */
.scripture {
  background: linear-gradient(160deg, #2A1548 0%, #3D2066 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scripture::before {
  content: "201C";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 20rem;
  color: rgba(212, 175, 55, 0.06);
  line-height: 1;
  pointer-events: none;
}

.scripture blockquote {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.verse-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.scripture cite {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #D4AF37;
}

/* Services (Tabs) */
.services {
  background-color: #FAF7F2;
  padding: 5rem 0;
}

.services h2 {
  color: #6B4C9A;
  text-align: center;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: #FFFFFF;
  border: 2px solid e0e0e0;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #6B4C9A;
  color: #6B4C9A;
}

.tab-btn.active {
  background: #6B4C9A;
  border-color: #6B4C9A;
  color: #FFFFFF;
}

.tab-icon {
  font-size: 1.2rem;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-detail {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
  text-align: center;
}

.schedule-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.schedule-badge {
  display: inline-block;
  background: #D4AF37;
  color: #1a1a1a;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schedule-badge.coming-soon {
  background: linear-gradient(135deg, #D4AF37 0%, #F0D875 100%);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(212, 175, 55, 0.3);
  }
}
.service-detail h3 {
  color: #6B4C9A;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-detail p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

.services-signup {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(15, 10, 26, 0.08);
}

.services-signup p {
  color: #2D2D2D;
  font-weight: 600;
  margin-bottom: 0;
}

/* Ministries */
.ministries {
  background-color: #FFFFFF;
  padding: 5rem 0;
}

.ministries h2 {
  color: #6B4C9A;
  text-align: center;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.ministry-box {
  background: #FAF7F2;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(107, 76, 154, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ministry-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6B4C9A 0%, #D4AF37 100%);
}

.ministry-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15, 10, 26, 0.2);
}

.ministry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B4C9A 0%, #3D2066 100%);
  color: #D4AF37;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ministry-box h3 {
  color: #6B4C9A;
  margin-bottom: 1rem;
}

.ministry-box ul {
  list-style: none;
  margin: 1.5rem 0;
}

.ministry-box ul li {
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: #666666;
}

.ministry-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D4AF37;
}

.ministry-recruit {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #6B4C9A;
}

.ministry-cta {
  margin-top: 1.5rem;
}

/* How It Works */
.how-it-works {
  background-color: #FAF7F2;
  padding: 5rem 0;
}

.how-it-works h2 {
  color: #6B4C9A;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6B4C9A 0%, #3D2066 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(107, 76, 154, 0.3);
}

.step h3 {
  color: #6B4C9A;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* Testimonies Carousel */
.testimonies {
  background: linear-gradient(160deg, #0F0A1A 0%, #2A1548 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.testimonies h2 {
  color: #FFFFFF;
  text-align: center;
}

.testimonies-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimony-card {
  min-width: 100%;
  padding: 0 1rem;
}

.testimony-inner {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

.testimony-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimony-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimony-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #F0D875 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #0F0A1A;
  font-size: 1.2rem;
}

.author-info strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
}

.author-info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: #D4AF37;
  width: 28px;
  border-radius: 5px;
}

/* Contact */
.contact {
  background-color: #FAF7F2;
  padding: 5rem 0;
}

.contact h2 {
  color: #6B4C9A;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(15, 10, 26, 0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card h4 {
  font-size: 1rem;
  color: #6B4C9A;
  margin-bottom: 0.5rem;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-card a {
  color: #6B4C9A;
  font-weight: 500;
}

.contact-form {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
}

.form-group {
  position: relative;
  margin-bottom: 1.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  padding-top: 1.5rem;
  border: 2px solid e0e0e0;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #2D2D2D;
  background: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group label {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  font-size: 1rem;
  color: #666666;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #FFFFFF;
  padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: #D4AF37;
  font-weight: 600;
}

.form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
}

.form-group.error .form-error {
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #6B4C9A 0%, #3D2066 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 76, 154, 0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #F0D875 100%);
  color: #0F0A1A;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.form-success h3 {
  color: #6B4C9A;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #0F0A1A;
  color: #FFFFFF;
  padding: 5rem 0 2rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-top: 25px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: #D4AF37;
}

.footer-col a {
  color: #D4AF37;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6B4C9A;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(15, 10, 26, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: #D4AF37;
  color: #0F0A1A;
  transform: translateY(-3px);
}

/* Page Content (CMS) */
.page-content {
  padding: 5rem 0;
  background: #FFFFFF;
}

.page-content .container {
  max-width: 780px;
}

.page-content article {
  font-size: 1.05rem;
  line-height: 1.85;
}

.page-content article h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.page-content article h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
}

.page-content article a {
  color: #6B4C9A;
  border-bottom: 1px solid e0e0e0;
}

.page-content article a:hover {
  color: #3D2066;
  border-bottom-color: #3D2066;
}

.page-content article ul,
.page-content article ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.page-content article li {
  margin-bottom: 0.5rem;
  color: #666666;
}

.page-content article blockquote {
  border-left: 4px solid #D4AF37;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #FAF7F2;
  border-radius: 0 0.5rem 0.5rem 0;
}

.page-content article blockquote p {
  color: #2D2D2D;
  margin-bottom: 0;
}

/* Responsive */
@media all and (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media all and (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0F0A1A;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links a {
    color: #FFFFFF;
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover {
    color: #D4AF37;
  }
  .hamburger {
    display: block;
  }
  .hero {
    padding: 8rem 0 4rem;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-tagline {
    font-size: 1.15rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 80%;
    justify-content: center;
  }
  .countdown-timer {
    flex-direction: row;
    gap: 1rem;
  }
  .countdown-number {
    font-size: 1.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  section, .welcome, .about, .services, .ministries, .how-it-works, .testimonies, .contact {
    padding: 3.5rem 0;
  }
  .tab-buttons {
    gap: 0.4rem;
  }
  .tab-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
  .service-detail {
    padding: 2rem 1.5rem;
  }
  .verse-text {
    font-size: 1.4rem;
  }
  .scripture::before {
    font-size: 12rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col ul {
    padding: 0;
  }
  .section-divider svg {
    height: 35px;
  }
}
@media all and (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
}
/* Full-width section overrides */
.hero,
.welcome,
.stats,
.about,
.scripture,
.services,
.ministries,
.how-it-works,
.testimonies,
.contact,
.section-divider,
.site-footer,
footer {
  width: 100%;
  max-width: none;
  position: relative;
}

nav,
.site-nav {
  width: 100%;
  max-width: none;
}

/* Hero decorative elements — full section coverage */
.hero > .hero-particles,
.hero .hero-cross,
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}