/* index.css */
/* Visual Style: Midnight Sacred Luxury (Charcoal/Midnight, Gold Accents, Sky-Blue highlights, Cream trims) */

:root {
  --bg-color: #07070a;
  --panel-color: #12131e;
  --text-color: #f7f9fa;
  --text-dim: #a0aec0;
  
  /* Color Palette (Luxury Sacred) */
  --gold-primary: #D4AF37;
  --gold-glow: rgba(212, 175, 55, 0.45);
  --gold-dim: rgba(212, 175, 55, 0.1);
  --sky-blue: #63B3ED;
  --sky-glow: rgba(99, 179, 237, 0.35);
  --crimson: #9B2C2C;
  --crimson-glow: rgba(155, 44, 44, 0.45);

  --font-serif: 'Cinzel', serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  
  --transition-speed: 0.35s;
  --radius: 12px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(99, 179, 237, 0.04) 0%, transparent 40%);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

p {
  color: var(--text-dim);
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 115px;
}

/* Top Sliding Glory Ticker (Seamless Infinite Marquee) */
.top-glory-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background: linear-gradient(90deg, #050508 0%, #12131e 50%, #050508 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  overflow: hidden;
  z-index: 101;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerSlide 26s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-item span {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
  padding: 0 18px;
}

.ticker-item .ticker-crown {
  color: var(--gold-primary);
  font-size: 0.78rem;
  padding: 0 10px;
  filter: drop-shadow(0 0 6px var(--gold-glow));
  vertical-align: middle;
}

@keyframes tickerSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo .logo-cross {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 0 0 12px var(--gold-glow);
  line-height: 1;
  display: inline-block;
  transform: translateY(-2px);
}

.header-logo .logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-primary);
  letter-spacing: 2px;
}

.main-nav {
  /* A flex sibling of the logo (not absolutely centered on the whole header) — that old
     approach centered the nav against the header's full width with no awareness of the
     logo's own width, so on anything narrower than a very wide desktop the nav's first
     link could render directly on top of the logo. This way it only ever occupies the
     space actually left over after the logo, and shrinks instead of overlapping. */
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.6vw, 18px);
}

.main-nav a {
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all var(--transition-speed);
  padding: 6px clamp(6px, 1vw, 12px);
  border-radius: 4px;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.02);
}

.btn-prayer-link {
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary) !important;
  box-shadow: 0 0 10px var(--gold-dim);
}

.btn-prayer-link:hover {
  background: var(--gold-primary) !important;
  color: #000000 !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 104px;
  left: 0;
  width: 100%;
  background: var(--panel-color);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 25px 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  z-index: 99;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-link {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-link:hover {
  color: var(--gold-primary);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  height: 100dvh;
  min-height: 500px;
  background: linear-gradient(rgba(7, 7, 10, 0.75), rgba(7, 7, 10, 0.95)), url('assets/cover.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  padding-top: 104px;
  position: relative;
}

.hero-container {
  max-width: 800px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--gold-primary);
  font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--crimson);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--crimson-glow);
}

.btn-primary:hover {
  background: #a83232;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--crimson-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-primary);
  color: #000000;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
  background: #e2c04d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

/* General Layout Elements */
section {
  padding: 80px 0;
}

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

.section-heading {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

.heading-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  width: 150px;
  margin-bottom: 40px;
}

.heading-divider.center {
  margin: 0 auto 40px auto;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Author Testimony Section */
.testimony-section {
  background-color: #0a0a0f;
}

.testimony-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.testimony-photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-frame {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--gold-primary), var(--sky-blue));
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 30px var(--gold-dim);
  overflow: hidden;
}

.author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: contrast(1.05) brightness(0.95);
}

.author-badge {
  margin-top: 20px;
  text-align: center;
}

.badge-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.badge-sub {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.testimony-para {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-dim);
}

.testimony-para.highlight {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: #ffffff;
  border-left: 3px solid var(--gold-primary);
  padding-left: 15px;
  margin-bottom: 2rem;
}

.book-title-highlight {
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px var(--gold-dim);
}

/* ==========================================================================
   Spiritual Roadmap Section (Judaism -> Islam -> Christianity)
   ========================================================================== */
.roadmap-section {
  background-color: #080910;
  border-top: 1px solid rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Stepper Track */
.roadmap-stepper-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 19, 30, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 99px;
  padding: 8px 18px 8px 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-speed);
}

.stepper-step:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-dim);
}

.stepper-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.stepper-circle.gold-pulse {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 20px var(--gold-glow);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px var(--gold-glow); }
  50% { box-shadow: 0 0 28px rgba(212, 175, 55, 0.75); }
}

