/*
Theme Name: CopyMedia
Description: Theme moderne pour CopyMedia - Imprimeur de livres
Author: CopyMedia Team
Version: 1.0.1
Text Domain: copymedia
*/

/* ===================================
   VARIABLES CSS GLOBALES
=================================== */
:root {
  --primary-color: #a10d59;
  --secondary-color: #ff6bb3;
  --accent-color: #ff4757;
  --dark-color: #0f0f0f;
  --charcoal-color: #1a1a1a;
  --neon-color: #ff0080;
  --text-light: #ffffff;
  --text-gray: #e5e7eb;
  --background-dark: #1a1a1a;
  --border-light: rgba(255, 255, 255, 0.1);
  
  /* Variables RGB pour actualités (transparence) */
  --primary-color-rgb: 161, 13, 89;
  --secondary-color-rgb: 255, 107, 179;
  --accent-color-rgb: 255, 71, 87;
}

/* ===================================
   RESET & BASE MODERNE
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--dark-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   NAVBAR STYLES - LOGO SIMPLE RESTAURÉ
=================================== */
.navbar-floating {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 18px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 950px;
  max-width: 95vw;
  width: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  height: 56px;
}

@media (max-width: 768px) {
  .navbar-floating {
    display: none;
  }
}

/* POINT CRITIQUE - Gestion très serrée pour éviter débordements */
@media (min-width: 769px) and (max-width: 1050px) {
  .navbar-floating {
    min-width: 850px !important;
    padding: 8px 12px !important;
  }
  
  .navbar-link {
    font-size: 0.73rem !important;
    padding: 6px 5px !important;
  }
  
  .navbar-menu {
    gap: 5px !important;
    margin-right: 5px !important;
  }
  
  .navbar-cta {
    min-width: 130px !important;
    font-size: 0.68rem !important;
    padding: 8px 10px !important;
  }
}

/* Tablettes - Style intermédiaire */
@media (min-width: 1051px) and (max-width: 1199px) {
  .navbar-floating {
    min-width: 950px;
    padding: 8px 16px;
  }
  
  .navbar-cta {
    min-width: 160px;
    font-size: 0.75rem;
    padding: 8px 14px;
  }
  
  .navbar-menu {
    gap: 12px;
    margin-right: 12px;
  }
}

/* Desktop - Style 1400px comme demandé */
@media (min-width: 1200px) {
  .navbar-floating {
    min-width: 1050px;
    padding: 12px 24px;
  }
  
  .navbar-cta {
    min-width: 220px;
    font-size: 0.82rem;
    padding: 12px 18px;
  }
  
  .navbar-menu {
    gap: 18px;
    margin-right: 18px;
  }
}

@media (min-width: 1400px) {
  .navbar-floating {
    min-width: 1150px;
    padding: 14px 28px;
  }
  
  .navbar-cta {
    font-size: 0.88rem;
    padding: 14px 24px;
    min-width: 260px;
    height: 40px;
  }
  
  .navbar-menu {
    gap: 24px;
    margin-right: 22px;
  }
  
  .navbar-logo-img {
    height: 42px;
  }
}

@media (min-width: 1600px) {
  .navbar-floating {
    min-width: 1200px;
    padding: 14px 32px;
  }
  
  .navbar-cta {
    font-size: 0.9rem;
    padding: 14px 26px;
    min-width: 280px;
    height: 40px;
  }
  
  .navbar-menu {
    gap: 28px;
    margin-right: 26px;
  }
  
  .navbar-logo-img {
    height: 44px;
  }
}

.navbar-floating.scrolled {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(30px);
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.navbar-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.navbar-logo-img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(161, 13, 89, 0.3));
  transition: all 0.3s ease;
}

.navbar-logo:hover .navbar-logo-img {
  filter: drop-shadow(0 0 15px var(--primary-color)) drop-shadow(0 0 25px var(--secondary-color));
  transform: scale(1.05);
}



.navbar-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 16px;
  white-space: nowrap; /* Empêche le retour à la ligne */
  flex-shrink: 0; /* Ne se réduit jamais */
}

.navbar-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.9rem;
  white-space: nowrap; /* Empêche le retour à la ligne */
  flex-shrink: 0; /* Ne se réduit jamais */
}

.navbar-link:hover {
  color: white;
  opacity: 1;
  transform: scale(1.05);
}

.navbar-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.navbar-link:hover .navbar-underline {
  width: 100%;
}

/* ===================================
   NAVBAR DROPDOWNS - GLASSMORPHISM TRANSPARENT
=================================== */
.navbar-dropdown {
  position: relative;
  display: inline-block;
}

.navbar-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.navbar-dropdown-trigger.active {
  color: white;
  opacity: 1;
}

.navbar-dropdown-trigger.active .navbar-underline {
  width: 100%;
}

.dropdown-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  stroke: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
}

.dropdown-icon.rotated {
  transform: rotate(180deg);
  opacity: 1;
}

.navbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  /* FOND CONTRASTÉ POUR MISE EN VALEUR */
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(161, 13, 89, 0.3);
  border-radius: 16px;
  padding: 8px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(255, 255, 255, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 1001;
  overflow: hidden;
}

.navbar-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  border: 1px solid rgba(161, 13, 89, 0.3);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
  backdrop-filter: blur(30px);
}

.dropdown-item {
  display: block;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown-item:hover {
  color: white;
  background: linear-gradient(90deg, rgba(161, 13, 89, 0.15) 0%, rgba(255, 107, 179, 0.1) 100%);
  transform: translateX(3px);
  border-radius: 8px;
  margin: 0 4px;
}

.dropdown-item:hover::before {
  opacity: 1;
}

/* ===================================
   NAVBAR CTA - BUG TEXTE CORRIGÉ
=================================== */
.navbar-cta {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  color: white;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 180px;
}

.navbar-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(161, 13, 89, 0.3);
}

.navbar-cta span {
  position: relative;
  z-index: 10; /* Assure que le texte reste visible */
  color: white; /* Force la couleur blanche */
  transition: color 0.3s ease;
  white-space: nowrap;
  display: block;
  width: 100%;
  text-align: center;
}

.navbar-cta:hover span {
  color: white; /* Garde le texte blanc au hover */
}

.navbar-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--accent-color), var(--neon-color), var(--primary-color));
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 18px;
  z-index: 1; /* En arrière-plan */
}

.navbar-cta:hover .navbar-cta-bg {
  opacity: 0.8; /* Moins opaque pour garder le texte visible */
}

