/* ==========================================================================
   SITE VOYANCE DU BÉNIN - COMPOSANTS SPÉCIFIQUES & INTERACTIFS
   ========================================================================== */

/* 1. TOP LIVE ALERT BAR */
.top-live-bar {
  background: linear-gradient(90deg, #1c0507 0%, #2e090e 30%, #151a24 70%, #120507 100%);
  border-bottom: 1px solid rgba(229, 179, 56, 0.25);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.pulse-dot-green {
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
  display: inline-block;
}

.live-ticker {
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-label {
  background: rgba(229, 179, 56, 0.2);
  color: var(--gold-light);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-gold);
}

.ticker-text {
  animation: tickerSlide 25s linear infinite;
  display: inline-block;
  color: var(--text-muted);
}

.ticker-text strong {
  color: var(--gold-light);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.top-bar-contact a {
  color: var(--gold-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.top-bar-contact a:hover {
  color: #ffffff;
}

/* 2. NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(5, 7, 10, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: radial-gradient(circle, #2a2010 0%, #0d0f14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(229, 179, 56, 0.4);
  position: relative;
}

.nav-logo-emblem svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-primary);
}

.nav-title-group h1 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

.nav-title-group span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  background: rgba(229, 179, 56, 0.08);
  transition: all 0.2s;
}

.btn-nav-call:hover {
  background: rgba(229, 179, 56, 0.2);
  color: #fff;
  border-color: var(--gold-pure);
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--gold-light);
  background: none;
  border: none;
}

/* 3. HERO SECTION */
.hero-section {
  position: relative;
  padding: 70px 0 100px 0;
  overflow: hidden;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge-sacred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 179, 56, 0.12);
  border: 1px solid var(--border-gold-bright);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-emergency {
  background: rgba(196, 39, 48, 0.15);
  border: 1px solid rgba(196, 39, 48, 0.6);
  color: #fca5a5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-emergency span {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: redPulseDot 1.6s infinite;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 34px;
  font-weight: 300;
}

.hero-description strong {
  color: var(--text-white);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(229, 179, 56, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.guarantee-text strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.88rem;
}

/* Hero Portrait Frame */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.master-photo-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(229, 179, 56, 0.3);
  border: 2px solid var(--border-gold-bright);
}

.master-photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.92) 0%, rgba(5, 7, 10, 0.2) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.master-photo-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.master-photo-card:hover img {
  transform: scale(1.04);
}

.master-photo-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  text-align: center;
}

.master-photo-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.master-photo-title {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.master-phone-badge:hover {
  border-color: var(--gold-light) !important;
  background: rgba(229, 179, 56, 0.25) !important;
  transform: translateY(-2px);
  color: var(--gold-light) !important;
}

.hero-floating-tag {
  position: absolute;
  top: 30px;
  right: -15px;
  background: rgba(10, 13, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: floatElement 4s ease-in-out infinite;
  z-index: 3;
}

.hero-floating-tag .tag-icon {
  font-size: 1.6rem;
  color: var(--gold-primary);
}

.hero-floating-tag .tag-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold-light);
}

.hero-floating-tag .tag-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-floating-stars {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(10, 13, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: floatElement 4.5s ease-in-out infinite reverse;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-floating-stars .stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.hero-floating-stars .star-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.hero-floating-stars .star-text strong {
  color: #fff;
  display: block;
}

/* 4. STATS & AUTHORITY BAR */
.stats-section {
  padding: 30px 0;
  background: rgba(13, 18, 28, 0.95);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

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

.stat-item {
  padding: 15px 10px;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  text-shadow: 0 0 20px rgba(229, 179, 56, 0.3);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Press & Accreditation Bar */
.accreditation-banner {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.accreditation-title {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.accreditation-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.accreditation-logos img {
  height: 38px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(40%) contrast(120%);
  transition: all 0.3s;
  border-radius: 4px;
}

.accreditation-logos img:hover {
  opacity: 1;
  filter: grayscale(0%) contrast(100%);
  transform: translateY(-2px);
}

/* 5. INTERACTIVE ORACLE DU FÂ (CAURIS) */
.oracle-section {
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(229, 179, 56, 0.06) 0%, transparent 60%);
}

.oracle-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.oracle-intro-card {
  padding: 36px;
}

.oracle-question-selector {
  margin: 24px 0;
}

.oracle-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.theme-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.theme-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s;
  text-align: left;
}

.theme-btn .theme-icon {
  font-size: 1.25rem;
}

.theme-btn:hover, .theme-btn.active {
  background: rgba(229, 179, 56, 0.15);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 179, 56, 0.2);
}

.theme-btn.active {
  border-width: 2px;
  font-weight: 600;
}

/* Divination Board Mat */
.oracle-mat-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oracle-mat {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a140b 0%, #101217 65%, #080a0f 100%);
  border: 8px double var(--gold-dark);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.85), inset 0 0 40px rgba(229, 179, 56, 0.25), 0 0 35px rgba(229, 179, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
}

.mat-sacred-symbol {
  position: absolute;
  width: 280px;
  height: 280px;
  opacity: 0.18;
  pointer-events: none;
  animation: spinSlow 90s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cauris-arena {
  position: relative;
  width: 100%;
  height: 100%;
}

.cauri-shell {
  position: absolute;
  width: 46px;
  height: 64px;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.7));
}

.cauri-shell svg {
  width: 100%;
  height: 100%;
}

.cauris-shaking .cauri-shell {
  animation: cauriRattle 0.15s infinite;
}

@keyframes cauriRattle {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-5px, 6px) rotate(12deg); }
  50% { transform: translate(6px, -4px) rotate(-14deg); }
  75% { transform: translate(-4px, -6px) rotate(10deg); }
  100% { transform: translate(4px, 5px) rotate(-8deg); }
}

/* Oracle Result Modal Card */
.oracle-result-box {
  margin-top: 25px;
  background: linear-gradient(135deg, rgba(26, 34, 52, 0.95) 0%, rgba(13, 18, 28, 0.98) 100%);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(229, 179, 56, 0.15);
  display: none;
  animation: fadeInUp 0.4s ease;
}

.oracle-result-box.show {
  display: block;
}

.result-signe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
}

.signe-fa-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  font-weight: 700;
}

.signe-fa-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.result-reading-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.result-cta-btn {
  width: 100%;
}

/* 6. DIAGNOSTIC SPIRITUEL RAPIDE */
.diagnostic-wizard {
  max-width: 820px;
  margin: 0 auto;
}

.wizard-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  position: relative;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-subtle);
  transform: translateY(-50%);
  z-index: 1;
}

