/* ============================================
   CSS CUSTOM ANIMATIONS - Sabrina Olga Voyance
   Animations pour le bouton de prise de rendez-vous
   ============================================ */

/* Animation de pulse doux */
@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(137, 113, 91, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(137, 113, 91, 0);
  }
}

/* Animation de shimmer/brillance */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Animation de glow pulsant */
@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(137, 113, 91, 0.5),
      0 0 20px rgba(137, 113, 91, 0.3), 0 0 30px rgba(137, 113, 91, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(137, 113, 91, 0.8),
      0 0 30px rgba(137, 113, 91, 0.6), 0 0 40px rgba(137, 113, 91, 0.4),
      0 0 50px rgba(137, 113, 91, 0.2);
  }
}

/* Animation de float (flottement) */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Styles améliorés pour le bouton slider */
.slider-content .slider-btn {
  position: relative;
  display: inline-block;
  padding: 18px 45px !important;
  background: linear-gradient(135deg, #89715b 0%, #a68968 100%) !important;
  border: 2px solid #89715b;
  border-radius: 50px;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 700;
  font-family: "Zilla Slab", serif;
  text-transform: uppercase;
  text-decoration: none !important;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: pulse-soft 3s infinite, float 6s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(137, 113, 91, 0.4),
    0 0 20px rgba(137, 113, 91, 0.2);
}

/* Effet de brillance qui traverse le bouton */
.slider-content .slider-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s;
  animation: shimmer 4s infinite;
}