/* ===================================
   NAVBAR MOBILE CORRIGÉE ET MODERNE
=================================== */
.navbar-mobile {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  
  /* PROPRIÉTÉS IDENTIQUES NAVBAR DESKTOP */
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  
  display: none;
  min-width: 180px;
  max-width: 320px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet scrolled comme desktop */
.navbar-mobile.scrolled {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(30px);
}

@media (max-width: 768px) {
  .navbar-mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .navbar-mobile {
    min-width: 160px;
    max-width: 280px;
    padding: 6px 16px;
    top: 12px;
  }
  
  .mobile-logo-img {
    height: 26px;
  }
  
  .hamburger-btn {
    width: 34px;
    height: 34px;
  }
}

@media (min-width: 769px) {
  .navbar-mobile {
    display: none;
  }
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-logo:hover {
  transform: scale(1.05);
}

.mobile-logo-img {
  height: 30px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(161, 13, 89, 0.4));
}

/* Hamburger moderne animé */
.hamburger-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.hamburger-btn.active {
  background: rgba(161, 13, 89, 0.2);
  border-color: rgba(161, 13, 89, 0.4);
}

/* Lignes hamburger animées */
.hamburger-lines {
  position: relative;
  width: 18px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.line-1.active {
  transform: translateY(5px) rotate(45deg);
  background: var(--primary-color);
}

.line-2.active {
  opacity: 0;
  transform: scaleX(0);
}

.line-3.active {
  transform: translateY(-5px) rotate(-45deg);
  background: var(--primary-color);
}

/* Menu dépliant amélioré */
.mobile-menu {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
}

.mobile-menu-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

/* ===================================
   MOBILE MENU SECTIONS & SUBMENUS
=================================== */
.mobile-menu-section {
  margin-bottom: 12px;
}

.mobile-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.mobile-section-title:hover {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-section-title.active {
  color: var(--secondary-color);
  background: rgba(161, 13, 89, 0.1);
}

.mobile-dropdown-icon {
  transition: transform 0.2s ease;
  stroke: currentColor;
  opacity: 0.8;
  flex-shrink: 0;
}

.mobile-dropdown-icon.rotated {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-submenu {
  margin-left: 12px;
  margin-top: 8px;
  padding-left: 8px;
  border-left: 2px solid rgba(161, 13, 89, 0.3);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}

.mobile-submenu-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  margin-bottom: 2px;
}

.mobile-submenu-link:hover {
  color: white;
  background: rgba(161, 13, 89, 0.15);
  border-color: rgba(161, 13, 89, 0.2);
  transform: translateX(3px);
}

.mobile-submenu-link:last-child {
  margin-bottom: 0;
}

/* CTA dans le menu */
.mobile-menu-cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(161, 13, 89, 0.3);
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(161, 13, 89, 0.4);
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.mobile-cta-btn .icon {
  font-size: 1rem;
}

.mobile-cta-btn .text {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===================================
   HERO SECTION AVEC PARALLAX ET CURSEUR
=================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default; /* Curseur visible */
  /* Zone de référence pour hero-reviews en mobile */
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* EFFET PARALLAX MOUSE */
.hero-bg-image.parallax-active {
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.hero-particles {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.particle-1 {
  top: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  animation-delay: 0s;
}

.particle-2 {
  top: 75%;
  right: 33%;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  animation-delay: 1s;
}

.particle-3 {
  bottom: 25%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  animation-delay: 2s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* COMPENSATION CONTENU HÉRO - Évite masquage par zone excellence */
@media (min-width: 769px) and (max-width: 1199px) {
  .hero-content {
    margin-top: 80px; /* Compense zone sous navbar */
  }
}

/* Desktop - Normal */
@media (min-width: 1200px) {
  .hero-content {
    margin-top: 0;
  }
}

/* Mobile - Compensation pour zone sous navbar */
@media (max-width: 768px) {
  .hero-content {
    margin-top: 80px;
  }
}

.hero-text {
  margin-bottom: 60px;
}

/* ===================================
   TITRE AVEC LOGO FRANCE STYLE "TM"
=================================== */
.hero-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 30px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
  position: relative; /* Pour positionner le logo-fr */
}

.hero-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.title-main {
  display: block;
  color: var(--text-light);
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  position: relative;
}

.title-sub {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.title-votre {
  background: linear-gradient(135deg, var(--neon-color), var(--secondary-color), var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px var(--neon-color);
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

.title-rest {
  color: rgba(255, 255, 255, 0.9);
}

/* EFFET MACHINE À ÉCRIRE PREMIUM */
.hero-subtitle {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-weight: 500;
  font-family: 'Inter', Georgia, serif;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out 0.3s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 255, 255, 0.1);
  letter-spacing: 0.3px;
}

.hero-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* MACHINE À ÉCRIRE ÉLÉGANTE */
.typewriter-text {
  border-right: 3px solid var(--secondary-color);
  animation: blink-cursor 1.8s infinite;
  min-height: 1.8em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 20px rgba(255, 107, 179, 0.3);
  position: relative;
  /* LARGEUR FIXE POUR ÉVITER BOUTONS QUI BOUGENT */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.typewriter-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 179, 0.1), transparent);
  border-radius: 4px;
  opacity: 0;
  animation: typewriter-glow 3s ease-in-out infinite;
}

@keyframes blink-cursor {
  0%, 50% { 
    border-right-color: var(--secondary-color);
    filter: drop-shadow(0 0 8px var(--secondary-color));
  }
  51%, 100% { 
    border-right-color: transparent;
    filter: none;
  }
}

@keyframes typewriter-glow {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.3; }
}

.subtitle-small {
  color: rgba(255, 255, 255, 0.92); /* Plus visible */
  font-size: 0.85em;
  margin-top: 12px;
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* BOUTONS CTA SUR LA MÊME LIGNE */
.hero-cta {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 100px auto 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out 0.6s;
}

.hero-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   BOUTONS CTA - VERSION UNIFIÉE
=================================== */
.btn-primary {
  /* Layout moderne */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  
  /* Style visuel */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  min-width: fit-content;
  
  /* Animation optimisée */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(161, 13, 89, 0.4);
}

.btn-text {
  position: relative;
  z-index: 10;
  white-space: nowrap;
}

.btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--accent-color), var(--neon-color), var(--primary-color));
  opacity: 0;
  transition: opacity 0.7s ease;
}

.btn-primary:hover .btn-bg {
  opacity: 1;
}

.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform 1s ease;
}

.btn-primary:hover .btn-shimmer {
  transform: translateX(200%) skewX(-12deg);
}

.btn-secondary {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  overflow: hidden;
  min-width: fit-content;
}

.btn-secondary:hover {
  transform: scale(1.05);
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}

.btn-bg-secondary {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(161, 13, 89, 0.2), rgba(255, 107, 179, 0.2), rgba(255, 71, 87, 0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn-secondary:hover .btn-bg-secondary {
  opacity: 1;
}

/* ===================================
   SCROLL INDICATOR MODERNE
=================================== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 0 20px rgba(255, 107, 179, 0.3);
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 20% { 
    transform: translateX(-50%) translateY(0); 
    opacity: 1;
  }
  50% { 
    transform: translateX(-50%) translateY(20px); 
    opacity: 0.7;
  }
  80%, 100% { 
    transform: translateX(-50%) translateY(0); 
    opacity: 1;
  }
}



/* ===================================
   ZONE EXCELLENCE ÉPURÉE - HAUT DROITE
=================================== */
.hero-reviews {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  /* Moins de flou pour voir le background */
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  backdrop-filter: blur(8px); /* Réduit pour voir le background derrière */
  /* Dégradé progressif sur les bords */
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  min-width: 140px;
  overflow: hidden;
}

/* Dégradé progressif sur les contours */
.hero-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(161, 13, 89, 0.2) 75%,
    rgba(255, 107, 179, 0.3) 100%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}



.reviews-logos {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.review-logo {
  width: 48px;
  height: auto;
  opacity: 0.95;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.review-logo:hover {
  opacity: 1;
  transform: scale(1.15);
  filter: drop-shadow(0 4px 20px rgba(161, 13, 89, 0.5));
}

/* Logo Google légèrement plus grand */
.reviews-logos a:first-child .review-logo {
  width: 52px;
}

/* ÉTOILES INTÉGRÉES RAFFINÉES */
.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.rating-stars {
  display: flex;
  gap: 1px;
  font-size: 15px;
  color: #ffd700;
  filter: drop-shadow(0 1px 4px rgba(255, 215, 0, 0.5));
  margin-bottom: 3px;
}

.rating-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 0.4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.rating-subtext {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Zone reviews responsive - STRATÉGIE INTELLIGENTE */

/* Desktop - Haut droite (assez d'espace) */
@media (min-width: 1200px) {
  .hero-reviews {
    position: absolute;
    top: 20px;
    right: 20px;
    /* Style vertical original préservé */
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    min-width: 140px;
  }
}

/* Tablettes - Sous navbar avec MÊME style horizontal que mobile */
@media (min-width: 769px) and (max-width: 1199px) {
  .hero-reviews {
    /* SOUS LA NAVBAR - CONFLIT ÉVITÉ */
    position: absolute;
    top: 90px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 998;
    
    /* MÊME STYLE que mobile - Horizontal long */
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0.05) 100%
    );
    backdrop-filter: blur(8px);
    border: 1px solid transparent;
    border-radius: 20px;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Layout horizontal long - MÊME que mobile */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    min-width: 280px;
    max-width: 90vw;
  }
  
  /* Styles identiques au mobile */
  .reviews-logos {
    gap: 10px;
    margin-bottom: 0;
    flex-direction: row;
    justify-content: flex-start;
    order: 1;
  }
  
  .review-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
  }
  
  /* Logo Google légèrement agrandi pour compensation visuelle */
  .review-logo:first-child {
    width: 48px;
    height: 48px;
  }
  
  .hero-rating {
    gap: 4px;
    order: 2;
    flex-direction: row;
    align-items: center;
  }
  
  .rating-stars {
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 6px;
  }
  
  .rating-text {
    font-size: 11px;
    font-weight: 700;
    margin-right: 4px;
  }
  
  .rating-subtext {
    font-size: 9px;
    font-style: italic;
  }
  
  /* Effet dégradé sur contours - MÊME que mobile */
  .hero-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(161, 13, 89, 0.2) 75%,
      rgba(255, 107, 179, 0.3) 100%
    );
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }
}

/* Mobile - Sous la navbar mobile (position corrigée) */
@media (max-width: 768px) {
  .hero-reviews {
    /* SOUS LA NAVBAR MOBILE - Position corrigée */
    position: absolute;
    top: 90px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
    z-index: 998;
    
    /* Style original parfait - Horizontal long */
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0.05) 100%
    );
    backdrop-filter: blur(8px);
    border: 1px solid transparent;
    border-radius: 20px;
    
    /* Layout horizontal original */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    min-width: 280px;
    max-width: 90vw;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  
  .hero-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(161, 13, 89, 0.2) 75%,
      rgba(255, 107, 179, 0.3) 100%
    );
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }
  
  .reviews-logos {
    gap: 10px;
    margin-bottom: 0;
    flex-direction: row;
    justify-content: flex-start;
    order: 1;
  }
  
  .review-logo {
    width: 44px; /* Taille de base */
    height: 44px; /* Force hauteur égale */
    object-fit: contain; /* Préserve proportions */
    opacity: 0.95;
    transition: all 0.3s ease;
  }
  
  /* Logo Google légèrement agrandi pour compensation visuelle */
  .review-logo:first-child {
    width: 48px;
    height: 48px;
  }
  
  .review-logo:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 4px 20px rgba(161, 13, 89, 0.5));
  }
  
  /* Étoiles à droite */
  .hero-rating {
    gap: 4px;
    order: 2;
    flex-direction: row;
    align-items: center;
  }
  
  .rating-stars {
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 6px;
  }
  
  .rating-text {
    font-size: 11px;
    font-weight: 700;
    margin-right: 4px;
  }
  
  .rating-subtext {
    font-size: 9px;
    font-style: italic;
  }
}