.wizard-progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--gold-primary);
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--gold-primary);
}

.wizard-step-node {
  position: relative;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.wizard-step-node.active {
  border-color: var(--gold-primary);
  color: #fff;
  background: #251b0a;
  box-shadow: 0 0 18px rgba(229, 179, 56, 0.5);
}

.wizard-step-node.completed {
  background: var(--gold-primary);
  border-color: var(--gold-light);
  color: #000;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 25px 0;
}

.quiz-option-card {
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.quiz-option-card:hover {
  background: rgba(229, 179, 56, 0.1);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.quiz-option-card.selected {
  background: rgba(229, 179, 56, 0.18);
  border-color: var(--gold-pure);
  box-shadow: 0 0 20px rgba(229, 179, 56, 0.25);
}

.quiz-option-icon {
  font-size: 1.6rem;
  color: var(--gold-light);
}

.quiz-option-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #fff;
}

.quiz-option-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.prescription-box {
  background: linear-gradient(135deg, rgba(20, 26, 40, 0.95), rgba(11, 14, 22, 0.98));
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 35px rgba(229, 179, 56, 0.25);
}

.prescription-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.prescription-badge {
  background: var(--gradient-gold);
  color: #0b0e14;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* 7. CATALOGUE DES RITUELS */
.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}

.tab-filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
}

.tab-filter-btn:hover, .tab-filter-btn.active {
  background: var(--gold-muted);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(229, 179, 56, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-image {
  height: 200px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.service-timing {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(196, 39, 48, 0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #fff;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.service-features li span {
  color: var(--gold-light);
}

/* 8. COMMENT ÇA MARCHE (PROCESSUS) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, #2f220d 0%, #101520 100%);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(229, 179, 56, 0.35);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* 9. TÉMOIGNAGES AUDIO & AVIS CLIENTS */
.testimonials-section {
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.6) 0%, rgba(16, 22, 34, 0.8) 100%);
}

.audio-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 45px;
}

.audio-review-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(18, 25, 38, 0.8);
  border: 1px solid var(--border-gold);
}

.audio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.client-meta strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.client-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.audio-player-widget {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}

.audio-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.audio-play-btn:hover {
  transform: scale(1.08);
}

.audio-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-grow: 1;
  height: 26px;
}