.stepper-meta {
  display: flex;
  flex-direction: column;
}

.stepper-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.stepper-num.gold-glow-text {
  color: var(--gold-primary);
  text-shadow: 0 0 8px var(--gold-glow);
}

.stepper-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.stepper-divider {
  color: var(--gold-primary);
  opacity: 0.45;
  font-size: 1.1rem;
}

/* Roadmap Grid */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.roadmap-card {
  background: rgba(18, 19, 30, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7), 0 0 25px rgba(212, 175, 55, 0.12);
}

.roadmap-card.card-christianity.featured-card {
  border: 1.5px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(26, 22, 16, 0.92) 0%, rgba(18, 19, 30, 0.92) 100%);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7), 0 0 35px rgba(212, 175, 55, 0.18);
}

.card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.card-phase-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 4px 12px;
  border-radius: 99px;
}

.card-phase-pill.gold-pill {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
  font-weight: 800;
  box-shadow: 0 0 12px var(--gold-glow);
}

.card-icon-emblem {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.card-icon-emblem.gold-emblem {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.roadmap-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.roadmap-geo-tag {
  font-size: 0.8rem;
  color: var(--sky-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-christianity .roadmap-geo-tag {
  color: var(--gold-primary);
}

.roadmap-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roadmap-item .item-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.roadmap-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.roadmap-verdict-box {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-left: 3px solid #e53e3e;
}

.roadmap-verdict-box.victory-box {
  border-left: 3px solid var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
}

.verdict-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fc8181;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.victory-box .verdict-title {
  color: var(--gold-primary);
}

.roadmap-verdict-box p {
  font-size: 0.85rem;
  font-style: italic;
  color: #e2e8f0;
  line-height: 1.5;
}

/* Roadmap Bottom Banner */
.roadmap-banner {
  background: linear-gradient(135deg, rgba(26, 22, 14, 0.95) 0%, rgba(12, 13, 20, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  flex-wrap: wrap;
}

.banner-icon-side {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--gold-dim);
}

.banner-text-side {
  flex-grow: 1;
  max-width: 680px;
}

.banner-text-side h4 {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.banner-text-side p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.banner-action-side .btn {
  white-space: nowrap;
}

/* Book Section */
.book-section {
  background-color: #07070a;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.book-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.book-cover-container {
  display: flex;
  justify-content: center;
}

.book-cover {
  max-width: 320px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.7), 0 0 40px var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: transform var(--transition-speed);
}

.book-cover:hover {
  transform: translateY(-5px) scale(1.02);
}

.book-details h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.book-description {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.book-features {
  list-style: none;
  margin-bottom: 2rem;
}

.book-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-color);
}

.book-features li i {
  color: var(--gold-primary);
}

.book-price-box {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-mono);
}

.book-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-buy {
  background: linear-gradient(135deg, var(--gold-primary), #B59325);
  color: #000000;
  flex: 1 1 220px;
  padding: 14px 30px;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 25px var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-buy:hover {
  background: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.book-cta-row .btn-secondary {
  flex: 1 1 220px;
  padding: 14px 30px;
  border-radius: 99px;
  font-size: 1rem;
}

.secure-checkout-hint {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 10px;
}

/* ==========================================================================
   Sample Page from the Book Section
   ========================================================================== */
.sample-section {
  background-color: #06060a;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.sample-teaser-card {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  background: var(--panel-color);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.sample-teaser-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  font-size: 1.6rem;
}

.sample-teaser-text {
  flex: 1 1 320px;
}

.sample-teaser-text .excerpt-volume-tag {
  display: block;
}

.sample-teaser-text h3 {
  font-family: 'Cormorant Garamond', var(--font-serif), serif;
  font-size: 1.5rem;
  margin: 4px 0 8px;
}

.sample-teaser-text p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.sample-teaser-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .sample-teaser-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
  }
  .sample-teaser-btn {
    width: 100%;
  }
}

.sample-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.sample-tab-btn {
  background: rgba(18, 19, 30, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-dim);
  padding: 11px 22px;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sample-tab-btn i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.sample-tab-btn:hover {
  border-color: var(--gold-primary);
  color: #ffffff;
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.sample-tab-btn.active {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 18px var(--gold-glow);
  font-weight: 700;
}

.sample-tab-btn.active i {
  color: #000000;
}

/* Book Reader Frame */
.book-reader-frame {
  max-width: 880px;
  margin: 0 auto;
  background: #0d0e17;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.08);
}

.reader-top-bar {
  background: rgba(7, 7, 10, 0.85);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reader-meta-title {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reader-font-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.font-ctrl-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.font-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.2s;
}

.font-btn:hover {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Parchment Sheet */
.parchment-sheet {
  padding: 50px 55px;
  background: 
    radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(99, 179, 237, 0.03) 0%, transparent 50%),
    #0d0e17;
  min-height: 480px;
  position: relative;
}

.excerpt-panel {
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.excerpt-panel.active {
  display: block;
}

.excerpt-heading-block {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.excerpt-volume-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  opacity: 0.85;
  margin-bottom: 8px;
}

.excerpt-chapter-label {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-dim);
  display: block;
}

.excerpt-chapter-title {
  font-family: 'Cormorant Garamond', var(--font-serif), serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 6px 0 12px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.excerpt-sacred-divider {
  color: var(--gold-primary);
  font-size: 0.95rem;
  letter-spacing: 6px;
  opacity: 0.75;
}

/* Excerpt Body Typography */
.excerpt-body-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.85;
  color: #e2e8f0;
  transition: font-size 0.2s ease;
}

.book-paragraph {
  margin-bottom: 1.4rem;
  text-align: justify;
  text-indent: 1.6em;
}

.drop-cap-para {
  text-indent: 0;
}

.drop-cap-para::first-letter {
  float: left;
  font-size: 3.6rem;
  line-height: 0.82;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold-primary);
  padding-right: 14px;
  padding-top: 5px;
  text-shadow: 0 0 12px var(--gold-glow);
}

.book-scripture-quote {
  margin: 28px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  font-style: italic;
  color: #f7fafc;
  border-radius: 0 8px 8px 0;
  line-height: 1.75;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.key-revelation {
  text-indent: 0;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 18px 22px;
  color: #ffffff;
  margin-top: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.key-revelation strong {
  color: var(--gold-primary);
  font-weight: 700;
  text-shadow: 0 0 8px var(--gold-dim);
}

/* Reader Bottom Nav */
.reader-bottom-nav {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.reader-nav-btns {
  display: flex;
  gap: 10px;
}

.btn-excerpt-flip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-primary);
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-excerpt-flip:hover {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}

.reader-page-indicator {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.reader-page-indicator em {
  color: var(--gold-primary);
  font-style: normal;
}

/* Sample Bottom CTA */
.sample-bottom-cta {
  background: rgba(7, 7, 10, 0.85);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-info h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.cta-info p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.cta-btn-wrap .btn {
  white-space: nowrap;
}

/* Chatbot Section */
.chatbot-section {
  background-color: #0a0a0f;
}

.chat-container {
  max-width: 750px;
  margin: 40px auto 0 auto;
  background: var(--panel-color);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  height: 550px;
}

.chat-header {
  background: rgba(7, 7, 10, 0.6);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chat-header-info h4 {
  font-size: 0.95rem;
}

.status-online {
  font-size: 0.75rem;
  color: #48BB78;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-online .dot {
  width: 6px;
  height: 6px;
  background-color: #48BB78;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.chat-header-shortcuts {
  display: flex;
  gap: 6px;
}

.shortcut-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.shortcut-tag:hover {
  background: var(--gold-dim);
  border-color: var(--gold-primary);
}

.chat-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.015) 0%, transparent 100%);
}

.message {
  display: flex;
  flex-direction: column;
  max-width: 80%;
}

.message-bubble {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line;
}

.bot-message {
  align-self: flex-start;
}

.bot-message .message-bubble {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top-left-radius: 2px;
  color: #e2e8f0;
}

.user-message {
  align-self: flex-end;
}

.user-message .message-bubble {
  background: var(--gold-primary);
  color: #000000;
  border-top-right-radius: 2px;
  font-weight: 500;
}

.message-time {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 4px;
  padding: 0 4px;
}

.user-message .message-time {
  text-align: right;
}

.chat-input-area {
  padding: 15px 20px;
  background: rgba(7, 7, 10, 0.4);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
}

.chat-input-area input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 12px 20px;
  color: #ffffff;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-speed);
}

.chat-input-area input:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px var(--gold-dim);
}

.btn-send {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px var(--gold-dim);
}

.btn-send:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px var(--gold-glow);
}

/* Form Styles (Submit testimonies & prayers) */
.glass-card {
  background: var(--panel-color);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.max-width-600 {
  max-width: 600px;
  margin: 0 auto;
}

.card-hint {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.5;
}

.site-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
}

.site-form input, .site-form textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 6px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-speed);
}

.site-form input:focus, .site-form textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.04);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.btn-submit, .btn-submit-prayer {
  background: var(--gold-primary);
  color: #000000;
  padding: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: all var(--transition-speed);
}

.btn-submit:hover, .btn-submit-prayer:hover {
  background: #fff;
}

.form-status {
  margin-top: 15px;
  font-size: 0.85rem;
  text-align: center;
  min-height: 20px;
}

.form-status.success {
  color: #48BB78;
}

.form-status.error {
  color: #F56565;
}

/* Testimonies list layout */
.testimonies-section {
  background-color: #07070a;
}

.testimonies-layout {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 50px;
  margin-top: 40px;
}

.subsection-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--gold-primary);
}