@media (max-width: 480px) {
  .hero-reviews {
    /* Plus compact sur petits écrans */
    top: 85px;
    padding: 10px 14px;
    min-width: 260px;
    gap: 12px;
  }
  
  .reviews-logos {
    gap: 8px;
  }
  
  .review-logo {
    width: 36px;
  }
  
  /* Logo Google agrandi sur petits écrans aussi */
  .review-logo:first-child {
    width: 40px;
  }
  
  .rating-stars {
    font-size: 12px;
  }
  
  .rating-text {
    font-size: 10px;
  }
  
  .rating-subtext {
    font-size: 8px;
  }
}

@media (min-width: 1400px) {
  .hero-reviews {
    right: 40px;
    min-width: 160px;
    padding: 18px;
  }
  
  .review-logo {
    width: 52px;
  }
}

/* ===================================
   PARTICULES DÉCORATIVES
=================================== */

/* ===================================
   ANIMATIONS PERSONNALISÉES
=================================== */
@keyframes neon-pulse {
  0% { 
    filter: brightness(1) drop-shadow(0 0 5px var(--neon-color));
  }
  100% { 
    filter: brightness(1.2) drop-shadow(0 0 20px var(--neon-color));
  }
}

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

/* Règle animate-in globale supprimée - gestion spécialisée dans sections.css */

/* ===================================
   RESPONSIVE DESIGN - NETTOYÉ
=================================== */
@media (max-width: 768px) {
  .navbar-floating {
    min-width: 320px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 16px;
    margin: 30px auto 0 auto;
    /* LARGEUR FIXE POUR ÉVITER BOUTONS QUI GRANDISSENT */
    max-width: 400px;
    width: 100%;
  }
  
  /* Machine à écrire responsive sur tablette/mobile */
  .typewriter-text {
    max-width: 90%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 16px;
  }
  
  .hero-text {
    margin-bottom: 40px;
  }
  
  /* Machine à écrire plus petite sur mobile */
  .typewriter-text {
    max-width: 100%;
    font-size: 1rem;
  }
  
  /* Boutons CTA largeur fixe petits écrans */
  .hero-cta {
    max-width: 320px;
  }
  
  .btn-text {
    font-size: 0.9rem;
  }
}

/* ===================================
   CLASSES UTILITAIRES OPTIMISÉES
=================================== */

/* Dégradés réutilisables */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gradient-primary-45 {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.gradient-primary-full {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/* Flous standardisés */
.blur-light {
  backdrop-filter: blur(8px);
}

.blur-medium {
  backdrop-filter: blur(10px);
}

.blur-strong {
  backdrop-filter: blur(15px);
}

.blur-ultra {
  backdrop-filter: blur(20px);
}

/* Ombres réutilisables */
.shadow-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.shadow-float {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.shadow-primary {
  box-shadow: 0 8px 25px rgba(161, 13, 89, 0.3);
}

/* Utilities générales */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   SCROLLBAR PERSONNALISÉE
=================================== */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

/* ===================================
   ACCESSIBILITY
=================================== */
*:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 

/* ===================================
   PAGE CONTACT - STYLES
=================================== */

/* Background subtil */
.contact-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.space-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    #0a0a18 0%, 
    #1a1a35 25%,     /* Nuance intermédiaire pour profondeur */
    #121225 50%, 
    #1a1a35 75%,     /* Symétrie harmonieuse */
    #0a0a18 100%
  );
  z-index: -1;
  overflow: hidden;
}

/* Nébuleuse subtile en arrière-plan */
.space-background::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, 
    rgba(18, 18, 37, 0.4) 0%,
    rgba(26, 26, 53, 0.2) 30%,
    rgba(18, 18, 37, 0.1) 60%,
    transparent 80%
  );
  z-index: 0;
  animation: nebula-drift 20s ease-in-out infinite;
}

@keyframes nebula-drift {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.3; }
  50% { transform: rotate(1deg) scale(1.05); opacity: 0.5; }
}

/* Étoiles avec parallax et scintillement amélioré */
.stars-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 50px 80px, #fff, transparent),
    radial-gradient(1px 1px at 150px 40px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 280px 120px, #fff, transparent),
    radial-gradient(1px 1px at 400px 60px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 320px 200px, #fff, transparent),
    radial-gradient(2px 2px at 180px 180px, rgba(255,255,255,0.9), transparent);
  background-repeat: repeat;
  background-size: 500px 300px;
  will-change: transform;
}

/* Couche 1 : Étoiles proches (mouvement parallax rapide) */
.stars-layer-1 {
  animation: enhanced-twinkle-1 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: 3;
}

/* Couche 2 : Étoiles moyennes (mouvement parallax moyen) */
.stars-layer-2 {
  animation: enhanced-twinkle-2 3.4s cubic-bezier(0.4, 0, 0.6, 1) infinite 0.618s;
  opacity: 0.6;
  background-size: 600px 350px;
  z-index: 2;
}

/* Couche 3 : Étoiles lointaines (mouvement parallax lent) */
.stars-layer-3 {
  animation: enhanced-twinkle-3 4.1s cubic-bezier(0.4, 0, 0.6, 1) infinite 1.272s;
  opacity: 0.4;
  background-size: 700px 400px;
  z-index: 1;
}

/* Scintillement amélioré avec rythmes naturels */
@keyframes enhanced-twinkle-1 {
  0% { opacity: 0.3; transform: translateY(0px); }
  30% { opacity: 0.8; transform: translateY(-1px); }
  70% { opacity: 1; transform: translateY(-0.5px); }
  100% { opacity: 0.3; transform: translateY(0px); }
}

@keyframes enhanced-twinkle-2 {
  0% { opacity: 0.2; transform: translateY(0px); }
  40% { opacity: 0.6; transform: translateY(-0.7px); }
  80% { opacity: 0.8; transform: translateY(-0.3px); }
  100% { opacity: 0.2; transform: translateY(0px); }
}

@keyframes enhanced-twinkle-3 {
  0% { opacity: 0.1; transform: translateY(0px); }
  50% { opacity: 0.4; transform: translateY(-0.4px); }
  90% { opacity: 0.6; transform: translateY(-0.2px); }
  100% { opacity: 0.1; transform: translateY(0px); }
}

/* Constellation connectée subtile */
.constellation-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: constellation-appear 8s ease-in-out infinite;
}

.constellation-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-constellation 12s ease-in-out infinite;
}

.constellation-path-1 {
  animation-delay: 0s;
}

.constellation-path-2 {
  animation-delay: 4s;
}

.constellation-path-3 {
  animation-delay: 8s;
}