.wave-bar {
  width: 3px;
  background: rgba(229, 179, 56, 0.4);
  border-radius: 2px;
  transition: height 0.2s;
}

.audio-player-widget.playing .wave-bar {
  background: var(--gold-primary);
  animation: soundWave 0.6s infinite alternate ease-in-out;
}

@keyframes soundWave {
  0% { height: 6px; }
  100% { height: 24px; }
}

.audio-duration {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: monospace;
}

.review-quote {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* 10. AUTHENTICITÉ & COUVENT DE OUIDAH */
.couvent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.couvent-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  height: 210px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.tall {
  grid-column: span 2;
  height: 240px;
}

/* 11. FAQ ACCORDION */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(16, 22, 34, 0.75);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.active {
  border-color: var(--gold-primary);
  background: rgba(22, 30, 48, 0.85);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: #fff;
  font-weight: 600;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(229, 179, 56, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px 24px;
}

/* 12. FLOATING WHATSAPP BUTTON & CHAT BUBBLE */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-chat-bubble {
  background: #111b21;
  border: 1px solid rgba(229, 179, 56, 0.4);
  border-radius: 16px 16px 4px 16px;
  padding: 14px 18px;
  max-width: 270px;
  margin-bottom: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.5s ease;
}

.chat-bubble-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.chat-bubble-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.chat-bubble-text p {
  font-size: 0.78rem;
  color: #e9edef;
  line-height: 1.3;
}

.floating-call-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #0b0e14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(229, 179, 56, 0.5);
  margin-bottom: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.floating-call-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(229, 179, 56, 0.75);
}

.btn-contact-pulse {
  animation: subtlePulse 3s infinite ease-in-out;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(229, 179, 56, 0.3); }
  50% { box-shadow: 0 0 25px rgba(229, 179, 56, 0.7); }
}

.floating-whatsapp-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 20px rgba(229, 179, 56, 0.4);
  position: relative;
  animation: pulseDot 2.5s infinite;
  transition: transform 0.25s;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-darkest);
}