/* Icône décorative (étoile/cristal mystique) */
.slider-content .slider-btn::after {
  content: "✨";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Effet hover - Le bouton devient encore plus magique */
.slider-content .slider-btn:hover {
  background: linear-gradient(135deg, #a68968 0%, #c9a97a 100%) !important;
  border-color: #c9a97a;
  color: #fff !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(137, 113, 91, 0.6),
    0 0 40px rgba(137, 113, 91, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: glow-pulse 1.5s infinite;
}

.slider-content .slider-btn:hover::before {
  left: 100%;
}

.slider-content .slider-btn:hover::after {
  right: 15px;
  transform: translateY(-50%) rotate(180deg) scale(1.2);
}

/* Effet au clic/active */
.slider-content .slider-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 5px 15px rgba(137, 113, 91, 0.5);
}

/* Responsive - Ajustements pour mobiles */
@media only screen and (max-width: 767px) {
  .slider-content .slider-btn {
    padding: 15px 35px !important;
    font-size: 16px !important;
  }

  .slider-content .slider-btn::after {
    right: 15px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 575px) {
  .slider-content .slider-btn {
    padding: 12px 30px !important;
    font-size: 14px !important;
  }

  .slider-content .slider-btn::after {
    font-size: 12px;
    right: 12px;
  }
}

/* Animation d'apparition pour le slider actif */
.animation-style-01.swiper-slide-active .slider-content .slider-btn {
  animation: pulse-soft 3s infinite, float 6s ease-in-out infinite;
}

/* ============================================
   ANIMATIONS MYSTIQUES SUPPLÉMENTAIRES
   Pour renforcer l'ambiance du site de voyance
   ============================================ */

/* Animation de rotation douce pour les icônes */
@keyframes rotate-gentle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animation de scintillement pour les étoiles/cristaux */
@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* Animation de fade-in mystique avec lueur */
@keyframes mystical-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Animation de breathing (respiration) pour les éléments mystiques */
@keyframes breathing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

/* Appliquer l'animation de scintillement aux icônes des service-box */
.service-box .box-icon i {
  animation: sparkle 3s ease-in-out infinite;
}

/* Effet de lueur mystique au survol des service-box */
.service-box:hover {
  box-shadow: 0 10px 40px rgba(137, 113, 91, 0.3),
              0 0 30px rgba(137, 113, 91, 0.2);
  transform: translateY(-5px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Animation breathing pour les compteurs */
.counter-box {
  animation: breathing 4s ease-in-out infinite;
}

/* Effet de mystère sur les témoignages */
.single-testimonial {
  position: relative;
  transition: all 0.5s ease;
}

.single-testimonial:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(137, 113, 91, 0.25);
}

.single-testimonial i.icofont-quote-right {
  animation: rotate-gentle 20s linear infinite;
  opacity: 0.1;
}

/* Effet de particules mystiques pour les titres */
.section-title h2,
.section-title-2 h2 {
  position: relative;
  animation: mystical-fade-in 1s ease-out;
}

/* Ajouter une lueur subtile aux titres principaux */
.about-content .title,
.section-title .title,
.section-title-2 .title {
  text-shadow: 0 0 20px rgba(137, 113, 91, 0.3);
}

/* Animation fluide pour les images de projets/services */
.single-project-slide {
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.single-project-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.single-project-slide .thumb img {
  transition: transform 0.6s ease;
}

.single-project-slide:hover .thumb img {
  transform: scale(1.05);
}

/* Effet de lueur pour les liens actifs dans les tabs */
.work-tabs-menu .nav li a.active {
  box-shadow: 0 5px 20px rgba(137, 113, 91, 0.4);
  animation: pulse-soft 2s infinite;
}

/* Animation subtile pour les années dans la section achievements */
.year-text p {
  font-weight: bold;
  color: #89715b;
  animation: breathing 3s ease-in-out infinite;
}

/* Effet mystique sur les items achieved */
.achieved-item {
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.achieved-item:hover {
  border-left-color: #89715b;
  padding-left: 15px;
  background: rgba(137, 113, 91, 0.05);
}

/* Animation pour les boutons "More" */
.service-box .box-icon .more {
  transition: all 0.3s ease;
}

.service-box:hover .box-icon .more {
  transform: translateX(5px);
  color: #fff;
}

/* Curseur personnalisé pour l'ambiance mystique (optionnel) */
body {
  cursor: default;
}

a, button, .clickable {
  cursor: pointer;
}

/* Amélioration de la signature */
.signechar {
  filter: drop-shadow(0 0 10px rgba(137, 113, 91, 0.3));
  animation: mystical-fade-in 1.5s ease-out;
}

/* Animation douce pour le contenu About au scroll */
.about-content {
  animation: mystical-fade-in 1.2s ease-out;
}

/* Effet de parallaxe léger sur les backgrounds */
.about-images {
  transition: transform 0.3s ease-out;
}

/* Responsive - S'assurer que les animations sont optimisées sur mobile */
@media only screen and (max-width: 767px) {
  /* Réduire l'intensité des animations sur mobile pour les performances */
  .service-box .box-icon i,
  .counter-box,
  .year-text p {
    animation-duration: 4s;
  }
  
  .single-testimonial i.icofont-quote-right {
    animation: none;
  }
}

/* ============================================
   STYLES POUR LES NOUVELLES SECTIONS
   Confiance & Domaines de Voyance
   ============================================ */

/* Section Confiance - Fond clair */
.bg-light {
  background-color: #f9f6f3 !important;
}

/* Trust Feature Boxes */
.trust-feature-box {
  padding: 40px 20px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(137, 113, 91, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.trust-feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #89715b 0%, #c9a97a 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.trust-feature-box:hover::before {
  transform: scaleX(1);
}

.trust-feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(137, 113, 91, 0.25);
}

.trust-icon {
  font-size: 48px;
  color: #89715b;
  margin-bottom: 20px;
  display: inline-block;
  animation: sparkle 3s ease-in-out infinite;
}

.trust-feature-box:hover .trust-icon {
  animation: bounce 1s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-family: "Zilla Slab", serif;
}

.trust-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Domaine Feature Boxes - Fond sombre */
.domaine-feature-box {
  padding: 40px 20px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(137, 113, 91, 0.3);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.domaine-feature-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a97a 0%, #89715b 100%);
  transition: width 0.5s ease;
}

.domaine-feature-box:hover::after {
  width: 80%;
}

.domaine-feature-box:hover {
  transform: translateY(-10px);
  background: rgba(137, 113, 91, 0.15);
  border-color: #c9a97a;
  box-shadow: 0 15px 50px rgba(137, 113, 91, 0.4),
              0 0 30px rgba(137, 113, 91, 0.2);
}

.domaine-icon {
  font-size: 48px;
  color: #c9a97a;
  margin-bottom: 20px;
  display: inline-block;
  animation: breathing 4s ease-in-out infinite;
}

.domaine-feature-box:hover .domaine-icon {
  animation: rotate-pulse 1.5s ease;
}

@keyframes rotate-pulse {
  0%, 100% { 
    transform: rotate(0deg) scale(1); 
  }
  25% { 
    transform: rotate(5deg) scale(1.1); 
  }
  75% { 
    transform: rotate(-5deg) scale(1.1); 
  }
}

.domaine-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Zilla Slab", serif;
  text-shadow: 0 0 15px rgba(201, 169, 122, 0.3);
}

.domaine-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}

/* Responsive pour les nouvelles sections */
@media only screen and (max-width: 991px) {
  .trust-feature-box,
  .domaine-feature-box {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .trust-icon,
  .domaine-icon {
    font-size: 40px;
  }
  
  .trust-title,
  .domaine-title {
    font-size: 20px;
  }
  
  .trust-text,
  .domaine-text {
    font-size: 14px;
  }
  
  .trust-feature-box,
  .domaine-feature-box {
    padding: 30px 15px;
  }
}

/* ============================================
   STYLES POUR LES BOUTONS CTA (CALL TO ACTION)
   Boutons ultra-stylés avec animations percutantes
   ============================================ */

/* Animation de pulse dramatique */
@keyframes cta-pulse-dramatic {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(137, 113, 91, 0.5),
                0 0 0 0 rgba(201, 169, 122, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 45px rgba(137, 113, 91, 0.8),
                0 0 0 15px rgba(201, 169, 122, 0);
  }
}

/* Animation de shimmer magique */
@keyframes cta-shimmer-magic {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Animation de glow mystique intense */
@keyframes cta-glow-intense {
  0%, 100% {
    box-shadow: 0 0 20px rgba(201, 169, 122, 0.6),
                0 0 40px rgba(201, 169, 122, 0.4),
                0 5px 30px rgba(137, 113, 91, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 169, 122, 1),
                0 0 80px rgba(201, 169, 122, 0.6),
                0 5px 50px rgba(137, 113, 91, 0.8);
  }
}

/* Animation de bounce attention-grabbing */
@keyframes cta-bounce-attention {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-8px) scale(1.03);
  }
  60% {
    transform: translateY(-4px) scale(1.02);
  }
}

/* Animation de particules mystiques */
@keyframes cta-particles {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-30px) scale(1);
  }
}

/* Animation de gradient animé */
@keyframes cta-gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Sections CTA */
.cta-section-1,
.cta-section-2,
.cta-section-3 {
  animation: mystical-fade-in 1s ease-out;
}

/* Bouton CTA de base - Ultra stylé */
.cta-btn {
  display: inline-block;
  padding: 18px 45px;
  font-size: 17px;
  font-weight: 700;
  font-family: "Zilla Slab", serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

/* Effet shimmer magique sur tous les boutons */
.cta-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: cta-shimmer-magic 3s linear infinite;
  z-index: -1;
}

/* Effet de particules mystiques */
.cta-btn::after {
  content: '🔮';
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  opacity: 0;
  animation: cta-particles 2s ease-in-out infinite;
  pointer-events: none;
}

/* Variantes d'emojis pour chaque type de bouton */
.cta-btn-primary::after {
  content: '🌟'; /* Étoile brillante pour le bouton principal */
}

.cta-btn-outline::after {
  content: '✨'; /* Sparkles pour le bouton outline */
}

.cta-btn-large::after {
  content: '🌙'; /* Lune pour le grand bouton hero */
}

/* Variante Primary - Bouton blanc éclatant */
.cta-btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: #89715b;
  border: 3px solid #fff;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4),
              0 0 20px rgba(255, 255, 255, 0.3),
              inset 0 1px 3px rgba(255, 255, 255, 0.8);
  animation: cta-pulse-dramatic 2s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(137, 113, 91, 0.1);
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  color: #fff;
  border-color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5),
              0 0 40px rgba(255, 255, 255, 0.4);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Variante Outline - Contour doré brillant */
.cta-btn-outline {
  background: linear-gradient(135deg, rgba(137, 113, 91, 0.1) 0%, rgba(201, 169, 122, 0.1) 100%);
  color: #89715b;
  border: 3px solid #89715b;
  box-shadow: 0 5px 20px rgba(137, 113, 91, 0.3),
              inset 0 1px 3px rgba(137, 113, 91, 0.2);
  background-size: 200% 200%;
  animation: cta-gradient-shift 3s ease infinite;
}

.cta-btn-outline:hover {
  background: linear-gradient(135deg, #89715b 0%, #c9a97a 50%, #89715b 100%);
  background-size: 200% 200%;
  color: #fff;
  border-color: #c9a97a;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(137, 113, 91, 0.6),
              0 0 30px rgba(201, 169, 122, 0.5);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Variante Instant - Orange flamboyant avec éclair ⚡ */
.cta-btn-instant {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  background-size: 200% 200%;
  color: #fff;
  border: 3px solid #ff8c42;
  box-shadow: 0 8px 35px rgba(255, 107, 53, 0.6),
              0 0 40px rgba(255, 140, 66, 0.5),
              inset 0 1px 3px rgba(255, 255, 255, 0.3);
  animation: cta-glow-intense 2s ease-in-out infinite,
             cta-bounce-attention 3s ease-in-out 3s infinite,
             cta-gradient-shift 4s ease infinite;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3),
               0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-btn-instant::after {
  content: '⚡';
  margin-left: 10px;
  font-size: 22px;
  position: static;
  opacity: 1;
  animation: none;
  display: inline-block;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

.cta-btn-instant:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f7931e 50%, #ff6b35 100%);
  background-size: 200% 200%;
  color: #fff;
  border-color: #ffd700;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 15px 60px rgba(255, 107, 53, 0.8),
              0 0 60px rgba(255, 215, 0, 0.7),
              0 0 100px rgba(255, 140, 66, 0.4);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5),
               0 0 20px rgba(255, 215, 0, 0.8);
}

/* Variante Large - Bouton hero massif et majestueux */
.cta-btn-large {
  background: linear-gradient(135deg, #8b6f47 0%, #c9a97a 25%, #d4af37 50%, #c9a97a 75%, #89715b 100%);
  background-size: 300% 300%;
  color: #fff;
  border: 3px solid #d4af37;
  padding: 24px 60px;
  font-size: 20px;
  box-shadow: 0 10px 40px rgba(137, 113, 91, 0.7),
              0 0 50px rgba(212, 175, 55, 0.5),
              inset 0 2px 4px rgba(255, 255, 255, 0.3);
  animation: cta-pulse-dramatic 2.5s ease-in-out infinite,
             cta-gradient-shift 5s ease infinite;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4),
               0 0 15px rgba(212, 175, 55, 0.6);
  letter-spacing: 1.5px;
}

.cta-btn-large::before {
  background: linear-gradient(
    45deg,
    transparent 20%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 80%
  );
  animation: cta-shimmer-magic 2s linear infinite;
}

.cta-btn-large:hover {
  background: linear-gradient(135deg, #d4af37 0%, #c9a97a 25%, #8b6f47 50%, #c9a97a 75%, #d4af37 100%);
  background-size: 300% 300%;
  color: #fff;
  border-color: #ffd700;
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 20px 70px rgba(137, 113, 91, 0.9),
              0 0 80px rgba(212, 175, 55, 0.8),
              0 0 120px rgba(212, 175, 55, 0.5),
              inset 0 2px 4px rgba(255, 255, 255, 0.4);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6),
               0 0 25px rgba(255, 215, 0, 0.9);
}

/* Effet de pulsation sur les boutons au chargement de la page */
@keyframes cta-intro-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.cta-btn {
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* Responsive pour les boutons CTA */
@media only screen and (max-width: 991px) {
  .cta-btn {
    padding: 16px 38px;
    font-size: 16px;
  }
  
  .cta-btn-large {
    padding: 20px 45px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .cta-btn {
    padding: 14px 32px;
    font-size: 15px;
    display: block;
    margin: 10px auto;
    max-width: 320px;
  }
  
  .cta-btn-large {
    padding: 18px 40px;
    font-size: 17px;
  }
  
  .cta-buttons-group .cta-btn {
    margin: 0 0 15px 0;
  }
  
  .cta-section-1 h3,
  .cta-section-2 h3,
  .cta-section-3 h2 {
    font-size: 22px !important;
  }
  
  .cta-section-3 h2 {
    font-size: 28px !important;
  }
}

/* Animation subtile pour les titres des CTA */
.cta-title {
  animation: mystical-fade-in 1.2s ease-out;
}

.cta-subtitle {
  animation: mystical-fade-in 1.4s ease-out;
}

/* Effet de lueur sur le conteneur au hover d'un bouton */
.cta-btn:hover ~ .cta-title,
.cta-btn:hover ~ .cta-subtitle {
  text-shadow: 0 0 10px rgba(201, 169, 122, 0.3);
}

/* ============================================
   STYLES POUR LE FOOTER PROFESSIONNEL
   Footer de voyance mystique et élégant
   ============================================ */

/* Footer Section Principale */
.footer-section {
  background-color: #1a1a1a;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #89715b 0%, #c9a97a 50%, #89715b 100%);
}

/* Marges supplémentaires pour éviter que les éléments touchent les bords */
.footer-section .container {
  padding-left: 50px;
  padding-right: 50px;
}

/* Espacement entre les colonnes */
.footer-top .row {
  margin-left: -25px;
  margin-right: -25px;
}

.footer-top .row > [class*="col-"] {
  padding-left: 25px;
  padding-right: 25px;
}

/* Espacement pour footer bottom */
.footer-bottom .row {
  margin-left: -15px;
  margin-right: -15px;
}

.footer-bottom .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Footer Widget Base */
.footer-widget {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #c9a97a;
  margin-bottom: 25px;
  font-family: "Zilla Slab", serif;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #c9a97a 0%, transparent 100%);
}

/* Logo Footer */
.footer-logo img {
  max-width: 180px;
  filter: drop-shadow(0 0 10px rgba(201, 169, 122, 0.3));
  transition: filter 0.3s ease;
}

.footer-logo img:hover {
  filter: drop-shadow(0 0 20px rgba(201, 169, 122, 0.6));
}

/* Description Footer */
.footer-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Certifications Badges */
.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #c9a97a;
  background: rgba(201, 169, 122, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 122, 0.3);
  margin: 0;
  transition: all 0.3s ease;
}

.certification-badge i {
  margin-right: 8px;
  font-size: 16px;
}

.certification-badge:hover {
  background: rgba(201, 169, 122, 0.2);
  border-color: #c9a97a;
  transform: translateX(5px);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links li a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links li a i {
  margin-right: 8px;
  color: #89715b;
  font-size: 10px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #c9a97a;
  transform: translateX(5px);
}

.footer-links li a:hover i {
  color: #c9a97a;
}

/* Footer Contact Info */
.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-contact-info li i {
  margin-right: 12px;
  color: #c9a97a;
  font-size: 18px;
  min-width: 20px;
  margin-top: 2px;
}

.footer-contact-info li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info li a:hover {
  color: #c9a97a;
}

/* Newsletter */
.footer-newsletter {
  background: rgba(137, 113, 91, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(137, 113, 91, 0.2);
}

.newsletter-title {
  font-size: 16px;
  font-weight: 700;
  color: #c9a97a;
  margin-bottom: 5px;
  font-family: "Zilla Slab", serif;
}

.newsletter-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(201, 169, 122, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #c9a97a;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(201, 169, 122, 0.3);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #89715b 0%, #c9a97a 100%);
  border: none;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #c9a97a 0%, #89715b 100%);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(201, 169, 122, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(137, 113, 91, 0.2);
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright .brand-name {
  color: #c9a97a;
  font-weight: 700;
  font-family: "Zilla Slab", serif;
}

.footer-copyright i.text-danger {
  color: #ff6b6b !important;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Footer Social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 5px;
}

.footer-social .social {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 12px;
}

.footer-social .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(137, 113, 91, 0.2);
  border: 1px solid rgba(137, 113, 91, 0.3);
  border-radius: 50%;
  color: #c9a97a;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social .social li a:hover {
  background: linear-gradient(135deg, #89715b 0%, #c9a97a 100%);
  border-color: #c9a97a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(201, 169, 122, 0.4);
}

/* Footer Legal Links */
.footer-legal-links {
  font-size: 13px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #c9a97a;
}

.footer-legal-links .separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media only screen and (max-width: 1400px) {
  .footer-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .footer-top .row {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .footer-top .row > [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-section {
    padding: 60px 0 30px;
  }
  
  .footer-section .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-section {
    padding: 50px 0 30px;
  }
  
  .footer-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .footer-top .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .footer-top .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .footer-widget-title {
    font-size: 18px;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: 20px;
  }
  
  .social-label {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-legal-links .separator {
    display: none;
  }
}

/* ============================================
   STYLES POUR SECTION TÉMOIGNAGES AVEC BACKGROUND
   ============================================ */

.testimonials-section-bg {
  position: relative;
  border-top: 3px solid #c9a97a;
}

.testimonials-section-bg .section-title-2 .title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.testimonials-section-bg .single-testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 122, 0.3);
  backdrop-filter: blur(10px);
}

.testimonials-section-bg .single-testimonial .testimonial-content .name,
.testimonials-section-bg .single-testimonial .testimonial-content .name a {
  color: #c9a97a;
}

.testimonials-section-bg .single-testimonial .testimonial-content .name span {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-section-bg .single-testimonial p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials-section-bg .single-testimonial i.icofont-quote-right {
  color: rgba(201, 169, 122, 0.3);
}

.testimonials-section-bg .swiper-button-prev,
.testimonials-section-bg .swiper-button-next {
  color: #c9a97a;
}

.testimonials-section-bg .swiper-button-prev:hover,
.testimonials-section-bg .swiper-button-next:hover {
  color: #fff;
}