@keyframes constellation-appear {
  0%, 20% { opacity: 0; }
  30%, 70% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

@keyframes draw-constellation {
  0% { stroke-dashoffset: 100; opacity: 0; }
  20% { stroke-dashoffset: 0; opacity: 0.3; }
  80% { stroke-dashoffset: 0; opacity: 0.15; }
  100% { stroke-dashoffset: -100; opacity: 0; }
}

/* Parallax léger au scroll (CSS pur) */
@media (prefers-reduced-motion: no-preference) {
  .stars-layer-1 {
    animation: enhanced-twinkle-1 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite,
               parallax-near 15s linear infinite;
  }
  
  .stars-layer-2 {
    animation: enhanced-twinkle-2 3.4s cubic-bezier(0.4, 0, 0.6, 1) infinite 0.618s,
               parallax-mid 20s linear infinite;
  }
  
  .stars-layer-3 {
    animation: enhanced-twinkle-3 4.1s cubic-bezier(0.4, 0, 0.6, 1) infinite 1.272s,
               parallax-far 25s linear infinite;
  }
}

@keyframes parallax-near {
  0% { transform: translateX(0px) translateY(0px); }
  50% { transform: translateX(-2px) translateY(-1px); }
  100% { transform: translateX(0px) translateY(0px); }
}

@keyframes parallax-mid {
  0% { transform: translateX(0px) translateY(0px); }
  50% { transform: translateX(-1px) translateY(-0.5px); }
  100% { transform: translateX(0px) translateY(0px); }
}

@keyframes parallax-far {
  0% { transform: translateX(0px) translateY(0px); }
  50% { transform: translateX(-0.5px) translateY(-0.2px); }
  100% { transform: translateX(0px) translateY(0px); }
}

/* Section formulaire */
.contact-form-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

/* Conteneur du formulaire flottant */
.floating-form-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  transition: transform 0.1s ease-out;
  will-change: transform;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* Effet de lueur subtile derrière le formulaire */
.form-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(161, 13, 89, 0.1);
  border-radius: 20px;
  opacity: 0;
  filter: blur(20px);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.floating-form-container:hover .form-glow-effect {
  opacity: 1;
}

/* Formulaire principal */
.contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Header du formulaire */
.form-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.form-title {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(161, 13, 89, 0.5);
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* Grille des champs */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.form-field-full {
  grid-column: 1 / -1;
}

/* Champs du formulaire */
.form-field {
  position: relative;
}

.form-label {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 
    0 0 0 2px rgba(161, 13, 89, 0.2),
    0 0 20px rgba(161, 13, 89, 0.1);
  background: rgba(255, 255, 255, 0.12);
}

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

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

/* Effet subtil sur les champs */
.form-field-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(161, 13, 89, 0.1);
  border-radius: 12px;
  opacity: 0;
  filter: blur(10px);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.form-input:focus + .form-field-glow {
  opacity: 0.3;
}

/* Actions du formulaire */
.form-actions {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.btn-submit {
  position: relative;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(161, 13, 89, 0.3);
}

.form-notice {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.notice-icon {
  font-size: 1rem;
}

/* Section informations de contact */
.contact-info-section {
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.contact-info-card h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Validation et états des inputs */
.form-input.has-content {
  border-color: rgba(76, 201, 240, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.form-input.error {
  border-color: #ff4757;
  box-shadow: 
    0 0 0 2px rgba(255, 71, 87, 0.2),
    0 0 20px rgba(255, 71, 87, 0.1);
  animation: shake 0.5s ease-in-out;
}

.error-message {
  color: #ff4757;
  font-size: 0.8rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadeInUp 0.3s ease;
}

.error-message::before {
  content: "⚠️";
  font-size: 0.9rem;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* États de focus améliorés */
.form-label {
  transition: all 0.3s ease;
}

.form-input:focus + .form-field-glow + .form-label,
.form-input.has-content + .form-field-glow + .form-label {
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Animation de succès */
.btn-submit.success {
  background: linear-gradient(45deg, #28a745, #20c997) !important;
  transform: scale(1.05);
}

/* Responsive pour la page contact */
@media (max-width: 768px) {
  .contact-header {
    padding: 100px 0 60px 0;
  }
  
  .contact-header .page-title {
    font-size: 2.5rem;
  }
  
  .floating-form-container {
    padding: 16px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-title {
    font-size: 1.6rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .contact-header .page-title {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .form-input {
    padding: 14px 16px;
  }
  
  .btn-submit {
    padding: 16px 32px;
    font-size: 1rem;
  }
} 

/* ===================================
   FOOTER ÉPURÉ - STYLES MINIMALISTES
=================================== */

/* Footer global - Design uniforme et moderne */
.main-footer {
  background: rgba(26, 26, 26, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  padding-top: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-footer.footer-visible {
  opacity: 1;
  transform: translateY(0);
}



/* Container principal - Structure 4-column premium */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  padding: 45px 0 35px 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section logo - Design professionnel */
.footer-brand-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
}

.footer-logo-link {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  padding: 4px;
}

.footer-logo-link:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

.footer-logo-link:focus {
  outline: 2px solid rgba(161, 13, 89, 0.5);
  outline-offset: 2px;
}

.footer-logo-img {
  width: 140px;
  height: 33px;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.footer-slogan {
  margin: 12px 0 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  font-style: italic;
}

/* Newsletter section - Design premium */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: 0.3px;
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

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

.newsletter-input:focus {
  border-color: rgba(161, 13, 89, 0.6);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  box-shadow: 0 0 0 2px rgba(161, 13, 89, 0.2);
}

.newsletter-btn {
  padding: 10px 16px;
  background: linear-gradient(135deg, #a10d59, #8b0c4e);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(161, 13, 89, 0.3);
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.newsletter-rgpd {
  margin: 8px 0 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.newsletter-privacy-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.newsletter-privacy-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* Contact et réseaux sociaux - Intégration simple */
.footer-phone-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px 12px;
  border-radius: 6px;
  display: block;
  margin-bottom: 1rem;
}

.footer-phone-link:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.footer-social-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-links svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-social-links a:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(3px);
}

.footer-social-links a:hover svg {
  opacity: 1;
}

/* Titres de section - Design uniforme */
.footer-section-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

/* Navigation - Design moderne et accessible */
.footer-links-section {
  display: flex;
  flex-direction: column;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  position: relative;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.footer-nav a:focus {
  outline: 2px solid rgba(161, 13, 89, 0.6);
  outline-offset: 2px;
}

/* Section contact - Alignement et structure */
.footer-contact-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-address {
  margin: 8px 0 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Section copyright - Design professionnel */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  letter-spacing: 0.2px;
}



.footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.footer-legal a:focus {
  outline: 2px solid rgba(161, 13, 89, 0.5);
  outline-offset: 2px;
}

.footer-cookies-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.2px;
}

.footer-cookies-btn:hover {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.footer-cookies-btn:focus {
  outline: 2px solid rgba(161, 13, 89, 0.5);
  outline-offset: 2px;
}

/* Design responsive professionnel */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 20px 30px 20px;
  }
  
  .footer-brand-section { order: 1; }
  .footer-newsletter { order: 2; }
  .footer-links-section { order: 3; }
  .footer-contact-section { order: 4; }
  
  .footer-bottom {
    padding: 20px 20px 24px 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 35px 20px 25px 20px;
    text-align: center;
  }
  
  .footer-brand-section {
    justify-content: center;
    align-items: center;
    order: 1;
  }
  
  .footer-newsletter {
    order: 2;
    text-align: center;
  }
  
  .newsletter-form {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-links-section {
    order: 3;
  }
  
  .footer-contact-section {
    align-items: center;
    justify-content: center;
    order: 4;
  }
  
  .footer-social-links {
    align-items: center;
  }
  
  .footer-nav {
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 18px 20px 22px 20px;
  }
  
  .footer-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding-top: 32px;
  }
  
  .footer-content {
    gap: 28px;
    padding: 30px 16px 22px 16px;
  }
  
  .newsletter-form {
    max-width: 280px;
  }
  
  .newsletter-input {
    font-size: 16px; /* Évite zoom iOS */
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  
  .footer-nav a {
    padding: 8px 16px;
    font-size: 0.92rem;
  }
  
  .footer-bottom {
    gap: 12px;
    padding: 16px 16px 20px 16px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-legal a, 
  .footer-cookies-btn {
    padding: 8px 16px;
    font-size: 0.88rem;
  }
} 

/* ===================================
   SECTIONS PRINCIPALES - CSS MANQUANT
=================================== */

/* Styles de base pour toutes les sections */
.prestations-section,
.savoir-faire-section,
.temoignages-section {
  padding: 80px 0;
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
}

/* Alternance de backgrounds */
.savoir-faire-section {
  background: var(--charcoal-color);
}

.temoignages-section {
  background: var(--dark-color);
}

/* Headers de sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

/* Titre prestations garde la couleur sombre */
.prestations-section .section-title {
  color: var(--dark-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 400;
}

/* Sous-titre prestations PLUS BLANC */
.prestations-section .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  font-weight: 500;
}



/* Container principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   SECTION PRESTATIONS - VERSION PREMIUM OPTIMISÉE RAM
=================================== */

/* Background blanc sobre avec texture Copy-Média subtile 
   Updated 2025-01-29: Changed from dark gradient to white sober design */
.prestations-section {
  background: var(--bg-secondary);
  color: var(--dark-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.prestations-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(161, 13, 89, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 179, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Ajustement header pour fond clair */
.prestations-section .section-title {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--dark-color); /* Fallback */
}

.prestations-section .section-subtitle {
  color: #6c757d;
  text-shadow: none;
  font-weight: 500;
}

/* Nouvelle intro prestations */
.prestations-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding: 15px 25px;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.08) 0%, rgba(255, 107, 179, 0.05) 100%);
  border-radius: 50px;
  border: 1px solid rgba(161, 13, 89, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.intro-highlight {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.intro-separator {
  color: rgba(161, 13, 89, 0.4);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Grille des 6 cartes produits - 3 COLONNES RESPONSIVE */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 60px auto;
  max-width: 1200px;
}

/* ===================================
   ANIMATIONS "TOMBER DU CIEL" CUSTOM
=================================== */

/* Animation fall-from-sky maintenant gérée dans assets/css/sections.css */

/* Cartes produits - DESIGN ORIGINAL RESTAURÉ + ANIMATIONS */
.prestation-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.prestation-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Container image optimisé */
.card-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
  flex: 1;
  min-height: 100%;
}

.prestation-card:hover .card-image {
  transform: scale(1.1);
}

/* Overlay VISIBLE - Titre en bas-gauche */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
  color: white;
  padding: 30px 25px 25px;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
}

.card-content {
  position: relative;
  z-index: 20;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* Position initiale : à la place du sous-titre (plus bas) */
  position: relative;
  transform: translateY(18px);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1), 
              background 0.7s cubic-bezier(0.19, 1, 0.22, 1),
              box-shadow 0.7s cubic-bezier(0.19, 1, 0.22, 1),
              border 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  
  /* Encadré élégant UNIQUEMENT quand pas au hover */
  display: inline-block;
  width: 240px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.025) 50%,
    rgba(255, 255, 255, 0.015) 100%
  );
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 15px rgba(255, 20, 147, 0.35),
    0 0 25px rgba(255, 255, 255, 0.18),
    0 0 35px rgba(255, 20, 147, 0.15),
    0 0 45px rgba(255, 105, 180, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Au hover, titre remonte ET l'encadré disparaît INSTANTANÉMENT - ZÉRO FLASH */
.prestation-card:hover .card-title {
  transform: translateY(0);
  /* SUPPRESSION INSTANTANÉE de l'encadré - pas de transition sur les propriétés visuelles */
  display: block !important;
  width: auto !important;
  text-align: left !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
  border-radius: 0 !important;
  background: none !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  /* SEULE la position du titre a une transition */
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Sous-titre caché par défaut, visible au hover */
.card-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  margin-top: 0;
}

.prestation-card:hover .card-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* Flèche élégante - Apparition ultra douce */
.card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92) rotate(-12deg);
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-arrow svg {
  width: 20px;
  height: 20px;
  color: white;
}

.prestation-card:hover .card-arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Effet de remplissage léger */
.card-fill-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.1), rgba(255, 107, 179, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.prestation-card:hover .card-fill-effect {
  opacity: 1;
}

/* CTA Section épurée et moderne */
.prestations-cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
  backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(161, 13, 89, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-text {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}

.prestations-cta .btn-primary {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prestations-cta .btn-text {
  text-align: center;
}

/* ===================================
   RESPONSIVE PRESTATIONS - 3 COLONNES ADAPTATIF
=================================== */

/* Tablet : 2 colonnes */
@media (max-width: 900px) {
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
  }
}

/* Mobile : 1 colonne */
@media (max-width: 600px) {
  .prestations-section {
    padding: 60px 0;
  }
  
  .prestations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px auto;
    max-width: 400px;
  }
  
  .prestation-card {
    aspect-ratio: 1/1; /* Carrés parfaits pour design mobile compact */
  }
  
  .prestations-intro {
    flex-direction: column;
    gap: 8px;
    padding: 12px 20px;
  }
  
  .intro-highlight {
    font-size: 0.85rem;
  }
  
  .card-overlay {
    padding: 20px 15px 15px;
  }
  
  .card-title {
    font-size: 1.1rem;
    text-align: center !important;
  }
  
  .card-subtitle {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .card-arrow {
    width: 32px;
    height: 32px;
    top: 12px;
    right: 12px;
  }
}

/* ===================================
   MODAL CARTES PERSONNALISÉES - SECTION TÉLÉCHARGEMENT ÉLÉGANTE
=================================== */

.download-section-cartes {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, 
    rgba(161, 13, 89, 0.04) 0%, 
    rgba(255, 107, 179, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(161, 13, 89, 0.08);
  transition: all 0.3s ease;
}

.download-section-cartes:hover {
  border-color: rgba(161, 13, 89, 0.15);
  background: linear-gradient(135deg, 
    rgba(161, 13, 89, 0.06) 0%, 
    rgba(255, 107, 179, 0.03) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(161, 13, 89, 0.1);
}

.download-intro {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.download-image-showcase {
  flex-shrink: 0;
}

.formes-preview {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(161, 13, 89, 0.15);
  transition: all 0.3s ease;
}

.download-section-cartes:hover .formes-preview {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(161, 13, 89, 0.25);
}

.download-content-cartes {
  flex: 1;
}

.download-title {
  margin: 0 0 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
}

.download-description {
  margin: 0 0 18px 0;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Media Gallery Responsive pour Cartes */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.media-item[data-type="video"] video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive pour section cartes */
@media (max-width: 768px) {
  .download-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .formes-preview {
    width: 120px;
    height: 85px;
  }
  
  .download-section-cartes {
    padding: 20px;
    margin: 25px 0;
  }
  
  .media-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .download-intro {
    gap: 15px;
  }
  
  .formes-preview {
    width: 100px;
    height: 70px;
  }
  
  .download-title {
    font-size: 1rem;
  }
  
  .download-description {
    font-size: 0.9rem;
  }
}

/* ===================================
   MODALS PRESTATIONS - DESIGN MODERNE
=================================== */

/* Modal backdrop avec effet glassmorphism */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(161, 13, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 179, 0.1) 0%, transparent 50%),
    rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px) saturate(120%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Modal container - Design blanc moderne */
.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9) rotateX(15deg);
  width: 92%;
  max-width: 1100px;
  max-height: 88vh;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(30px) saturate(150%);
  border-radius: 20px;
  overflow: hidden;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  
  /* Ombres sophistiquées */
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.15),
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 5px 20px rgba(161, 13, 89, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  
  /* Contour subtil Copy-Média */
  border: 1px solid rgba(255, 255, 255, 0.6);
  
  opacity: 0;
  filter: blur(15px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-container.active {
  transform: translate(-50%, -50%) scale(1) rotateX(0deg);
  opacity: 1;
  filter: blur(0);
}

/* Header modal moderne */
.modal-header {
  position: relative;
  padding: 35px 45px 25px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.modal-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 45px;
  right: 45px;
  height: 2px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(161, 13, 89, 0.3) 30%, 
    rgba(255, 107, 179, 0.5) 50%, 
    rgba(161, 13, 89, 0.3) 70%, 
    transparent 100%
  );
  border-radius: 1px;
}

.modal-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}

.modal-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(161, 13, 89, 0.3);
}

/* Croix moderne épurée */
.modal-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.2);
  color: #d32f2f;
  transform: scale(1.05) rotate(90deg);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.15);
}

/* Contenu modal moderne avec layout 2 colonnes */
.modal-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 45px;
  padding: 45px;
  flex: 1;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.02);
}

/* Scroll custom moderne */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
  transition: all 0.3s ease;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

/* Galerie médias - Layout simple */
.media-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  height: fit-content;
}

.media-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 12px rgba(161, 13, 89, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.media-item:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 5px 20px rgba(161, 13, 89, 0.1);
}

.media-item img,
.media-item video {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
  object-fit: cover;
  aspect-ratio: auto;
}

/* Garder le format naturel des vidéos */
.media-item video {
  object-fit: contain;
  background: #000;
}

/* Pas de zoom sur le contenu pour éviter les problèmes de clic */
.media-item:hover img,
.media-item:hover video {
  filter: brightness(1.05) contrast(1.05);
}



/* Section description moderne */
.service-description {
  color: #2d3748;
  line-height: 1.7;
  font-size: 1rem;
}

/* Conteneur gabarit séparé */
.gabarit-container {
  margin: 25px 0;
  padding: 20px;
  background: 
    linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.gabarit-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gabarit-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-description h3 {
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(161, 13, 89, 0.1);
  position: relative;
}

.service-description h3::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 1px;
}

.service-description p {
  margin-bottom: 20px;
  color: #4a5568;
  text-align: justify;
}

.service-description ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.service-description li {
  position: relative;
  padding: 12px 0 12px 35px;
  color: #4a5568;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-description li:last-child {
  border-bottom: none;
}

.service-description li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary-color);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(161, 13, 89, 0.3);
}

.service-description li:hover {
  padding-left: 40px;
  background: rgba(161, 13, 89, 0.02);
}

.service-description strong {
  color: #2d3748;
  font-weight: 600;
}

/* Sous-titre rose lumineux spécial */
.service-description .rose-subtitle {
  color: #e91e63;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 25px 0 15px 0;
  padding: 8px 0;
  text-shadow: 0 0 15px rgba(233, 30, 99, 0.3);
  border-bottom: 1px solid rgba(233, 30, 99, 0.2);
  position: relative;
}

.service-description .rose-subtitle::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #e91e63, rgba(233, 30, 99, 0.3));
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

/* Footer modal moderne */
.modal-footer {
  padding: 35px 45px;
  background: 
    linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  flex-shrink: 0;
}

.modal-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 45px;
  right: 45px;
  height: 2px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(161, 13, 89, 0.2) 30%, 
    rgba(255, 107, 179, 0.4) 50%, 
    rgba(161, 13, 89, 0.2) 70%, 
    transparent 100%
  );
  border-radius: 1px;
}

.btn-devis-modal {
  background: 
    linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  
  /* Ombres sophistiquées */
  box-shadow: 
    0 8px 25px rgba(161, 13, 89, 0.25),
    0 4px 12px rgba(255, 107, 179, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  
  /* Contour néon subtil */
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-devis-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.btn-devis-modal:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(161, 13, 89, 0.35),
    0 8px 20px rgba(255, 107, 179, 0.25),
    0 0 30px rgba(161, 13, 89, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-devis-modal:hover::before {
  opacity: 0.9;
}

.btn-devis-modal span {
  position: relative;
  z-index: 2;
}

/* YouTube Externe - Lien propre vers YouTube */
.youtube-link-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.youtube-external-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.youtube-external-link:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.youtube-external-link:hover .youtube-thumbnail {
  filter: brightness(1.1);
}

.youtube-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.youtube-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.youtube-external-link:hover .youtube-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.youtube-play-button {
  width: 80px;
  height: 56px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
}

.youtube-external-link:hover .youtube-play-button {
  transform: scale(1.1);
}

.youtube-external-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.youtube-external-link:hover .youtube-external-badge {
  background: rgba(255, 255, 255, 1);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.youtube-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 30px 15px 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Mobile responsive modals - Design moderne */
/* ===================================
   SCROLL SMOOTH GLOBAL
=================================== */
html {
  scroll-behavior: smooth;
  scroll-timeline: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===================================
   RESPONSIVE MODAL COUVERTURE SOUPLE  
=================================== */

@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    max-width: none;
    max-height: 95vh;
    transform: translate(-50%, -50%) scale(0.95) rotateX(5deg);
    margin: 0 2.5%;
  }
  
  .modal-container.active {
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
  }
  
  .modal-header {
    padding: 25px 25px 20px;
  }
  
  .modal-header::before {
    left: 25px;
    right: 25px;
  }
  
  .modal-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .modal-title::after {
    width: 40px;
    height: 2px;
  }
  
  .modal-close {
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .modal-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 25px;
  }
  
  .media-gallery {
    order: 1;
  }
  
  .service-description {
    order: 2;
    font-size: 0.95rem;
  }
  
  /* COUVERTURE SOUPLE - Ordre spécial UNIQUEMENT sur mobile */
  .modal-backdrop[data-service="couverture-souple"].mobile-layout .modal-content {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .modal-backdrop[data-service="couverture-souple"].mobile-layout .media-gallery {
    order: 1 !important;
  }
  
  .modal-backdrop[data-service="couverture-souple"].mobile-layout .service-description {
    order: 2 !important;
  }
  
  .modal-backdrop[data-service="couverture-souple"].mobile-layout .mobile-video-container {
    order: 3 !important;
  }
  
  /* Style pour la vidéo mobile repositionnée */
  .modal-backdrop[data-service="couverture-souple"] .mobile-video-container {
    width: 100%;
    margin: 20px 0;
  }
  
  .modal-backdrop[data-service="couverture-souple"] .mobile-video-container video {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  

  
  .service-description h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px 0;
  }
  
  .service-description li {
    padding: 10px 0 10px 30px;
  }
  
  .modal-footer {
    padding: 25px;
  }
  
  .modal-footer::before {
    left: 25px;
    right: 25px;
  }
  
  .btn-devis-modal {
    padding: 16px 32px;
    font-size: 1rem;
    min-width: 180px;
  }
  
  .youtube-thumbnail {
    height: 200px;
  }
  
  .youtube-play-button {
    width: 60px;
    height: 42px;
  }
  
  .youtube-external-badge {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .modal-container {
    width: 98%;
    margin: 0 1%;
  }
  
  .modal-header {
    padding: 20px 20px 15px;
  }
  
  .modal-title {
    font-size: 1.4rem;
  }
  
  .modal-content {
    padding: 25px 20px;
    gap: 25px;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
  
  .service-description h3 {
    font-size: 1.1rem;
  }
  
  .modal-footer {
    padding: 20px;
  }
  
  .btn-devis-modal {
    padding: 14px 28px;
    font-size: 0.95rem;
    min-width: 160px;
  }
}

/* Effet hover avancé pour boutons */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 25px;
}

.btn-primary:hover::before {
  opacity: 0.8;
}

.btn-text {
  position: relative;
  z-index: 10;
}

/* ===================================
   PAGE FAQ - DESIGN MODERNE
=================================== */

/* FAQ Page Élégante */
.faq-page {
  min-height: 100vh;
  background: #fafbfc;
}

/* Header FAQ élégant */
.faq-header-section {
  background: linear-gradient(180deg, #f8f9fa 0%, rgba(248, 249, 250, 0.5) 100%);
  border-bottom: 1px solid rgba(161, 13, 89, 0.08);
  padding: 80px 0 60px 0;
  position: relative;
}

.faq-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 85% 20%, rgba(161, 13, 89, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(255, 107, 179, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.faq-header-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.faq-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

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

.faq-search-container {
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.faq-search-wrapper {
  position: relative;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(161, 13, 89, 0.12);
  box-shadow: 0 4px 20px rgba(161, 13, 89, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-search-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(161, 13, 89, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-search-wrapper:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(161, 13, 89, 0.15);
  transform: translateY(-2px);
}

.faq-search-wrapper:focus-within::before {
  opacity: 1;
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #6c757d;
  z-index: 2;
}

.faq-search-input {
  width: 100%;
  padding: 18px 55px 18px 50px;
  border: none;
  background: transparent;
  color: var(--dark-color);
  font-size: 1.1rem;
  outline: none;
  border-radius: 16px;
  font-weight: 400;
}

.faq-search-input::placeholder {
  color: #6c757d;
}

.faq-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
}

.faq-search-clear.show {
  opacity: 1;
}

.faq-search-clear:hover {
  background: rgba(0, 0, 0, 0.1);
}

.faq-search-clear svg {
  width: 12px;
  height: 12px;
  color: #6c757d;
}

/* Contenu FAQ */
.faq-content-section {
  padding: 60px 0 0px 0;
  background: #fafbfc;
  position: relative;
}

.faq-results-info {
  background: rgba(161, 13, 89, 0.1);
  border: 1px solid rgba(161, 13, 89, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 30px;
  text-align: center;
}

.faq-results-text {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.faq-category:nth-child(1) { animation-delay: 0.1s; }
.faq-category:nth-child(2) { animation-delay: 0.2s; }
.faq-category:nth-child(3) { animation-delay: 0.3s; }
.faq-category:nth-child(4) { animation-delay: 0.4s; }

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  margin-top: 50px;
  color: var(--dark-color);
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  padding: 0 0 12px 0;
}

.faq-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.category-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.1), rgba(255, 107, 179, 0.1));
  border-radius: 8px;
  padding: 8px;
  transition: all 0.3s ease;
}

.category-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(161, 13, 89, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  border-color: rgba(161, 13, 89, 0.2);
  box-shadow: 0 6px 24px rgba(161, 13, 89, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f8f9fa, rgba(161, 13, 89, 0.02));
}

.faq-question.active {
  background: linear-gradient(135deg, #f8f9fa, rgba(161, 13, 89, 0.03));
  border-bottom: 1px solid rgba(161, 13, 89, 0.1);
}

.faq-question.active .faq-question-icon {
  color: var(--primary-color);
}

.faq-question-text {
  flex: 1;
  margin: 0;
  color: var(--dark-color);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq-question.active .faq-question-text {
  color: var(--primary-color);
}

.faq-question-icon {
  width: 22px;
  height: 22px;
  color: #8b949e;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-question.active .faq-question-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #fafbfc, rgba(161, 13, 89, 0.01));
}

.faq-answer.open {
  max-height: 2000px;
}

.faq-answer-content {
  padding: 20px 32px 36px 32px;
  color: #495057;
  line-height: 1.7;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease 0.1s;
}

.faq-answer.open .faq-answer-content {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-content p {
  margin-bottom: 15px;
}

.faq-answer-content ul,
.faq-answer-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.faq-answer-content li {
  margin-bottom: 8px;
}

.faq-answer-content strong {
  color: var(--dark-color);
  font-weight: 600;
}

/* Bouton téléchargement élégant */
.faq-download-link {
  margin: 20px 0;
}

.btn-download-elegant {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: white;
  border: 1px solid rgba(161, 13, 89, 0.2);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(161, 13, 89, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-download-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.05), rgba(255, 107, 179, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-download-elegant:hover::before {
  opacity: 1;
}

.btn-download-elegant:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(161, 13, 89, 0.2);
  border-color: var(--primary-color);
}

.btn-download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.1), rgba(255, 107, 179, 0.1));
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-download-elegant:hover .btn-download-icon {
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.15), rgba(255, 107, 179, 0.15));
  transform: scale(1.05);
}

.btn-download-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.btn-download-text {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-download-elegant:hover .btn-download-text {
  color: var(--primary-color);
}

/* Listes de liens et liens externes */
.faq-links-list {
  background: rgba(161, 13, 89, 0.05);
  border-radius: 8px;
  padding: 15px 20px;
  margin: 15px 0;
}

.faq-links-list li {
  margin-bottom: 5px;
}

.faq-links-list a,
.faq-answer-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.faq-links-list a:hover,
.faq-answer-content a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--primary-color);
}

.faq-answer-content a::after {
  content: '↗';
  margin-left: 4px;
  font-size: 0.8em;
  opacity: 0.7;
}

/* Steps et timeline modernes */
.faq-steps-list {
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.03), rgba(255, 107, 179, 0.02));
  border: 1px solid rgba(161, 13, 89, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  counter-reset: step-counter;
  position: relative;
}

.faq-steps-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px 12px 0 0;
}

.faq-steps-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  padding-top: 4px;
}

.faq-steps-list li:last-child {
  margin-bottom: 0;
}

/* Steps simples pour auto-édition */
.faq-simple-steps {
  margin: 20px 0;
}

.simple-step {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.02), rgba(255, 107, 179, 0.01));
  border: 1px solid rgba(161, 13, 89, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.simple-step:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(161, 13, 89, 0.1);
}

.simple-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px 0 0 12px;
}

.simple-step-header {
  margin-bottom: 8px;
}

.simple-step-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.simple-step p {
  margin: 0;
  color: #495057;
  line-height: 1.6;
}



.faq-steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(161, 13, 89, 0.2);
}

/* Listes légales */
.faq-legal-list {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.03), rgba(13, 202, 240, 0.02));
  border: 1px solid rgba(13, 110, 253, 0.1);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
  position: relative;
}

.faq-legal-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #0dcaf0);
  border-radius: 12px 12px 0 0;
}

.faq-legal-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.faq-legal-list li:last-child {
  margin-bottom: 0;
}

.faq-legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
  font-size: 1.2em;
}

.faq-payment-steps {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}

.payment-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.03), rgba(255, 107, 179, 0.02));
  border: 1px solid rgba(161, 13, 89, 0.12);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(161, 13, 89, 0.06);
}