/* 13. MODAL DE CONSULTATION */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: linear-gradient(135deg, #0d121c 0%, #151d2d 100%);
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  padding: 35px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(229, 179, 56, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.modal-close-btn:hover {
  background: var(--red-accent);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(5, 7, 10, 0.7);
  border: 1px solid var(--border-gold);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-light);
  outline: none;
  box-shadow: 0 0 10px rgba(229, 179, 56, 0.3);
}

/* 14. FOOTER */
.site-footer {
  background: #040609;
  border-top: 1px solid var(--border-gold);
  padding: 70px 0 30px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

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

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

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item span {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

/* Animations simples */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge-container, .hero-actions, .guarantee-item {
    justify-content: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .oracle-container, .couvent-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid, .audio-reviews-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .top-live-bar .top-bar-contact {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
  .stats-grid, .services-grid, .audio-reviews-grid, .steps-grid, .quiz-options-grid, .theme-buttons-grid, .couvent-gallery, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-floating-tag, .hero-floating-stars {
    display: none;
  }
  .oracle-mat {
    height: 380px;
  }
}

/* ==========================================================================
   15. MODULE INTERACTIF : CALCULATEUR D'AFFINITÉ DU FÂ AMOUREUX
   ========================================================================== */
.love-calc-container {
  max-width: 860px;
  margin: 0 auto;
}

.love-calc-card {
  background: linear-gradient(135deg, rgba(20, 16, 26, 0.95), rgba(12, 14, 24, 0.98));
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 179, 56, 0.25);
  position: relative;
  overflow: hidden;
}

.love-calc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.love-calc-loader {
  display: none;
  text-align: center;
  padding: 50px 20px;
}

.love-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(229, 179, 56, 0.2);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  margin: 0 auto 20px auto;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.love-result-card {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.love-score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  border: 1px solid var(--border-gold);
}

.love-gauge-svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.gauge-val {
  fill: none;
  stroke: var(--gold-primary);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s ease;
}

.love-score-text {
  text-align: left;
}

.love-score-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.love-score-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.love-analysis-box {
  background: rgba(255, 255, 255, 0.02);
  border-left: 4px solid var(--gold-primary);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.love-analysis-box strong {
  color: #fff;
}

/* ==========================================================================
   16. STYLES POUR PAGES DÉDIÉES (RETOUR AFFECTIF, DÉSENVOÛTEMENT)
   ========================================================================== */
.page-hero {
  padding: 130px 0 70px 0;
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(35, 24, 12, 0.8) 0%, rgba(5, 7, 10, 0.98) 80%);
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--gold-light);
}

.page-hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 179, 56, 0.35);
}

.page-hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.ritual-timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  position: relative;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 55px;
  bottom: -35px;
  width: 2px;
  background: var(--border-gold);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #181d2a;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(229, 179, 56, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: rgba(18, 24, 36, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px;
  flex-grow: 1;
}

.timeline-content h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ingredient-card {
  background: rgba(14, 18, 28, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: 0 10px 25px rgba(229, 179, 56, 0.2);
}

.ingredient-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.ingredient-card h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ingredient-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.ritual-cta-banner {
  background: linear-gradient(135deg, rgba(35, 24, 10, 0.95), rgba(15, 18, 28, 0.98));
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 179, 56, 0.3);
}

@media (max-width: 900px) {
  .page-hero-grid, .love-calc-form-grid, .ingredients-grid {
    grid-template-columns: 1fr;
  }
  .love-score-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .love-score-text {
    text-align: center;
  }
}

/* ==========================================================================
   17. MODULE DE DÉTECTION D'ENVOÛTEMENT & CHECKLIST SYMPTÔMES
   ========================================================================== */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.symptom-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  transition: all 0.25s;
}

.symptom-card:hover {
  background: rgba(229, 179, 56, 0.08);
  border-color: var(--border-gold);
}

.symptom-card.selected {
  background: rgba(196, 39, 48, 0.15);
  border-color: var(--red-accent);
  box-shadow: 0 0 20px rgba(196, 39, 48, 0.25);
}

.symptom-check-input {
  width: 22px;
  height: 22px;
  accent-color: var(--red-accent);
  cursor: pointer;
  margin-top: 3px;
  flex-shrink: 0;
}

.symptom-text h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.symptom-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.curse-alert-box {
  display: none;
  background: linear-gradient(135deg, rgba(30, 15, 20, 0.95), rgba(16, 20, 32, 0.98));
  border: 2px solid var(--red-accent);
  border-radius: 18px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 15px 40px rgba(196, 39, 48, 0.35);
}

@media (max-width: 768px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }
}