.testimonies-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 10px;
}

.testimony-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--gold-primary);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimony-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.testimony-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.testimony-body {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.5;
  white-space: pre-wrap;
}

/* Donations & Giving Section */
.donations-section {
  background-color: #0a0a0f;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 45px;
}

.donation-card {
  background: var(--panel-color);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donation-card.stripe-card {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px var(--gold-dim);
}

.card-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.donation-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.donation-card p {
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.donation-amount-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
  width: 100%;
}

.amount-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-speed);
}

.amount-btn.active, .amount-btn:hover {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
}

.custom-amount-input {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0 8px;
  max-width: 100px;
}

.custom-amount-input span {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.custom-amount-input input {
  background: transparent;
  border: none;
  color: #ffffff;
  width: 100%;
  padding: 6px;
  font-size: 0.85rem;
  outline: none;
  text-align: center;
}

.btn-donate {
  background: var(--gold-primary);
  color: #000000;
  padding: 10px 25px;
  font-weight: 700;
  width: 100%;
  margin-top: auto;
}

.btn-donate:hover {
  background: #ffffff;
}

.btn-paypal {
  background: #003087;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 99px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(0, 48, 135, 0.4);
  transition: all var(--transition-speed);
}

.btn-paypal:hover {
  background: #00457C;
  transform: translateY(-2px);
}

.bank-details-box {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 6px;
  text-align: left;
  font-size: 0.8rem;
}

.bank-line {
  margin-bottom: 6px;
  color: var(--text-dim);
}

.bank-line strong {
  color: var(--gold-primary);
}

/* Prayer Section */
.prayer-section {
  background-color: #07070a;
}

.prayer-card-container {
  margin-top: 40px;
}

/* Footer Section */
.site-footer {
  background-color: #040406;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 50px 20px;
  text-align: center;
}

.site-footer .footer-glory {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.site-footer .copyright {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.site-footer .citation {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--gold-primary);
  font-style: italic;
}

/* Loading Spinners */
.loading-spinner {
  text-align: center;
  color: var(--gold-primary);
  font-size: 0.95rem;
  padding: 30px;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Responsiveness overrides */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

@media (max-width: 900px) {
  .testimony-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .roadmap-banner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .banner-icon-side {
    margin: 0 auto;
  }
  .banner-text-side {
    max-width: 100%;
  }
  .parchment-sheet {
    padding: 35px 25px;
  }
  .book-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonies-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .donation-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .top-glory-banner {
    height: 30px;
  }
  .ticker-item span {
    font-size: 0.72rem;
    letter-spacing: 2px;
    padding: 0 12px;
  }
  .ticker-item .ticker-crown {
    font-size: 0.65rem;
    padding: 0 6px;
  }
  .main-header {
    top: 30px;
    padding: 0 15px;
  }
  .header-logo {
    gap: 7px;
  }
  .header-logo .logo-cross {
    font-size: 1.3rem;
  }
  .header-logo .logo-text {
    font-size: 1.3rem;
  }
  .mobile-nav-overlay {
    top: 100px;
  }
  .hero-section {
    padding-top: 100px;
  }
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .section-heading {
    font-size: 1.8rem;
  }
  .photo-frame {
    width: 240px;
    height: 240px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .roadmap-stepper-track {
    gap: 8px;
  }
  .stepper-step {
    padding: 6px 14px 6px 8px;
    width: 100%;
    justify-content: flex-start;
  }
  .stepper-divider {
    display: none;
  }
  .sample-tab-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 10px 15px;
  }
  .reader-top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 12px 16px;
  }
  .excerpt-chapter-title {
    font-size: 1.75rem;
  }
  .excerpt-body-text {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .book-paragraph {
    text-indent: 0;
    text-align: left;
  }
  .drop-cap-para::first-letter {
    font-size: 2.8rem;
    padding-right: 10px;
  }
  .reader-bottom-nav {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .reader-nav-btns {
    width: 100%;
    justify-content: space-between;
  }
  .sample-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
  }
  .sample-bottom-cta .btn {
    width: 100%;
  }
}