.payment-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(161, 13, 89, 0.15);
}

.payment-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px 12px 0 0;
}

.step-number {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(161, 13, 89, 0.2);
}

.step-content h4 {
  margin: 0 0 8px 0;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.05rem;
}

.step-content p {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Timeline moderne */
.faq-timeline {
  margin: 25px 0;
  position: relative;
}



.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 179, 0.02), rgba(161, 13, 89, 0.01));
  border: 1px solid rgba(255, 107, 179, 0.12);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 179, 0.06);
}

.timeline-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(255, 107, 179, 0.15);
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), var(--secondary-color));
  border-radius: 12px 0 0 12px;
}

.timeline-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 179, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content h4 {
  margin: 0 0 8px 0;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.timeline-content p {
  margin: 0 0 5px 0;
  color: #495057;
  line-height: 1.5;
}

.timeline-content small {
  color: #8b949e;
  font-style: italic;
  font-size: 0.85rem;
}

/* Options d'expédition modernes */
.faq-shipping-options,
.faq-international-shipping {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.shipping-option,
.shipping-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 152, 0, 0.03));
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
}

.shipping-option:hover,
.shipping-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.2);
}

.shipping-option::before,
.shipping-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  border-radius: 12px 12px 0 0;
}

.shipping-icon {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.shipping-content h4,
.shipping-method h4 {
  margin: 0 0 8px 0;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.05rem;
}

.shipping-content p,
.shipping-method p {
  margin: 0 0 4px 0;
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Taux TVA modernes */
.faq-tva-rates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.tva-rate {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.02), rgba(255, 107, 179, 0.01));
  border: 1px solid rgba(161, 13, 89, 0.12);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(161, 13, 89, 0.06);
}

.tva-rate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(161, 13, 89, 0.15);
}

.tva-rate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px 12px 0 0;
}

.tva-percentage {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(161, 13, 89, 0.3);
}

.tva-content h4 {
  margin: 0 0 12px 0;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.tva-content p {
  margin: 0 0 8px 0;
  color: #495057;
  font-size: 0.95rem;
}

.tva-content ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.tva-content ul li {
  margin-bottom: 4px;
  color: #6c757d;
}

/* Sections collapsibles modernes */
.faq-collapsible-section {
  margin: 24px 0;
  border: 1px solid rgba(161, 13, 89, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(161, 13, 89, 0.06);
  transition: all 0.3s ease;
}

.faq-collapsible-section:hover {
  box-shadow: 0 4px 16px rgba(161, 13, 89, 0.12);
}

.faq-collapsible-trigger {
  width: 100%;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.03), rgba(255, 107, 179, 0.02));
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-collapsible-trigger::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-collapsible-trigger:hover::before,
.faq-collapsible-trigger.active::before {
  opacity: 1;
}

.faq-collapsible-trigger:hover {
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.08), rgba(255, 107, 179, 0.05));
  color: var(--primary-color);
}

.faq-collapsible-trigger.active {
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.08), rgba(255, 107, 179, 0.05));
  color: var(--primary-color);
}

.faq-collapsible-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-collapsible-trigger.active svg {
  transform: rotate(180deg);
}

.faq-collapsible-content {
  padding: 0 24px;
  background: white;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-collapsible-content.open {
  max-height: 1000px;
  padding: 24px;
}

.faq-legal-quote {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(13, 202, 240, 0.03));
  border: 1px solid rgba(13, 110, 253, 0.15);
  border-left: 4px solid #0d6efd;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 20px 0;
  font-style: italic;
  color: #495057;
  position: relative;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.08);
}

.faq-legal-quote::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 2rem;
  color: #0d6efd;
  opacity: 0.3;
  font-family: serif;
}

/* Messages d'état */
.faq-no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 15px;
  margin: 30px 0;
}

.no-results-icon {
  width: 64px;
  height: 64px;
  color: #6c757d;
  margin: 0 auto 20px auto;
}

.faq-no-results h3 {
  color: var(--dark-color);
  margin-bottom: 10px;
}

.faq-no-results p {
  color: #6c757d;
  margin: 0;
}

/* Transition fluide entre sections FAQ */
.faq-transition-bridge {
  height: 120px;
  background: linear-gradient(180deg,
    rgba(248, 249, 250, 1) 0%,
    rgba(248, 249, 250, 0.8) 20%,
    rgba(248, 249, 250, 0.4) 50%,
    rgba(26, 26, 26, 0.4) 80%,
    rgba(26, 26, 26, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
}

.faq-transition-bridge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 60%, rgba(161, 13, 89, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 40%, rgba(255, 107, 179, 0.06) 0%, transparent 70%);
  opacity: 0.7;
}

.faq-transition-bridge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(161, 13, 89, 0.3) 20%, 
    rgba(255, 107, 179, 0.5) 50%, 
    rgba(161, 13, 89, 0.3) 80%, 
    transparent 100%
  );
}

/* CTA Contact final - Design premium */
.faq-cta-section {
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.95) 0%, 
    rgba(44, 62, 80, 0.9) 50%, 
    rgba(26, 26, 26, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 60px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.faq-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 70%, rgba(161, 13, 89, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(255, 107, 179, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.faq-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-cta-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.faq-cta-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.2), rgba(255, 107, 179, 0.1));
  border: 1px solid rgba(161, 13, 89, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 10px 25px rgba(161, 13, 89, 0.2);
}

.faq-cta-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.faq-cta-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 4px rgba(161, 13, 89, 0.3));
}

.faq-cta-text h3 {
  color: white;
  margin: 0 0 12px 0;
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff, #e8e8e8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-highlights {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(161, 13, 89, 0.1);
  border: 1px solid rgba(161, 13, 89, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.highlight-icon {
  font-size: 1rem;
}

.faq-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-faq-contact-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  min-width: fit-content;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 
    0 10px 30px rgba(161, 13, 89, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.btn-glow {
  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.6s ease;
}

.btn-faq-contact-premium:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 20px 50px rgba(161, 13, 89, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-faq-contact-premium:hover .btn-glow {
  left: 100%;
}

.btn-faq-contact-premium:hover .btn-icon {
  transform: scale(1.1);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-header-section {
    padding: 60px 0 50px 0;
  }
  
  .faq-main-title {
    font-size: 2.5rem;
  }
  
  .faq-search-input {
    font-size: 1rem;
    padding: 16px 50px 16px 45px;
  }
  
  .faq-search-icon {
    left: 16px;
    width: 18px;
    height: 18px;
  }
  
  .faq-category-title {
    font-size: 1.25rem;
    margin-top: 40px;
  }
  
  .category-icon {
    width: 20px;
    height: 20px;
    padding: 6px;
  }
  
  .category-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .faq-question {
    padding: 20px 24px;
  }
  
  .faq-question-text {
    font-size: 1rem;
    padding-right: 16px;
  }
  
  .faq-answer-content {
    padding: 18px 24px 28px 24px;
    font-size: 0.95rem;
  }
  
  .faq-payment-steps {
    flex-direction: column;
    gap: 15px;
  }
  
  .faq-shipping-options,
  .faq-international-shipping,
  .faq-tva-rates {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .faq-transition-bridge {
    height: 80px;
  }
  
  .faq-cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px 24px;
  }
  
  .faq-cta-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .cta-highlights {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .btn-faq-contact-premium {
    padding: 18px 32px;
    font-size: 1rem;
  }
  
  .btn-faq-contact {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-header-section {
    padding: 50px 0 40px 0;
  }
  
  .faq-main-title {
    font-size: 2rem;
  }
  
  .faq-search-container {
    padding: 0 20px;
  }
  
  .faq-search-input {
    padding: 14px 45px 14px 40px;
    font-size: 0.95rem;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question-text {
    font-size: 0.95rem;
  }
  
  .faq-answer-content {
    padding: 16px 20px 24px 20px;
    font-size: 0.9rem;
  }
  
  .timeline-item,
  .shipping-option,
  .tva-rate {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* ===================================
   SECTION SAVOIR-FAIRE
=================================== */

.savoir-faire-content {
  margin-top: 20px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.expertise-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.expertise-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(161, 13, 89, 0.2);
}

.expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(161, 13, 89, 0.3));
}

.expertise-item h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.expertise-item p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

/* ===================================
   SECTION TÉMOIGNAGES
=================================== */

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stars {
  color: #ffd700;
  font-size: 1.5rem;
}

.rating-text {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
}

.reviews-count {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.temoignages-carousel {
  margin-top: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(161, 13, 89, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(161, 13, 89, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-rating {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 10;
}

.testimonial-text {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 10;
}

.testimonial-author {
  position: relative;
  z-index: 10;
}

.testimonial-author strong {
  color: var(--text-light);
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--text-gray);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Section DEVIS supprimée - styles déplacés vers assets/css/sections.css */

/* ===================================
   RESPONSIVE SECTIONS
=================================== */

@media (max-width: 768px) {
  .prestations-section,
  .savoir-faire-section,
  .temoignages-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .prestations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .prestation-card {
    aspect-ratio: 4/3;
    padding: 0;
    height: auto;
  }
  
  .card-image-container {
    height: 100% !important;
    min-height: 100%;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .card-image {
    flex: 1 !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
  }
  
  .container {
    padding: 0 16px;
  }
  
  /* Expertise grid responsive */
  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .expertise-item {
    padding: 25px 15px;
  }
  

  
  /* Testimonials responsive */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  /* Form responsive - styles déplacés vers assets/css/sections.css */
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .intro-title {
    font-size: 1.5rem;
  }
  
  .prestation-card {
    aspect-ratio: 4/3;
    padding: 0;
    height: auto;
  }
  
  .card-image-container {
    height: 100% !important;
    min-height: 100%;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .card-image {
    flex: 1 !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
  }
  
  .rating-display {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===================================
   BOUTON DEVIS FLOTTANT - BAS DROITE
=================================== */

.devis-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* VISIBLE UNIQUEMENT SUR MOBILE */
  display: none;
}

/* Affichage mobile uniquement */
@media (max-width: 768px) {
  .devis-float-btn {
    display: block;
  }
}

.devis-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  
  /* Fond glassmorphism subtil avec grain */
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.08) 100%);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  
  /* Contour néon rose/blanc */
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 
    0 0 0 1px rgba(255, 107, 179, 0.4),
    0 0 8px rgba(255, 107, 179, 0.2),
    0 0 16px rgba(255, 255, 255, 0.1),
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-width: auto;
  white-space: nowrap;
}

.devis-btn:hover {
  transform: translateY(-2px) scale(1.05);
  
  /* Intensification du néon au hover */
  box-shadow: 
    0 0 0 2px rgba(255, 107, 179, 0.6),
    0 0 12px rgba(255, 107, 179, 0.4),
    0 0 24px rgba(255, 255, 255, 0.2),
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.btn-icon {
  font-size: 1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.btn-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.devis-btn:hover .btn-icon {
  opacity: 1;
  transform: scale(1.1);
}

.devis-btn:hover .btn-text {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ANIMATIONS AU SCROLL - FINAL */
.devis-float-btn.scroll-down {
  transform: translateY(15px) scale(0.75);
  opacity: 0.25;
  pointer-events: none;
}

.devis-float-btn.scroll-up {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}



/* Responsive mobile */
@media (max-width: 480px) {
  .devis-float-btn {
    bottom: 16px;
    right: 16px;
  }
  
  .devis-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  
  .btn-icon {
    font-size: 0.9rem;
  }
  
  .btn-text {
    font-size: 0.8rem;
  }
}

/* Focus accessibility */
.devis-btn:focus {
  outline: 2px solid rgba(255, 107, 179, 0.8);
  outline-offset: 2px;
}



