* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --electric-blue: oklab(34.237% -0.00411 -0.17521);
    --dark-bg: #0a0a0a;
    --dark-card: #403f3f;
    --text-white: #bfbfbfd3;
    --text-gray: #FFD700;
    --accent-gradient: linear-gradient(135deg, #00D4FF, #0099CC);
    --premium-gold: #FFD700;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* LOADER */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.loader-logo {
    width: 200px;
    animation: fadeIn 1.2s ease-in-out infinite alternate;
}
@keyframes fadeIn {
    from { opacity: 0.6; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1.05); }
}

.site-content.hidden {
    display: none;
}

/* ==========================================
   HERO SECTION - PREMIUM UPGRADE v2
   Patch CSS complet - Remplace toute la section HERO
   ========================================== */

/* ==========================================
   ANIMATIONS - Définitions propres
   ========================================== */

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation spécifique pour les CTA - plus douce et complète */
@keyframes ctaReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateY(5px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Accessibilité - Réduction des animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================
   HERO CONTAINER
   ========================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 650px;
  min-height: 450px;
  overflow: hidden;
  background: #050505;
  display: flex;
  flex-direction: column;
  /* Isolation pour de meilleures performances */
  isolation: isolate;
}

/* ==========================================
   VIDEO - Rendu cinématique optimisé
   ========================================== */

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.01);
  width: 50%;
  height: 50%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0.75) contrast(1.02) saturate(1.05);
  will-change: transform;
  
  /* FONDU SUR LES BORDS */
  mask-image: radial-gradient(ellipse 70% 70% at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 40%, transparent 100%);
}
@media (max-width: 768px) {
  .hero-video { object-position: center top; }
}

/* ==========================================
   OVERLAY - Gradient premium multicouche
   ========================================== */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  /* Overlay multicouche pour meilleure lisibilité sans écraser la vidéo */
  background: 
    /* Vignette douce centrale */
    radial-gradient(
      ellipse 80% 70% at 50% 45%, 
      transparent 0%, 
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.5) 80%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    /* Gradient vertical pour lisibilité texte */
    linear-gradient(
      to bottom, 
      rgba(0, 0, 0, 0.6) 0%, 
      rgba(0, 0, 0, 0.1) 25%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(0, 0, 0, 0.25) 75%,
      rgba(0, 0, 0, 0.7) 100%
    );
}

/* ==========================================
   NAVBAR - Élégante et lisible
   ========================================== */

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 55px;
  /* Fond subtil avec légère transparence */
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  /* Animation d'entrée */
  animation: fadeInDown 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: color 0.3s ease, opacity 0.3s ease;
  /* Ombre texte pour lisibilité sur toutes les frames */
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* Underline animé au hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  transition: width 0.35s ease, left 0.35s ease;
}

.nav-links a:hover {
  color: #fff;
  opacity: 1;
}

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

/* Focus visible pour accessibilité */
.nav-links a:focus-visible {
  outline: 2px solid rgba(0, 212, 255, 0.6);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ==========================================
   HERO CONTENT - Centrage optimisé
   ========================================== */

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Padding ajusté pour faire "monter" les boutons */
  padding: 20px 40px 100px;
  text-align: center;
}

.hero-text {
  max-width: 780px;
  /* Animation globale du bloc texte */
  animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

/* ==========================================
   LOGO TITRE
   ========================================== */

.hero-title-img {
  width: 440px;
  max-width: 82%;
  height: auto;
  margin-bottom: 28px;
  /* Ombre plus douce et premium */
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5))
          drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* ==========================================
   SUBTITLE
   ========================================== */

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  /* Ombre texte pour lisibilité */
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7),
               0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   CTA BUTTONS - Premium avec animation fixée
   ========================================== */

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* Animation spécifique aux boutons - timing décalé */
  animation: ctaReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.cta-button {
  position: relative;
  padding: 18px 46px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  /* Transitions fluides */
  transition: 
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  /* Évite le "flash" pendant l'animation parent */
  will-change: transform, box-shadow;
}

/* Focus visible pour accessibilité */
.cta-button:focus-visible {
  outline: 3px solid rgba(0, 212, 255, 0.7);
  outline-offset: 3px;
}

/* ==========================================
   CTA PRIMARY - Bleu électrique premium
   ========================================== */

.cta-button.primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0088dd 100%);
  color: #000;
  font-weight: 700;
  /* Ombre multicouche pour profondeur */
  box-shadow: 
    0 4px 15px rgba(0, 180, 230, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #00e5ff 0%, #00a0ee 100%);
  transform: translateY(-4px);
  box-shadow: 
    0 8px 28px rgba(0, 200, 255, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-button.primary:active {
  transform: translateY(-2px);
  box-shadow: 
    0 4px 18px rgba(0, 180, 230, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   CTA SECONDARY - Blanc élégant / glass effect
   ========================================== */

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a0a;
  border: 1.5px solid rgba(255, 255, 255, 0.98);
  font-weight: 600;
  box-shadow: 
    0 4px 15px rgba(255, 255, 255, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 
    0 8px 28px rgba(255, 255, 255, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary:active {
  transform: translateY(-2px);
  box-shadow: 
    0 4px 18px rgba(255, 255, 255, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.1);
}
/* ==========================================
   MENU CONTACT POPUP — Réservation
   À ajouter en bas de style.css
   ========================================== */

/* === MENU CONTAINER === */
.pg-contact-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pg-contact-menu.pg-open {
  opacity: 1;
  visibility: visible;
}

/* === OVERLAY === */
.pg-contact-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* === CONTENT BOX === */
.pg-contact-menu-content {
  position: relative;
  width: 92%;
  max-width: 360px;
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.98) 0%,
    rgba(12, 12, 12, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pg-contact-menu.pg-open .pg-contact-menu-content {
  transform: scale(1) translateY(0);
}

/* === CLOSE BUTTON === */
.pg-contact-menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pg-contact-menu-close svg {
  stroke: rgba(255, 255, 255, 0.6);
}

.pg-contact-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pg-contact-menu-close:hover svg {
  stroke: #fff;
}

/* === TITLE === */
.pg-contact-menu-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
  letter-spacing: 0.5px;
}

.pg-contact-menu-subtitle {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.5rem;
}

/* === OPTIONS === */
.pg-contact-menu-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pg-contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pg-contact-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pg-contact-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.pg-contact-option:hover::before {
  opacity: 0.5;
}

/* === ICONS === */
.pg-contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* WhatsApp */
.pg-contact-whatsapp {
  color: #25D366;
}

.pg-contact-whatsapp .pg-contact-icon {
  fill: #25D366;
}

/* Phone */
.pg-contact-phone {
  color: #00d4ff;
}

.pg-contact-phone .pg-contact-icon {
  stroke: #00d4ff;
  fill: none;
}

/* SMS */
.pg-contact-sms {
  color: #a855f7;
}

.pg-contact-sms .pg-contact-icon {
  stroke: #a855f7;
  fill: none;
}

/* === LABELS === */
.pg-contact-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.pg-contact-hint {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 380px) {
  .pg-contact-menu-content {
    padding: 1.75rem 1.25rem 1.25rem;
  }
  
  .pg-contact-option {
    padding: 0.9rem 1rem;
    gap: 0.85rem;
  }
  
  .pg-contact-icon {
    width: 24px;
    height: 24px;
  }
  
  .pg-contact-label {
    font-size: 0.92rem;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .pg-contact-menu,
  .pg-contact-menu-content,
  .pg-contact-option {
    transition: none;
  }
}
/* ==========================================
   RESPONSIVE - TABLET (max-width: 968px)
   ========================================== */

@media (max-width: 768px) {
  .hero {
    max-height: 500px;
    min-height: 380px;
  }
  
  .hero-video {
    object-position: center 45%;
  }
  
  .navbar {
    padding: 26px 38px;
  }
  
  .nav-links {
    gap: 28px;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .hero-content {
    padding: 15px 30px 85px;
  }
  
  .hero-title-img {
    width: 360px;
    margin-bottom: 24px;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 42px;
  }
  
  .cta-button {
    padding: 16px 40px;
    font-size: 0.95rem;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ========================================== */

@media (max-width: 480px) {
  .hero {
    max-height: 550px;
    min-height: 450px;
  }
  
  .hero-video {
    /* Légèrement moins de filtre sur mobile pour perf */
    filter: brightness(0.72) contrast(1.01) saturate(1.02);
    object-position: center 50%;
  }
  
  .navbar {
    padding: 20px 24px;
    background: linear-gradient(
      180deg, 
      rgba(0, 0, 0, 0.75) 0%, 
      rgba(0, 0, 0, 0.25) 70%,
      transparent 100%
    );
  }
  
  .nav-links {
    gap: 22px;
  }
  
  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
  }
  
  .hero-content {
    padding: 15px 20px 70px;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-title-img {
    width: 280px;
    max-width: 78%;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 36px;
    padding: 0 10px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    /* Animation légèrement plus rapide sur mobile */
    animation-duration: 0.7s;
    animation-delay: 0.5s;
  }
  
  .cta-button {
    padding: 15px 36px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
  }
  
  /* Hover réduit sur mobile (touch) */
  .cta-button.primary:hover,
  .cta-button.secondary:hover {
    transform: translateY(-2px);
  }
}

/* ==========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ========================================== */

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
    max-height: 650px;
  }
  
  .navbar {
    padding: 16px 18px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .nav-links a {
    font-size: 0.8rem;
  }
  
  .nav-links a::after {
    display: none; /* Supprime l'underline animé sur très petit écran */
  }
  
  .hero-content {
    padding: 10px 16px 60px;
  }
  
  .hero-title-img {
    width: 240px;
    margin-bottom: 18px;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 14px 30px;
    font-size: 0.85rem;
    max-width: 280px;
  }
}

/* ==========================================
   FIN DU PATCH HERO PREMIUM
   ========================================== */
/* ==========================================
   SERVICES TITLE - BMW M MOTORSPORT STYLE
   ========================================== */

.services-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 20px;
}

/* Barres latérales BMW M (3 barres horizontales) */
.stripe {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 120px;
}

.stripe.left .stripe-bar,
.stripe.right .stripe-bar {
  height: 8px;
  border-radius: 4px;
}

/* Barre bleue */
.stripe.left .stripe-bar:nth-child(1),
.stripe.right .stripe-bar:nth-child(1) {
  background: #0a65f9; /* Bleu BMW M */
}

/* Barre blanche */
.stripe.left .stripe-bar:nth-child(2),
.stripe.right .stripe-bar:nth-child(2) {
  background: #f4f2f7; /* Violet BMW M */
}

/* Barre rouge */
.stripe.left .stripe-bar:nth-child(3),
.stripe.right .stripe-bar:nth-child(3) {
  background: #dc2626; /* Rouge BMW M */
}

/* Titre avec fond arrondi BMW style */
.services-icons-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  padding: 5px 20px;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  
  /* Fond arrondi bleu BMW */
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 40px;
  
  /* Ombre premium */
  box-shadow: 
    0 10px 40px rgba(37, 99, 235, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  
  /* Bordure subtile */
  border: 1px solid rgb(240, 7, 7);
  
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Effet brillance au survol */
.services-icons-title::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services-icons-title:hover::before {
  opacity: 1;
}
/* ==========================================
   SECTION PREMIUM pg-* — PRO GLASS & WASH
   Style futuriste 2025 — À coller en bas de style.css
   ========================================== */

/* === SECTION CONTAINER === */
.pg-section {
  width: 100%;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, #070707 0%, #0a0a0a 50%, #0d0d0d 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

/* === ROWS === */
.pg-row {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* === LIGNE 1 : Mini-cards + Prix === */
.pg-row-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* --- Mini-cards preuves --- */
.pg-minicards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
}

.pg-minicard {
  position: relative;
  padding: 1rem 0.875rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Bordure lumineuse top */
.pg-minicard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pg-minicard:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.pg-minicard:hover::before {
  opacity: 1;
}

.pg-minicard-title {
  display: block;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.3px;
}

.pg-minicard-sub {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.2px;
}

/* --- Badge prix cercle --- */
.pg-price-circle {
  position: relative;
  width: clamp(115px, 28vw, 145px);
  height: clamp(115px, 28vw, 145px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 200, 255, 0.12) 0%,
    rgba(0, 140, 200, 0.06) 50%,
    rgba(0, 100, 150, 0.03) 100%
  );
  border: 1.5px solid rgba(0, 212, 255, 0.25);
  box-shadow:
    0 0 40px rgba(0, 180, 230, 0.1),
    inset 0 0 30px rgba(0, 180, 230, 0.05);
  flex-shrink: 0;
}

/* Anneau extérieur subtil */
.pg-price-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  pointer-events: none;
}

/* Reflet intérieur */
.pg-price-circle::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 15%;
  width: 35%;
  height: 20%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
}

.pg-price-label {
  font-size: clamp(0.55rem, 1.8vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.9);
}

.pg-price-value {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 2px 0;
}

.pg-price-value small {
  font-size: 55%;
  font-weight: 500;
  vertical-align: super;
  margin-left: 1px;
}

.pg-price-note {
  font-size: clamp(0.58rem, 1.6vw, 0.68rem);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2px;
}

/* === LIGNE 2 : Card Avis Google === */
.pg-review-card {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pg-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 50, 0.4), transparent);
}

.pg-review-card:hover {
  border-color: rgba(255, 200, 50, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pg-review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.75rem;
}

.pg-star {
  width: 18px;
  height: 18px;
  fill: #ffc107;
  filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.4));
}

.pg-review-text {
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.pg-review-author {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.pg-review-cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0, 212, 255, 0.9);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.pg-review-card:hover .pg-review-cta {
  color: #00e5ff;
}

/* === LIGNE 3 : Sliders === */
.pg-row-sliders {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.pg-slider-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pg-slider-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Thumbnail slider (petit carré) --- */
.pg-ba-thumb {
  position: relative;
  width: clamp(130px, 35vw, 160px);
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.pg-ba-thumb:hover,
.pg-ba-thumb:focus {
  border-color: rgba(0, 212, 255, 0.3);
  transform: scale(1.03);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(0, 212, 255, 0.12);
  outline: none;
}

.pg-ba-thumb-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.pg-ba-img-before,
.pg-ba-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.pg-ba-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.pg-ba-clip .pg-ba-img-after {
  width: 200%;
  max-width: none;
}

.pg-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  pointer-events: none;
}

.pg-ba-handle-line {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.pg-ba-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 0.55rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.pg-ba-expand {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.pg-ba-expand svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.pg-ba-thumb:hover .pg-ba-expand,
.pg-ba-thumb:focus .pg-ba-expand {
  opacity: 1;
}

/* === LIGNE 4 : Map + Horaires === */
.pg-row-map {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.pg-map-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pg-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) brightness(0.85) contrast(1.1);
  transition: filter 0.3s ease;
}

.pg-map-wrapper:hover .pg-map-iframe {
  filter: grayscale(0) brightness(0.9) contrast(1.05);
}

.pg-map-infos {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pg-map-title {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.pg-map-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.pg-map-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.25rem 0;
}

.pg-icon-clock {
  width: 18px;
  height: 18px;
  stroke: rgba(0, 212, 255, 0.8);
  flex-shrink: 0;
}

.pg-map-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(0, 212, 255, 0.95);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-top: 0.25rem;
}

.pg-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.pg-map-link svg {
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.pg-map-link:hover {
  color: #00d4ff;
}

.pg-map-link:hover svg {
  transform: translate(2px, -2px);
}

/* === MODAL === */
.pg-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pg-modal.pg-open {
  opacity: 1;
  visibility: visible;
}

.pg-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pg-modal-content {
  position: relative;
  width: 92%;
  max-width: 580px;
  background: linear-gradient(
    145deg,
    rgba(18, 18, 18, 0.98) 0%,
    rgba(10, 10, 10, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: clamp(1rem, 4vw, 1.5rem);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: scale(0.92) translateY(30px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pg-modal.pg-open .pg-modal-content {
  transform: scale(1) translateY(0);
}

.pg-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
}

.pg-modal-close svg {
  stroke: rgba(255, 255, 255, 0.7);
}

.pg-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pg-modal-close:hover svg {
  stroke: #fff;
}

.pg-modal-close:focus {
  outline: 2px solid rgba(0, 212, 255, 0.5);
  outline-offset: 2px;
}

.pg-modal-title {
  text-align: center;
  font-size: clamp(0.9rem, 3vw, 1.05rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.pg-modal-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y pinch-zoom;
}

.pg-modal-img-before,
.pg-modal-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.pg-modal-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.pg-modal-clip .pg-modal-img-after {
  width: 200%;
  max-width: none;
}

.pg-modal-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 48px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 5;
}

.pg-modal-handle-bar {
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.pg-modal-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #fff 0%, #ddd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.pg-modal-handle-circle svg {
  stroke: #333;
}

.pg-modal-label {
  position: absolute;
  top: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.pg-modal-label-before {
  right: 12px;
}

.pg-modal-label-after {
  left: 12px;
}

.pg-modal-hint {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.85rem 0 0;
}

/* === RESPONSIVE TABLET/DESKTOP === */
@media (min-width: 768px) {
  .pg-row-top {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  
  .pg-minicards {
    max-width: 450px;
    gap: 1rem;
  }
  
  .pg-minicard {
    padding: 1.1rem 1rem;
  }
  
  .pg-row-sliders {
    gap: 2rem;
  }
  
  .pg-ba-thumb {
    width: 175px;
  }
  
  .pg-row-map {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .pg-map-wrapper {
    max-width: 450px;
  }
  
  .pg-map-infos {
    text-align: left;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .pg-minicards {
    grid-template-columns: repeat(4, 1fr);
    max-width: 600px;
  }
  
  .pg-ba-thumb {
    width: 190px;
  }
  
  .pg-modal-content {
    max-width: 650px;
  }
}

/* === FALLBACK (pas de backdrop-filter) === */
@supports not (backdrop-filter: blur(10px)) {
  .pg-modal-overlay {
    background: rgba(0, 0, 0, 0.97);
  }
  
  .pg-ba-badge,
  .pg-modal-label {
    background: rgba(0, 0, 0, 0.85);
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .pg-minicard,
  .pg-review-card,
  .pg-ba-thumb,
  .pg-modal,
  .pg-modal-content {
    transition: none;
  }
}
/* ==========================================
   SERVICES SECTION - PREMIUM LUXURY DESIGN
   ========================================== */

.services-icons {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  
  /* Background avec couleur grise */
  background-image:
    radial-gradient(ellipse at top left, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #5C5754 0%, #5C5754 50%, #5C5754 100%);
}

/* Effet de profondeur subtil */
.services-icons::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(0, 123, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Container principal */
.services-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Titre de section */
.services-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.services-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.services-title p {
  font-size: 1.2rem;
  color: #0081f2;
  font-weight: 400;
}

/* Grille des icônes */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Carte de service */
.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon:hover {
  transform: translateY(-8px);
}

/* Cercle d'icône Premium */
.icon-circle {
  width: 240px;
  height: 240px;
  border-radius: 50px;
  
  /* Background glass effect */
  background: rgba(244, 242, 242, 0.717);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  /* Bordure subtile */
  border: 1.5px solid rgba(223, 18, 18, 0.9);
  
  /* Shadow élégante */
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(136, 136, 136, 0.9);
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  position: relative;
  overflow: hidden;
  
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet de brillance au survol */
.icon-circle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-icon:hover .icon-circle::before {
  opacity: 1;
}

/* Hover state */
.service-icon:hover .icon-circle {
  transform: scale(1.05);
  box-shadow: 
    0 20px 60px rgba(0, 123, 255, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(0, 123, 255, 0.3);
}

/* Image à l'intérieur */
.icon-circle img {
  width: 140%;
  height: auto;
  max-height: 140%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon:hover .icon-circle img {
  transform: scale(1.08);
}

/* Texte sous l'icône */
.service-icon h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  transition: color 0.3s ease;
}

.service-icon:hover h3 {
  color: #007bff;
}

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

@media (max-width: 1200px) {
  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
  
  .services-icons {
    padding: 100px 0;
  }
}

@media (max-width: 968px) {
  .services-title-wrapper {
    gap: 15px;
  }
  
  .stripe {
    width: 100px;
  }
  
  .stripe.left .stripe-bar,
  .stripe.right .stripe-bar {
    height: 7px;
  }
  
  .services-icons-title {
    font-size: 2rem;
    padding: 5px 20px;
  }
}

@media (max-width: 768px) {
  .services-icons {
    padding: 80px 0;
  }
  
  .services-container {
    padding: 0 25px;
  }
  
  .services-title h2 {
    font-size: 2.2rem;
  }
  
  .services-title p {
    font-size: 1.1rem;
  }
  
  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }
  
  .icon-circle {
    width: 180px;
    height: 180px;
    border-radius: 20px;
  }
  
  .icon-circle img {
    width: 130%;
    max-height: 130%;
  }
  
  .service-icon h3 {
    font-size: 1rem;
  }
  
  .services-title-wrapper {
    gap: 12px;
    margin: 50px 0 20px;
  }
  
  .stripe {
    width: 60px;
    height: 4px;
  }
  
  .services-icons-title {
    font-size: 1.6rem;
    padding: 5px 18px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 480px) {
  .services-icons {
    padding: 60px 0;
  }
  
  .services-container {
    padding: 0 20px;
  }
  
  .services-title {
    margin-bottom: 50px;
  }
  
  .services-title h2 {
    font-size: 1.8rem;
  }
  
  .services-title p {
    font-size: 1rem;
  }
  
  .icons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .icon-circle {
    width: 200px;
    height: 200px;
  }
  
  .service-icon h3 {
    font-size: 1.05rem;
  }
  
  .services-title-wrapper {
    flex-direction: column;
    gap: 20px;
    margin: 40px 0 20px;
  }
  
  .stripe {
    width: 120px;
    height: 4px;
  }
  
  .stripe.left,
  .stripe.right {
    /* Même gradient pour les deux sur mobile */
    background: linear-gradient(90deg, 
      #005ef6 0%,
      #ffffff 50%,
      #dc2626 100%
    );
  }
  
  .services-icons-title {
    font-size: 1.4rem;
    padding: 5px 15px;
    white-space: normal;
  }
}

/* ==========================================
   ALTERNATIVE: Grille avec fond card
   ========================================== */

.services-grid-container {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 32px;
  padding: 70px 60px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-grid-container {
    padding: 50px 30px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .services-grid-container {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
/* ==========================================
   NOS SERVICES - TITRE PREMIUM AVEC LOGOS
   ========================================== */

.services-section {
  padding: 100px 0;
}

/* Wrapper du titre avec logos */
.section-title.with-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
}

/* Logos de chaque côté */
.title-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 123, 255, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoFloat 3s ease-in-out infinite;
}

/* Animation float différente pour gauche/droite */
.title-logo.left {
  animation-delay: 0s;
}

.title-logo.right {
  animation-delay: 1.5s;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

/* Effet hover sur les logos */
.section-title.with-icons:hover .title-logo {
  transform: scale(1.15) rotate(360deg);
  filter: drop-shadow(0 8px 20px rgba(0, 212, 255, 0.5));
}

/* Texte du titre */
.section-title.with-icons::before {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: -1;
  opacity: 0.15;
  font-size: 3.2rem;
  top: -10px;
  pointer-events: none;
}

/* Texte principal avec gradient BMW M */
.section-title.with-icons {
  background: linear-gradient(135deg, 
    #1a1a1a 0%, 
    #616161 30%, 
    #9d9d9d 60%, 
    #dc2626 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Alternative: Titre avec fond glass */
.section-title.with-icons.glass-style {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 50px;
  border-radius: 60px;
  border: 1.5px solid rgba(30, 160, 247, 0.721);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #727272;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

/* ==========================================
   GRILLE DES SERVICES
   ========================================== */
.section-title.with-icons.glass-style {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Chewy', cursive;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(180deg, #121a1f, #0b0f12);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.15);
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-card h3 {
  color: hsla(201, 98%, 47%, 0.894);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.price {
  color: var(--premium-gold);
  font-weight: bold;
  font-size: 1.1rem;
}


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .section-title.with-icons {
    font-size: 2rem;
    gap: 15px;
    padding: 16px 30px;
  }

  .title-logo {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 968px) {
  .section-title.with-icons {
    font-size: 2.4rem;
    gap: 20px;
  }
  
  .title-logo {
    width: 50px;
    height: 50px;
  }
  
  .section-title.with-icons::before {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
}

  }
  
  .section-title.with-icons {
    font-size: 2rem;
    gap: 18px;
    margin-bottom: 50px;
  }
  
  .title-logo {
    width: 45px;
    height: 45px;
  }
  
  .section-title.with-icons::before {
    font-size: 2.4rem;
    top: -8px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }
.service-detail .section-title.with-icons.glass-style {
  font-size: 1.2rem;
}


@media (max-width: 480px) {
  .services-section {
    padding: 60px 0;
  }
  
  .section-title.with-icons {
    font-size: 1.6rem;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .title-logo {
    width: 40px;
    height: 40px;
  }
  
  .section-title.with-icons::before {
    font-size: 2rem;
    top: -6px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px;
  }
}

/* ==========================================
   HEADER SECTION
   ========================================== */

.lavage-header {
  text-align: center;
  margin-bottom: 80px;
}

.lavage-intro {
  font-size: 1.3rem;
  color: #0180fe;
  max-width: 800px;
  margin: 30px auto 0;
  line-height: 1.8;
  font-weight: 400;
}

/* ==========================================
   GALERIE D'IMAGES MODERNE
   ========================================== */

.lavage-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 100px;
  position: relative;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1;
}

/* Image principale plus grande */
.gallery-item.main {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.2);
}

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

/* Overlay au survol */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}
/* ==========================================
   GALERIE COMPACTE
   ========================================== */

.lavage-gallery-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item-compact {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1;
}

.gallery-item-compact.main {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.2);
}

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

.gallery-item-compact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item-compact:hover::before {
  opacity: 1;
}

/* ==========================================
   PROCESSUS COMPACT
   ========================================== */

.lavage-process-compact {
  max-width: 900px;
  margin: 0 auto 50px;
}

.process-header-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.process-title-compact {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff0000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-time-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.time-icon {
  font-size: 0.95rem;
}

/* Cartes étapes compactes */
.process-card-compact {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card-compact:hover {
  transform: translateX(6px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
}

.card-number-compact {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.card-content-compact h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.card-content-compact p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   SECTION CÉRAMIQUE COMPACTE
   ========================================== */

.lavage-ceramic-compact {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
  color: #fff;
  padding: 35px 40px;
  border-radius: 16px;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ceramic-badge-compact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.ceramic-badge-compact svg {
  width: 16px;
  height: 16px;
}

.lavage-ceramic-compact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.lavage-ceramic-compact p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 25px;
}

.ceramic-benefits-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.benefit-item-compact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.benefit-item-compact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

.benefit-icon-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(0, 212, 255, 0.18);
  color: #00d4ff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.benefit-item-compact span:last-child {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================
   RESPONSIVE COMPACT
   ========================================== */

@media (max-width: 1200px) {
  .lavage-gallery-compact {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item-compact.main {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 968px) {
  #service-lavage.lavage-premium {
    padding: 50px 0;
  }
  
  #service-lavage .container {
    padding: 0 25px;
  }
  
  .lavage-process-compact {
    max-width: 100%;
  }
  
  .process-card-compact {
    flex-direction: column;
    padding: 18px 20px;
  }
  
  .card-number-compact {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

  #service-lavage .section-title.with-icons.glass-style {
    font-size: 1.3rem;
    padding: 8px 24px;
  }
  
  #service-lavage .title-logo {
    width: 32px;
    height: 32px;
  }
  
  #service-lavage .lavage-intro {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }
  
/* ==========================================
   GALERIE SLIDER PREMIUM
   Classes uniques : .lux-*
   ========================================== */

.lux-gallery-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 30px;
}

.lux-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}

/* ==========================================
   CONTAINER IMAGE PREMIUM
   ========================================== */

.lux-image-container {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.lux-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.95);
  
  /* Glass effect premium */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  /* Border luxe */
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  
  /* Shadow multicouches */
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 123, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-image-frame:hover {
  transform: scale(1.02);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.5),
    0 12px 32px rgba(0, 123, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lux-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-image.active {
  opacity: 1;
}

/* Overlay subtil */
.lux-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
}

/* ==========================================
   INDICATEUR POSITION
   ========================================== */

.lux-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.lux-separator {
  opacity: 0.5;
  margin: 0 2px;
}

/* ==========================================
   BOUTONS NAVIGATION PREMIUM
   Style inspiré commandes automobiles luxe
   ========================================== */

.lux-nav {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  
  z-index: 5;
}

.lux-nav:hover {
  background: rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.4);
  transform: scale(1.08);
  box-shadow: 
    0 12px 32px rgba(0, 123, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lux-nav:active {
  transform: scale(1.02);
}

/* Icône SVG */
.lux-nav-icon {
  width: 28px;
  height: 28px;
  color: #fff;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.lux-nav:hover .lux-nav-icon {
  opacity: 1;
  color: #00d4ff;
}

/* Effet glow LED au survol */
.lux-nav-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.4) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.lux-nav:hover .lux-nav-glow {
  opacity: 1;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

/* Focus accessibilité */
.lux-nav:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 4px;
}

/* ==========================================
   ANIMATION CHANGEMENT IMAGE
   ========================================== */

@keyframes luxFadeSlide {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.lux-image.lux-slide-in {
  animation: luxFadeSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 768px) {
  .lux-gallery-wrapper {
    padding: 0 20px;
    margin: 40px auto;
  }
  
  .lux-gallery {
    gap: 20px;
  }
  
  .lux-image-container {
    max-width: 360px;
  }
  
  .lux-image-frame {
    border-radius: 16px;
  }
  
  .lux-nav {
    width: 50px;
    height: 50px;
  }
  
  .lux-nav-icon {
    width: 24px;
    height: 24px;
  }
  
  .lux-indicator {
    bottom: 12px;
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .lux-gallery {
    gap: 15px;
  }
  
  .lux-image-container {
    max-width: 280px;
  }
  
  .lux-nav {
    width: 44px;
    height: 44px;
  }
  
  .lux-nav-icon {
    width: 22px;
    height: 22px;
  }
  
  .lux-indicator {
    bottom: 10px;
    padding: 5px 12px;
    font-size: 0.75rem;
  }
}

/* ==========================================
   ÉTATS DE CHARGEMENT (optionnel)
   ========================================== */

.lux-image-frame.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 123, 255, 0.1);
  animation: luxPulseLoad 1.5s ease-in-out infinite;
}

@keyframes luxPulseLoad {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
  
  .process-header-compact {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .process-title-compact {
    font-size: 1.4rem;
  }
  
  .process-time-badge {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
  
  .card-content-compact h4 {
    font-size: 1.05rem;
  }
  
  .card-content-compact p {
    font-size: 0.9rem;
  }
  
  .lavage-ceramic-compact {
    padding: 28px 25px;
  }
  
  .lavage-ceramic-compact h3 {
    font-size: 1.3rem;
  }
  
  .lavage-ceramic-compact p {
    font-size: 0.9rem;
  }
  
  .ceramic-benefits-compact {
    grid-template-columns: 1fr;
  }

@media (max-width: 480px) {
  #service-lavage.lavage-premium {
    padding: 35px 0;
  }
  
  #service-lavage .container {
    padding: 0 20px;
  }
  
  #service-lavage .section-title.with-icons.glass-style {
    font-size: 1.1rem;
    padding: 7px 20px;
  }
  
  #service-lavage .title-logo {
    width: 28px;
    height: 28px;
  }
  
  .process-card-compact {
    padding: 16px 18px;
  }
  
  .card-number-compact {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .lavage-ceramic-compact {
    padding: 24px 20px;
  }
  
  .ceramic-badge-compact {
    font-size: 0.75rem;
    padding: 7px 15px;
  }
}
/* ==========================================
   SECTION DETAILING PREMIUM
   Classes préfixées : det-*
   À AJOUTER À LA FIN DE style.css
   ========================================== */

#service-detailing.det-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
}

#service-detailing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ==========================================
   TITRE + BADGE SUR DEVIS
   ========================================== */

#service-detailing .section-title.with-icons.glass-style {
  font-size: 1.5rem;
  padding: 10px 30px;
  margin-bottom: 15px;
}

#service-detailing .title-logo {
  width: 38px;
  height: 38px;
}

.det-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  margin: 0 auto 25px;
  display: flex;
  justify-content: center;
}

.det-pricing-badge svg {
  width: 16px;
  height: 16px;
}

.det-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================
   GALERIE PREMIUM STYLE GRID
   ========================================== */

.det-gallery-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.det-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.det-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.det-gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.det-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.det-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

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

.det-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.det-gallery-item:hover .det-gallery-overlay {
  opacity: 1;
}

.det-gallery-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================
   OFFRES CARDS
   ========================================== */

.det-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.det-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.det-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

.det-card-featured {
  border-color: rgba(0, 123, 255, 0.4);
  background: rgba(0, 123, 255, 0.06);
  transform: scale(1.03);
}

.det-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.det-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.det-card-header {
  margin-bottom: 20px;
}

.det-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.det-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.det-duration svg {
  opacity: 0.7;
}

.det-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.det-card-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.det-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
  font-size: 1rem;
}

.det-cta-card {
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.det-cta-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}

.det-cta-card.det-cta-primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.det-cta-card.det-cta-primary:hover {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* ==========================================
   MÉTHODE 4 ÉTAPES
   ========================================== */

.det-method {
  margin-bottom: 60px;
}

.det-method-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.det-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.det-method-step {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.det-method-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-4px);
}

.det-step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.det-method-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.det-method-step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   CTA FINAL
   ========================================== */

.det-cta-final {
  text-align: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.det-cta-final h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.det-cta-final p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
}

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

.det-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.det-btn-primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.det-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.det-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.det-btn-secondary:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  transform: translateY(-3px);
}

.det-btn svg {
  width: 18px;
  height: 18px;
}

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

@media (max-width: 1024px) {
  .det-gallery-premium {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .det-gallery-large {
    grid-column: span 2;
  }
  
  .det-offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .det-card-featured {
    transform: scale(1);
  }
  
  .det-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #service-detailing.det-section {
    padding: 50px 0;
  }
  
  #service-detailing .container {
    padding: 0 25px;
  }
  
  #service-detailing .section-title.with-icons.glass-style {
    font-size: 1.3rem;
    padding: 8px 24px;
  }
  
  #service-detailing .title-logo {
    width: 32px;
    height: 32px;
  }
  
  .det-pricing-badge {
    font-size: 0.8rem;
    padding: 7px 16px;
  }
  
  .det-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  
  .det-gallery-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 50px;
  }
  
  .det-gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .det-gallery-tall {
    grid-row: span 1;
  }
  
  .det-method-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .det-method-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .det-cta-final {
    padding: 40px 25px;
  }
  
  .det-cta-final h3 {
    font-size: 1.6rem;
  }
  
  .det-cta-buttons {
    flex-direction: column;
  }
  
  .det-btn {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  #service-detailing.det-section {
    padding: 40px 0;
  }
  
  #service-detailing .container {
    padding: 0 20px;
  }
  
  #service-detailing .section-title.with-icons.glass-style {
    font-size: 1.1rem;
    padding: 7px 20px;
  }
  
  #service-detailing .title-logo {
    width: 28px;
    height: 28px;
  }
  
  .det-gallery-premium {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .det-gallery-large {
    grid-column: span 1;
  }
  
  .det-card {
    padding: 25px 20px;
  }
  
  .det-card-header h3 {
    font-size: 1.2rem;
  }
  
  .det-method-title {
    font-size: 1.3rem;
  }
  
  .det-cta-final h3 {
    font-size: 1.4rem;
  }
}
/* ==========================================
   SECTION CARROSSERIE - STYLE PREMIUM
   Classes préfixées : car-*
   À AJOUTER À LA FIN DE style.css
   ========================================== */

#service-carrosserie.car-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

#service-carrosserie .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Titre */
#service-carrosserie .section-title.with-icons.glass-style {
  font-size: 1.5rem;
  padding: 10px 30px;
  margin-bottom: 20px;
}

#service-carrosserie .title-logo {
  width: 38px;
  height: 38px;
}

.car-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================
   GRILLE PRESTATIONS
   ========================================== */

.car-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.car-service-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.car-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.2);
}

.car-service-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.car-service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.car-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 18px 20px 10px;
}

.car-service-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 20px 20px;
}

/* ==========================================
   FORMULAIRE DE CONTACT
   ========================================== */

.car-contact-wrapper {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 35px;
  max-width: 800px;
  margin: 0 auto;
}

.car-contact-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.car-contact-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 35px;
}

.car-contact-form {
  /* Pas de styles spécifiques ici */
}

.car-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

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

.car-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.car-form-group input,
.car-form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

.car-form-group input:focus,
.car-form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

/* Upload photos */
.car-form-group input[type="file"] {
  padding: 10px;
  cursor: pointer;
  font-size: 0.88rem;
}

.car-form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-top: -4px;
}

.car-photos-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.car-photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.car-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(220, 38, 38, 0.9);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: background 0.3s ease;
}

.car-photo-remove:hover {
  background: #dc2626;
}

/* ==========================================
   BOUTONS FORMULAIRE
   ========================================== */

.car-form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.car-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.car-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.car-btn-primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.car-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.car-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.car-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

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

@media (max-width: 968px) {
  .car-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #service-carrosserie.car-section {
    padding: 50px 0;
  }

  #service-carrosserie .container {
    padding: 0 25px;
  }

  #service-carrosserie .section-title.with-icons.glass-style {
    font-size: 1.3rem;
    padding: 8px 24px;
  }

  #service-carrosserie .title-logo {
    width: 32px;
    height: 32px;
  }

  .car-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .car-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 50px;
  }

  .car-service-image {
    height: 140px;
  }

  .car-contact-wrapper {
    padding: 30px 25px;
  }

  .car-contact-title {
    font-size: 1.4rem;
  }

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

  .car-form-actions {
    flex-direction: column;
  }

  .car-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #service-carrosserie.car-section {
    padding: 40px 0;
  }

  #service-carrosserie .container {
    padding: 0 20px;
  }

  #service-carrosserie .section-title.with-icons.glass-style {
    font-size: 1.1rem;
    padding: 7px 20px;
  }

  #service-carrosserie .title-logo {
    width: 28px;
    height: 28px;
  }

  .car-contact-wrapper {
    padding: 25px 20px;
  }

  .car-contact-title {
    font-size: 1.2rem;
  }

  .car-service-card h3 {
    font-size: 1rem;
  }

  .car-service-card p {
    font-size: 0.85rem;
  }
}
/* ==========================================
   SECTION PARE-BRISE - STYLE PREMIUM
   Classes préfixées : pb-*
   À AJOUTER À LA FIN DE style.css
   ========================================== */

#service-parebrise.pb-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

#service-parebrise .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Titre */
#service-parebrise .section-title.with-icons.glass-style {
  font-size: 1.5rem;
  padding: 10px 30px;
  margin-bottom: 20px;
}

#service-parebrise .title-logo {
  width: 38px;
  height: 38px;
}

.pb-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================
   GALERIE
   ========================================== */

.pb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pb-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pb-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

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

.pb-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
}

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

/* ==========================================
   GARANTIES / POINTS FORTS
   ========================================== */

.pb-guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.pb-guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.pb-guarantee-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 123, 255, 0.3);
}

.pb-guarantee-item svg {
  color: #00d4ff;
  flex-shrink: 0;
}

.pb-guarantee-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ==========================================
   CARDS DEVIS / CESSION
   ========================================== */

.pb-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.pb-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pb-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

.pb-card-featured {
  border-color: rgba(0, 123, 255, 0.4);
  background: rgba(0, 123, 255, 0.05);
}

.pb-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.pb-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  color: #00d4ff;
}

.pb-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pb-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 25px;
}

.pb-card-btn {
  width: 100%;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pb-card-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}

.pb-card-btn.pb-btn-primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.pb-card-btn.pb-btn-primary:hover {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.pb-card-note {
  display: block;
  margin-top: 15px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  line-height: 1.4;
}

/* ==========================================
   FORMULAIRE
   ========================================== */

.pb-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 35px;
  max-width: 800px;
  margin: 0 auto;
}

.pb-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.pb-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

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

.pb-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.pb-form-group input,
.pb-form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

.pb-form-group input:focus,
.pb-form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

/* ==========================================
   BOUTONS FORMULAIRE
   ========================================== */

.pb-form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.pb-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pb-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.pb-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.pb-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.pb-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  #service-parebrise.pb-section {
    padding: 50px 0;
  }

  #service-parebrise .container {
    padding: 0 25px;
  }

  #service-parebrise .section-title.with-icons.glass-style {
    font-size: 1.3rem;
    padding: 8px 24px;
  }

  #service-parebrise .title-logo {
    width: 32px;
    height: 32px;
  }

  .pb-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .pb-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .pb-gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pb-guarantees {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .pb-guarantee-item {
    padding: 14px 18px;
  }

  .pb-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .pb-form-wrapper {
    padding: 30px 25px;
  }

  .pb-form-title {
    font-size: 1.3rem;
  }

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

  .pb-form-actions {
    flex-direction: column;
  }

  .pb-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #service-parebrise.pb-section {
    padding: 40px 0;
  }

  #service-parebrise .container {
    padding: 0 20px;
  }

  #service-parebrise .section-title.with-icons.glass-style {
    font-size: 1.1rem;
    padding: 7px 20px;
  }

  #service-parebrise .title-logo {
    width: 28px;
    height: 28px;
  }

  .pb-form-wrapper {
    padding: 25px 20px;
  }

  .pb-card {
    padding: 30px 25px;
  }
}
/* ==========================================
   SECTION COVERING • FILM PPF • VITRES TEINTÉES
   Classes préfixées : cf-* (covering film)
   À AJOUTER À LA FIN DE style.css
   ========================================== */

#service-covering.cf-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

#service-covering .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Titre */
#service-covering .section-title.with-icons.glass-style {
  font-size: 1.5rem;
  padding: 10px 30px;
  margin-bottom: 20px;
}

#service-covering .title-logo {
  width: 38px;
  height: 38px;
}

.cf-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================
   LAYOUT PRINCIPAL : IMAGES + CARDS
   ========================================== */

.cf-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

/* ==========================================
   GALERIE IMAGES (GAUCHE)
   ========================================== */

.cf-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  position: sticky;
  top: 20px;
}

.cf-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cf-gallery-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

.cf-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.3);
}

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

/* Label sur image */
.cf-gallery-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.cf-gallery-item:hover .cf-gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   CARDS SERVICES (DROITE)
   ========================================== */

.cf-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cf-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.cf-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 12px;
  color: #00d4ff;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.cf-card:hover .cf-card-icon {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.cf-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cf-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Liste des bénéfices */
.cf-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-benefits li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.cf-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
  font-size: 1rem;
}

/* ==========================================
   BANDEAU BAS DISCRET
   ========================================== */

.cf-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cf-footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cf-footer-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 123, 255, 0.3);
  color: #00d4ff;
}

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

@media (max-width: 968px) {
  .cf-main-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cf-gallery {
    position: static;
    grid-template-columns: 1fr;
  }

  .cf-gallery-large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  #service-covering.cf-section {
    padding: 50px 0;
  }

  #service-covering .container {
    padding: 0 25px;
  }

  #service-covering .section-title.with-icons.glass-style {
    font-size: 1.3rem;
    padding: 8px 24px;
  }

  #service-covering .title-logo {
    width: 32px;
    height: 32px;
  }

  .cf-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .cf-main-layout {
    gap: 35px;
    margin-bottom: 50px;
  }

  .cf-gallery {
    gap: 12px;
  }

  .cf-cards {
    gap: 16px;
  }

  .cf-card {
    padding: 24px 22px;
  }

  .cf-card-icon {
    width: 48px;
    height: 48px;
  }

  .cf-card h3 {
    font-size: 1.15rem;
  }

  .cf-footer {
    gap: 15px;
    padding: 25px 0 0;
  }

  .cf-footer-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  #service-covering.cf-section {
    padding: 40px 0;
  }

  #service-covering .container {
    padding: 0 20px;
  }

  #service-covering .section-title.with-icons.glass-style {
    font-size: 1.1rem;
    padding: 7px 20px;
  }

  #service-covering .title-logo {
    width: 28px;
    height: 28px;
  }

  .cf-main-layout {
    gap: 30px;
    margin-bottom: 40px;
  }

  .cf-card {
    padding: 22px 20px;
  }

  .cf-card h3 {
    font-size: 1.1rem;
  }

  .cf-footer {
    flex-direction: column;
    gap: 12px;
  }

  .cf-footer-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
/* ==========================================
   SECTION POLISSAGE • LUSTRAGE • CÉRAMIQUE
   Classes préfixées : plc-*
   À AJOUTER À LA FIN DE style.css
   ========================================== */

#service-polissage.plc-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

#service-polissage .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Titre */
#service-polissage .section-title.with-icons.glass-style {
  font-size: 1.5rem;
  padding: 10px 30px;
  margin-bottom: 20px;
}

#service-polissage .title-logo {
  width: 38px;
  height: 38px;
}

.plc-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================
   LAYOUT PRINCIPAL : IMAGES + CARDS
   ========================================== */

.plc-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

/* ==========================================
   GALERIE IMAGES (GAUCHE)
   ========================================== */

.plc-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  position: sticky;
  top: 20px;
}

.plc-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fallback Android si backdrop-filter non supporté */
  background: rgba(20, 20, 20, 0.8);
}

@supports (backdrop-filter: blur(10px)) {
  .plc-gallery-item {
    background: transparent;
  }
}

.plc-gallery-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

.plc-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
  border-color: rgba(0, 123, 255, 0.3);
}

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

/* Overlay + Label sur image */
.plc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plc-gallery-item:hover .plc-gallery-overlay {
  opacity: 1;
}

.plc-gallery-label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 8px;
}

@supports (backdrop-filter: blur(10px)) {
  .plc-gallery-label {
    background: rgba(0, 0, 0, 0.3);
  }
}

/* ==========================================
   CARDS SERVICES (DROITE)
   ========================================== */

.plc-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plc-card {
  /* Fallback Android */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@supports (backdrop-filter: blur(15px)) {
  .plc-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}

.plc-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.plc-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 12px;
  color: #00d4ff;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.plc-card:hover .plc-card-icon {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.plc-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.plc-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Pills de bénéfices */
.plc-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.plc-benefit-pill {
  display: inline-block;
  padding: 7px 14px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.plc-benefit-pill:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

/* Note discrète */
.plc-card-note {
  display: block;
  margin-top: 15px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  line-height: 1.4;
}

/* ==========================================
   BANDEAU BAS DISCRET
   ========================================== */

.plc-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plc-footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  /* Fallback Android */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

@supports (backdrop-filter: blur(10px)) {
  .plc-footer-badge {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
  }
}

.plc-footer-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 123, 255, 0.3);
  color: #00d4ff;
}

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

@media (max-width: 968px) {
  .plc-main-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plc-gallery {
    position: static;
    grid-template-columns: 1fr;
  }

  .plc-gallery-large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  #service-polissage.plc-section {
    padding: 50px 0;
  }

  #service-polissage .container {
    padding: 0 25px;
  }

  #service-polissage .section-title.with-icons.glass-style {
    font-size: 1.3rem;
    padding: 8px 24px;
  }

  #service-polissage .title-logo {
    width: 32px;
    height: 32px;
  }

  .plc-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .plc-main-layout {
    gap: 35px;
    margin-bottom: 50px;
  }

  .plc-gallery {
    gap: 12px;
  }

  .plc-cards {
    gap: 16px;
  }

  .plc-card {
    padding: 24px 22px;
  }

  .plc-card-icon {
    width: 48px;
    height: 48px;
  }

  .plc-card h3 {
    font-size: 1.15rem;
  }

  .plc-benefits {
    gap: 6px;
  }

  .plc-benefit-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .plc-footer {
    gap: 15px;
    padding: 25px 0 0;
  }

  .plc-footer-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  #service-polissage.plc-section {
    padding: 40px 0;
  }

  #service-polissage .container {
    padding: 0 20px;
  }

  #service-polissage .section-title.with-icons.glass-style {
    font-size: 1.1rem;
    padding: 7px 20px;
  }

  #service-polissage .title-logo {
    width: 28px;
    height: 28px;
  }

  .plc-main-layout {
    gap: 30px;
    margin-bottom: 40px;
  }

  .plc-card {
    padding: 22px 20px;
  }

  .plc-card h3 {
    font-size: 1.1rem;
  }

  .plc-footer {
    flex-direction: column;
    gap: 12px;
  }

  .plc-footer-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
/* ==========================================
   SECTION POURQUOI NOUS CHOISIR - VERSION AMÉLIORÉE
   Classes préfixées : why-*
   REMPLACE LE CSS DE .why-choose-us EXISTANT
   ========================================== */

.why-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.why-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Titre */
.why-section .section-title.with-icons.glass-style {
  font-size: 1.5rem;
  padding: 10px 30px;
  margin-bottom: 20px;
}

.why-section .title-logo {
  width: 38px;
  height: 38px;
}

.why-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================
   LAYOUT : 3 CARDS + BADGE PRIX
   ========================================== */

.why-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ==========================================
   3 CARDS AVANTAGES
   ========================================== */

.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-card {
  /* Fallback Android */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@supports (backdrop-filter: blur(15px)) {
  .why-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}

.why-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.why-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 14px;
  color: #00d4ff;
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   BADGE PRIX PREMIUM
   ========================================== */

.why-price-badge {
  position: sticky;
  top: 20px;
  /* Fallback Android */
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.2),
    0 0 60px rgba(0, 212, 255, 0.15);
  transition: all 0.4s ease;
}

@supports (backdrop-filter: blur(20px)) {
  .why-price-badge {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

.why-price-badge:hover {
  transform: scale(1.03);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(0, 212, 255, 0.25);
}

.price-badge-content {
  /* Pas de styles spécifiques */
}

.price-badge-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.price-badge-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00d4ff;
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.price-badge-detail {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  font-style: italic;
}

/* ==========================================
   RESPONSIVE POURQUOI CHOISIR
   ========================================== */

@media (max-width: 968px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-price-badge {
    position: static;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 50px 0;
  }

  .why-section .container {
    padding: 0 25px;
  }

  .why-section .section-title.with-icons.glass-style {
    font-size: 1.3rem;
    padding: 8px 24px;
  }

  .why-section .title-logo {
    width: 32px;
    height: 32px;
  }

  .why-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .why-cards {
    gap: 16px;
  }

  .why-card {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
  }

  .why-card-icon {
    width: 52px;
    height: 52px;
  }

  .price-badge-amount {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 40px 0;
  }

  .why-section .container {
    padding: 0 20px;
  }

  .why-section .section-title.with-icons.glass-style {
    font-size: 1.1rem;
    padding: 7px 20px;
  }

  .why-section .title-logo {
    width: 28px;
    height: 28px;
  }

  .why-card {
    padding: 22px 18px;
  }

  .price-badge-amount {
    font-size: 2.5rem;
  }

  .why-price-badge {
    padding: 30px 25px;
  }
}


/* ==========================================
   SECTION CONTACT - VERSION AMÉLIORÉE
   Classes préfixées : contact-*
   REMPLACE LE CSS DE .contact-section EXISTANT
   ========================================== */

.contact-section-new {
  padding: 60px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.contact-section-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Titre */
.contact-section-new .section-title.with-icons.glass-style {
  font-size: 1.5rem;
  padding: 10px 30px;
  margin-bottom: 20px;
}

.contact-section-new .title-logo {
  width: 38px;
  height: 38px;
}

.contact-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================
   LAYOUT 2 COLONNES : INFOS + QR
   ========================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ==========================================
   CARDS INFOS CONTACT (GAUCHE)
   ========================================== */

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  /* Fallback Android */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@supports (backdrop-filter: blur(15px)) {
  .contact-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 12px;
  color: #00d4ff;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.contact-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.contact-link {
  display: inline-block;
  color: #00d4ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.contact-link:hover {
  color: #00e8ff;
  text-decoration: underline;
}

/* ==========================================
   SECTION QR CODES (DROITE)
   ========================================== */

.contact-qr-section {
  /* Fallback Android */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  position: sticky;
  top: 20px;
}

@supports (backdrop-filter: blur(15px)) {
  .contact-qr-section {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}

.contact-qr-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-qr-box:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.contact-qr-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
}

.contact-qr-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-qr-box:hover .contact-qr-label {
  color: #00d4ff;
}

/* ==========================================
   RESPONSIVE CONTACT
   ========================================== */

@media (max-width: 968px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-qr-section {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-section-new {
    padding: 50px 0;
  }

  .contact-section-new .container {
    padding: 0 25px;
  }

  .contact-section-new .section-title.with-icons.glass-style {
    font-size: 1.3rem;
    padding: 8px 24px;
  }

  .contact-section-new .title-logo {
    width: 32px;
    height: 32px;
  }

  .contact-intro {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 22px 18px;
  }

  .contact-qr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .contact-qr-box img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .contact-section-new {
    padding: 40px 0;
  }

  .contact-section-new .container {
    padding: 0 20px;
  }

  .contact-section-new .section-title.with-icons.glass-style {
    font-size: 1.1rem;
    padding: 7px 20px;
  }

  .contact-section-new .title-logo {
    width: 28px;
    height: 28px;
  }

  .contact-card {
    padding: 20px 16px;
  }

  .contact-qr-section {
    padding: 25px 20px;
  }

  .contact-qr-title {
    font-size: 1.15rem;
  }

  .contact-qr-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-qr-box {
    padding: 16px 14px;
  }

  .contact-qr-box img {
    width: 85px;
    height: 85px;
  }
}
/* FOOTER */
.footer {
    background: var(--dark-bg);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-circle {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.footer-text {
    color: var(--text-gray);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: flex-start;
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .navbar {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .icons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
  .hero-title-img {
    width: 420px;
    max-width: 90%;
    height: auto;
}
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding-top: 20px;
    }
}
@media (max-width: 768px) {

  .hero-content {
    padding: 50px 20px 30px;
  }

  .hero-title-img {
    width: 280px;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    gap: 12px;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {

  .services-icons,
  .services-section,
  .why-choose-us,
  .contact-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {

  .icons-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }

  .footer-text {
    font-size: 0.85rem;
  }
}
.hero-title-img {
  font-family: 'Chewy', cursive;
}

.section-title,
.form-section-title {
  font-family: 'Chewy', cursive;
  letter-spacing: 1px;
}
/* TITRES SOUS LES BULLES (SERVICES ICONS) */
.services-icons span {
    font-family: 'Chewy', cursive;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    margin-top: 10px;
    display: block;
}
.services-icons span {
    text-shadow: 0 2px 8px rgba(1, 18, 149, 0.427);
}
/* TITRE AVEC LOGOS – NOS SERVICES */
.section-title.with-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.section-title.with-icons .title-logo {
    height: 2em; /* clé : suit la taille du texte */
    width: auto;
    opacity: 0.85;
}

.section-title.with-icons .title-logo.left {
    margin-right: 6px;
}

.section-title.with-icons .title-logo.right {
    margin-left: 6px;
}
@media (max-width: 768px) {
    .section-title.with-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .section-title.with-icons .title-logo {
        height: 1.2em;
        display: inline-block;
    }
}
.service-detail {
    padding: 80px 0;
    background: #0f0f0f;
}

.service-detail p {
    max-width: 700px;
    margin: 0 auto;
    text-align: auto;
    color: rgba(255,255,255,0.7);
}
.service-detail ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.service-detail li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: rgba(255,255,255,0.75);
}

.service-detail li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--electric-blue);
}
.service-detail {
    text-align: center;
}

/* Le bloc UL est centré */
.service-detail ul {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    display: inline-block; /* 🔑 LA CLÉ */
    text-align: left;      /* texte lisible */
}

/* Les lignes */
.service-detail li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
}

/* Le petit symbole */
.service-detail li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
}
/* GALERIE */
.galerie-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.galerie-grid {
  column-count: 3;
  column-gap: 20px;
}

.galerie-item {
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
}

.galerie-item img,
.galerie-item video {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.galerie-item:hover img,
.galerie-item:hover video {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .galerie-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .galerie-grid {
    column-count: 1;
  }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
.qr-codes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.qr-box {
  width: 150px;
  height: 180px;
  background: rgba(20,20,20,0.85);
  border-radius: 18px;
  border: 1px solid rgba(0,212,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 12px;
}

.qr-box span {
  font-family: 'Chewy', cursive;
  letter-spacing: 1px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.qr-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,212,255,0.35);
}
@media (max-width: 768px) {
  .qr-codes {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .qr-box {
    width: 140px;
    height: 170px;
  }

  .qr-box img {
    width: 80px;
    height: 80px;
  }
}
.services-details-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 40px;
  align-items: start;
  margin-top: 60px;
}

.services-text {
  width: 100%;
}

.services-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-side img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.services-layout {
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  gap: 40px;
  align-items: sticky;
}

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

/* MOBILE IMAGES */
.services-side.mobile {
  display: none;
}

@media (max-width: 1024px) {

  .services-details-wrapper {
    display: flex;
    flex-direction: column;
  }

  /* Texte en premier */
  .services-text {
    order: 1;
  }

  /* Images mobiles propres */
  .services-side img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }
}

/* ================= TEMPS METHODOLOGIE ================= */

.process-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.process-time {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

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

.time-text {
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .process-header {
    gap: 12px;
  }

  .process-time {
    font-size: 0.8rem;
  }
}
/* ============================================
   FOOTER PREMIUM - CSS À AJOUTER À style.css
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-family: 'chewy';
    font-size: 0.875rem;
    font-weight: 300;
    color: rgb(232, 0, 0);
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:hover::after {
    width: 100%;
}

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

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.813rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        flex: unset;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .footer-tagline {
        font-size: 0.813rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}
/* ==========================================
   PATCH HERO VIDEO MOBILE — Dézoom
   À ajouter en bas de style.css (après le CSS hero existant)
   ========================================== */

/* === TABLET (768px et moins) === */
@media (max-width: 768px) {
  .hero-video {
    /* Dézoom léger + recadrage vers le haut */
    transform: translate(-50%, -50%) scale(0.95);
    object-position: center 40%;
  }
}

/* === MOBILE (480px et moins) === */
@media (max-width: 480px) {
  .hero-video {
    /* Dézoom plus prononcé pour voir plus de la scène */
    transform: translate(-50%, -50%) scale(0.88);
    object-position: center 35%;
    
    /* Agrandir légèrement la zone vidéo pour compenser le scale */
    width: 120%;
    height: 120%;
  }
}

/* === TRÈS PETIT ÉCRAN (380px et moins) === */
@media (max-width: 380px) {
  .hero-video {
    transform: translate(-50%, -50%) scale(0.85);
    object-position: center 30%;
    width: 130%;
    height: 130%;
  }
}
/* ==========================================
   TITRE "NOS SERVICES" — GLASS CARD FUTURISTE
   Classes préfixées : ns-* (nos services)
   À AJOUTER en bas de style.css
   ========================================== */

/* === CARD CONTAINER === */
.ns-title-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: clamp(320px, 85vw, 650px);
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 5vw, 3rem);
  
  /* Glass effect premium */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(0, 180, 255, 0.03) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  /* Bordure subtile avec glow */
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: clamp(14px, 3vw, 20px);
  
  /* Shadow multicouches */
  box-shadow:
    0 0 40px rgba(0, 180, 230, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  
  /* Transition hover */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Isolation */
  isolation: isolate;
  overflow: hidden;
}

/* Hover effect desktop */
@media (hover: hover) {
  .ns-title-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow:
      0 0 60px rgba(0, 180, 230, 0.15),
      0 12px 40px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .ns-title-card:hover .ns-glow-line {
    opacity: 1;
  }
  
  .ns-title-card:hover .ns-corner {
    opacity: 0.8;
  }
  
  .ns-title-card:hover .ns-logo {
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
  }
}

/* === COINS DÉCORATIFS HIGH-TECH === */
.ns-corner {
  position: absolute;
  width: clamp(12px, 3vw, 18px);
  height: clamp(12px, 3vw, 18px);
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

/* Bordures des coins */
.ns-corner::before,
.ns-corner::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.8), transparent);
}

.ns-corner::before {
  width: 100%;
  height: 2px;
}

.ns-corner::after {
  width: 2px;
  height: 100%;
}

/* Positions */
.ns-corner-tl {
  top: clamp(6px, 1.5vw, 10px);
  left: clamp(6px, 1.5vw, 10px);
}
.ns-corner-tl::before { top: 0; left: 0; }
.ns-corner-tl::after { top: 0; left: 0; }

.ns-corner-tr {
  top: clamp(6px, 1.5vw, 10px);
  right: clamp(6px, 1.5vw, 10px);
}
.ns-corner-tr::before { 
  top: 0; 
  right: 0; 
  background: linear-gradient(270deg, rgba(0, 212, 255, 0.8), transparent);
}
.ns-corner-tr::after { top: 0; right: 0; }

.ns-corner-bl {
  bottom: clamp(6px, 1.5vw, 10px);
  left: clamp(6px, 1.5vw, 10px);
}
.ns-corner-bl::before { bottom: 0; left: 0; }
.ns-corner-bl::after { bottom: 0; left: 0; }

.ns-corner-br {
  bottom: clamp(6px, 1.5vw, 10px);
  right: clamp(6px, 1.5vw, 10px);
}
.ns-corner-br::before { 
  bottom: 0; 
  right: 0; 
  background: linear-gradient(270deg, rgba(0, 212, 255, 0.8), transparent);
}
.ns-corner-br::after { bottom: 0; right: 0; }

/* === LIGNES LUMINEUSES (GLOW) === */
.ns-glow-line {
  position: absolute;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 212, 255, 0.6) 30%,
    rgba(0, 230, 255, 0.9) 50%,
    rgba(0, 212, 255, 0.6) 70%,
    transparent 100%
  );
  opacity: 0.6;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.ns-glow-top {
  top: 0;
}

.ns-glow-bottom {
  bottom: 0;
  opacity: 0.3;
}

/* === CONTENU (LOGOS + TITRE) === */
.ns-title-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 1.5rem);
  position: relative;
  z-index: 3;
}

/* === LOGOS === */
.ns-logo {
  width: clamp(36px, 8vw, 55px);
  height: clamp(36px, 8vw, 55px);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 150, 255, 0.25));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

/* Animation subtile des logos */
.ns-logo-left {
  animation: nsLogoFloat 4s ease-in-out infinite;
}

.ns-logo-right {
  animation: nsLogoFloat 4s ease-in-out infinite 2s;
}

@keyframes nsLogoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(3deg);
  }
}

/* === TEXTE TITRE === */
.ns-title-text {
  font-family: 'Chewy', cursive;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: clamp(1px, 0.3vw, 2px);
  text-transform: uppercase;
  margin: 0;
  
  /* Gradient text premium */
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #e0e8f0 25%,
    #00d4ff 50%,
    #e0e8f0 75%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  /* Text shadow pour profondeur (via filter) */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  
  /* Animation gradient subtile */
  animation: nsTextShimmer 6s ease-in-out infinite;
  
  white-space: nowrap;
}

@keyframes nsTextShimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 768px) {
  .ns-title-card {
    max-width: 90vw;
    padding: clamp(0.9rem, 2.5vw, 1.2rem) clamp(1.2rem, 4vw, 2rem);
  }
  
  .ns-corner {
    width: 10px;
    height: 10px;
  }
  
  .ns-glow-line {
    left: 10%;
    right: 10%;
  }
  
  /* Désactiver animations sur mobile pour perf */
  .ns-logo-left,
  .ns-logo-right {
    animation: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ns-title-card {
    max-width: 95vw;
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }
  
  .ns-title-content {
    gap: 0.6rem;
  }
  
  .ns-logo {
    width: 32px;
    height: 32px;
  }
  
  .ns-corner {
    width: 8px;
    height: 8px;
  }
  
  .ns-corner-tl,
  .ns-corner-tr,
  .ns-corner-bl,
  .ns-corner-br {
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
  }
  
  /* Simplifier le text effect sur petit écran */
  .ns-title-text {
    animation: none;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

/* === FALLBACK (pas de backdrop-filter) === */
@supports not (backdrop-filter: blur(20px)) {
  .ns-title-card {
    background: linear-gradient(
      135deg,
      rgba(20, 25, 30, 0.95) 0%,
      rgba(15, 20, 25, 0.95) 100%
    );
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .ns-title-card,
  .ns-logo,
  .ns-title-text,
  .ns-glow-line,
  .ns-corner {
    animation: none;
    transition: none;
  }
}
/* ==========================================
   TITRES ENFANTS — PATCH SPÉCIFICITÉ RENFORCÉE
   
   ⚠️  SUPPRIMER l'ancien bloc ".child-title" dans ton CSS
   ⚠️  COLLER CE CODE À LA TOUTE FIN de style.css
   ========================================== */

/* Reset complet des styles parent */
h2.section-title.with-icons.glass-style.child-title {
  /* RESET TOTAL */
  all: unset;
  
  /* Rebuild from scratch */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(0.6rem, 2.5vw, 1.2rem) !important;
  
  /* Dimensions */
  max-width: clamp(300px, 90vw, 700px) !important;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem) !important;
  padding: clamp(0.7rem, 2vw, 1rem) clamp(1.2rem, 4vw, 2.5rem) !important;
  
  /* Fond GLASS lumineux */
  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(0, 212, 255, 0.15) 100%
  ) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  
  /* Bordure lumineuse CYAN */
  border: 1.5px solid rgba(0, 220, 255, 0.4) !important;
  border-radius: clamp(12px, 2.5vw, 18px) !important;
  
  /* Shadow GLOW */
  box-shadow:
    0 0 35px rgba(0, 210, 255, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 25px rgba(0, 200, 255, 0.08) !important;
  
  /* Texte */
  font-family: 'Chewy', cursive !important;
  font-size: clamp(1.2rem, 3.5vw, 1.7rem) !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: clamp(0.5px, 0.2vw, 1.5px) !important;
  white-space: nowrap !important;
  
  /* GRADIENT TEXTE - La clé ! */
  color: #00e5ff !important;
  -webkit-text-fill-color: #00e5ff !important;
  
  /* Position */
  position: relative !important;
  overflow: hidden !important;
  cursor: default !important;
  
  /* Transition */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Ligne lumineuse TOP */
h2.section-title.with-icons.glass-style.child-title::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 8% !important;
  right: 8% !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 230, 255, 0.8) 20%,
    rgba(255, 255, 255, 1) 50%,
    rgba(0, 230, 255, 0.8) 80%,
    transparent 100%
  ) !important;
  opacity: 0.9 !important;
  z-index: 2 !important;
}

/* Ligne lumineuse BOTTOM */
h2.section-title.with-icons.glass-style.child-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 15% !important;
  right: 15% !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 200, 255, 0.5) 30%,
    rgba(0, 220, 255, 0.7) 50%,
    rgba(0, 200, 255, 0.5) 70%,
    transparent 100%
  ) !important;
  opacity: 0.6 !important;
  z-index: 2 !important;
}

/* LOGOS */
h2.section-title.with-icons.glass-style.child-title .title-logo {
  width: clamp(30px, 7vw, 45px) !important;
  height: clamp(30px, 7vw, 45px) !important;
  object-fit: contain !important;
  filter: 
    drop-shadow(0 0 10px rgba(0, 220, 255, 0.5))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
  transition: all 0.35s ease !important;
  flex-shrink: 0 !important;
  animation: none !important;
}

/* === HOVER DESKTOP === */
@media (hover: hover) {
  h2.section-title.with-icons.glass-style.child-title:hover {
    border-color: rgba(0, 240, 255, 0.6) !important;
    box-shadow:
      0 0 60px rgba(0, 220, 255, 0.35),
      0 8px 30px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 0 35px rgba(0, 210, 255, 0.12) !important;
    transform: translateY(-3px) !important;
  }
  
  h2.section-title.with-icons.glass-style.child-title:hover .title-logo {
    filter: 
      drop-shadow(0 0 16px rgba(0, 240, 255, 0.7))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3)) !important;
    transform: scale(1.1) !important;
  }
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 768px) {
  h2.section-title.with-icons.glass-style.child-title {
    max-width: 94vw !important;
    padding: clamp(0.6rem, 2vw, 0.9rem) clamp(1rem, 3vw, 1.5rem) !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
    font-size: clamp(1rem, 3.5vw, 1.3rem) !important;
  }
  
  h2.section-title.with-icons.glass-style.child-title .title-logo {
    width: 28px !important;
    height: 28px !important;
  }
}

/* Mobile */
@media (max-width: 480px) {
  h2.section-title.with-icons.glass-style.child-title {
    max-width: 96vw !important;
    padding: 0.5rem 0.8rem !important;
    gap: 0.5rem !important;
    border-radius: 10px !important;
    font-size: clamp(0.9rem, 4vw, 1.1rem) !important;
  }
  
  h2.section-title.with-icons.glass-style.child-title .title-logo {
    width: 24px !important;
    height: 24px !important;
  }
}

/* === FALLBACK === */
@supports not (backdrop-filter: blur(16px)) {
  h2.section-title.with-icons.glass-style.child-title {
    background: linear-gradient(
      135deg,
      rgba(10, 30, 50, 0.95) 0%,
      rgba(5, 25, 45, 0.95) 100%
    ) !important;
  }
}
/* ==========================================
   FIX CENTRAGE TITRES ENFANTS
   À AJOUTER À LA TOUTE FIN de style.css
   ========================================== */

/* Centrer le titre dans son conteneur */
h2.section-title.with-icons.glass-style.child-title {
  display: flex !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: fit-content !important;
}

/* Alternative : wrapper pour centrage (si le display:flex ne suffit pas) */
.service-detail,
#service-lavage,
#service-detailing,
#service-carrosserie,
#service-parebrise,
#service-covering,
#service-polissage {
  text-align: center;
}
/* ==========================================
   FINAL CHAPTER — ZONE FINALE PREMIUM
   Style "Showroom Premium" avec halos lumineux
   Classes préfixées : fc-*
   
   À COLLER À LA FIN DE style.css
   ========================================== */

/* ==========================================
   VARIABLES LOCALES
   ========================================== */
:root {
  --fc-cyan: #00d4ff;
  --fc-cyan-light: #00e8ff;
  --fc-cyan-glow: rgba(0, 212, 255, 0.4);
  --fc-gold: #d4a853;
  --fc-gold-light: #e8c068;
  --fc-dark: #080810;
  --fc-dark-card: rgba(12, 15, 25, 0.85);
}

/* ==========================================
   SECTION CONTAINER
   ========================================== */
.fc-section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
  isolation: isolate;
}

.fc-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 50px);
}

/* ==========================================
   FOND TRAVAILLÉ — HALOS + PATTERN
   ========================================== */
.fc-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #050508 0%,
    #0a0a12 30%,
    #0d0d18 60%,
    #080810 100%
  );
  overflow: hidden;
}

/* Halos lumineux */
.fc-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  animation: fcHaloPulse 8s ease-in-out infinite;
}

.fc-halo-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.25) 0%, transparent 70%);
  animation-delay: 0s;
}

.fc-halo-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  animation-delay: 4s;
}

.fc-halo-3 {
  width: 550px;
  height: 550px;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0, 200, 255, 0.2) 0%, transparent 70%);
  animation-delay: 2s;
}

.fc-halo-4 {
  width: 450px;
  height: 450px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  animation-delay: 6s;
}

@keyframes fcHaloPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* Pattern grille subtile */
.fc-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 180, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

/* ==========================================
   BADGE ZONE FINALE
   ========================================== */
.fc-zone-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.fc-zone-line {
  display: block;
  width: clamp(40px, 10vw, 100px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fc-gold), transparent);
}

.fc-zone-text {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--fc-gold);
  white-space: nowrap;
}

/* ==========================================
   TITRE HERO-LIKE
   ========================================== */
.fc-title {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
}

.fc-title-sub {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.fc-title-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 25px);
  font-family: 'Chewy', cursive;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 1px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #e0e8f0 30%,
    var(--fc-cyan) 50%,
    #e0e8f0 70%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fcTitleShimmer 6s ease-in-out infinite;
}

.fc-title-logo {
  width: clamp(35px, 7vw, 55px);
  height: clamp(35px, 7vw, 55px);
  object-fit: contain;
  filter: drop-shadow(0 0 15px var(--fc-cyan-glow));
  animation: fcLogoGlow 3s ease-in-out infinite;
}

@keyframes fcTitleShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes fcLogoGlow {
  0%, 100% { filter: drop-shadow(0 0 12px var(--fc-cyan-glow)); }
  50% { filter: drop-shadow(0 0 25px rgba(0, 220, 255, 0.6)); }
}

/* ==========================================
   SECTION POURQUOI — LAYOUT
   ========================================== */
.fc-why-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ==========================================
   MODULES PROMESSES
   ========================================== */
.fc-promises {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fc-module {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3vw, 30px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(0, 180, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fc-module:hover {
  transform: translateX(8px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 180, 255, 0.1);
}

.fc-module:hover::before {
  opacity: 1;
}

.fc-module-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15) 0%, rgba(0, 140, 200, 0.08) 100%);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 14px;
  transition: all 0.4s ease;
}

.fc-module-icon svg {
  width: 26px;
  height: 26px;
  color: var(--fc-cyan);
}

.fc-module:hover .fc-module-icon {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.25) 0%, rgba(0, 140, 200, 0.15) 100%);
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
  transform: scale(1.08);
}

.fc-module-content h3 {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.fc-module-content p {
  font-size: clamp(0.85rem, 2vw, 0.92rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

.fc-module-glow {
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.fc-module:hover .fc-module-glow {
  opacity: 1;
}

/* ==========================================
   BADGE PRIX SIGNATURE
   ========================================== */
.fc-price-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fc-price-card {
  position: relative;
  width: clamp(240px, 35vw, 320px);
  height: clamp(240px, 35vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(212, 168, 83, 0.12) 0%,
    rgba(0, 180, 255, 0.08) 50%,
    rgba(10, 15, 30, 0.95) 100%
  );
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 83, 0.3);
  box-shadow:
    0 0 60px rgba(212, 168, 83, 0.2),
    0 0 100px rgba(0, 180, 255, 0.1),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
  animation: fcPriceFloat 6s ease-in-out infinite;
}

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

/* Anneaux décoratifs */
.fc-price-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  pointer-events: none;
}

.fc-price-ring-outer {
  inset: -15px;
  border-color: rgba(212, 168, 83, 0.15);
  animation: fcRingSpin 20s linear infinite;
}

.fc-price-ring-inner {
  inset: -8px;
  border-color: rgba(0, 180, 255, 0.1);
  animation: fcRingSpin 15s linear infinite reverse;
}

@keyframes fcRingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contenu prix */
.fc-price-content {
  text-align: center;
  z-index: 5;
}

.fc-price-label {
  display: block;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fc-gold);
  margin-bottom: 10px;
}

.fc-price-amount {
  display: block;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 40px rgba(212, 168, 83, 0.4);
}

.fc-price-amount sup {
  font-size: 45%;
  font-weight: 600;
  vertical-align: super;
  color: var(--fc-gold-light);
}

.fc-price-detail {
  display: block;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  margin-bottom: 18px;
}

.fc-btn-price {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  background: linear-gradient(135deg, var(--fc-gold) 0%, var(--fc-gold-light) 100%);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.fc-btn-price:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(212, 168, 83, 0.5);
}

/* Particules */
.fc-price-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fc-price-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--fc-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: fcParticle 4s ease-in-out infinite;
}

.fc-price-particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.fc-price-particles span:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; }
.fc-price-particles span:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 2s; }
.fc-price-particles span:nth-child(4) { bottom: 15%; right: 20%; animation-delay: 3s; }

@keyframes fcParticle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

/* ==========================================
   SECTION CONTACT
   ========================================== */
.fc-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fc-title-contact {
  margin-bottom: clamp(30px, 5vw, 50px);
}

/* Badge réponse rapide */
.fc-response-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(40px, 6vw, 60px);
  padding: 14px 28px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.fc-response-pulse {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  animation: fcPulse 2s ease-in-out infinite;
}

@keyframes fcPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.fc-response-badge svg {
  width: 20px;
  height: 20px;
  color: #25d366;
}

.fc-response-badge span {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   HUB CONTACT CENTRAL
   ========================================== */
.fc-contact-hub {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(30px, 5vw, 50px);
  margin-bottom: clamp(50px, 8vw, 70px);
}

/* Actions Grid */
.fc-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fc-action {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 22px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fc-action:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fc-action:hover::before {
  opacity: 1;
}

/* Couleurs par type */
.fc-action-whatsapp::before { background: #25d366; }
.fc-action-whatsapp:hover { border-color: rgba(37, 211, 102, 0.3); }
.fc-action-whatsapp .fc-action-icon { color: #25d366; }

.fc-action-phone::before { background: var(--fc-cyan); }
.fc-action-phone:hover { border-color: rgba(0, 212, 255, 0.3); }
.fc-action-phone .fc-action-icon { color: var(--fc-cyan); }

.fc-action-maps::before { background: #ea4335; }
.fc-action-maps:hover { border-color: rgba(234, 67, 53, 0.3); }
.fc-action-maps .fc-action-icon { color: #ea4335; }

.fc-action-email::before { background: var(--fc-gold); }
.fc-action-email:hover { border-color: rgba(212, 168, 83, 0.3); }
.fc-action-email .fc-action-icon { color: var(--fc-gold); }

.fc-action-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fc-action-icon svg {
  width: 24px;
  height: 24px;
}

.fc-action:hover .fc-action-icon {
  transform: scale(1.1);
}

.fc-action-text {
  flex: 1;
}

.fc-action-text strong {
  display: block;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.fc-action-text span {
  font-size: clamp(0.75rem, 2vw, 0.82rem);
  color: rgba(255, 255, 255, 0.5);
}

.fc-action-arrow {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.fc-action:hover .fc-action-arrow {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

/* Panel Infos */
.fc-infos-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fc-info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(22px, 3vw, 28px);
  background: linear-gradient(
    135deg,
    rgba(212, 168, 83, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.fc-info-block:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fc-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 12px;
}

.fc-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--fc-gold);
}

.fc-info-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fc-gold);
  margin-bottom: 10px;
}

.fc-info-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.fc-info-highlight {
  color: #fff !important;
  font-weight: 600;
  font-size: 1.1rem !important;
}

/* ==========================================
   QR CODES / RÉSEAUX SOCIAUX
   ========================================== */
.fc-socials {
  text-align: center;
  padding-top: clamp(30px, 5vw, 50px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fc-socials-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 25px;
}

.fc-socials-grid {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 4vw, 30px);
  flex-wrap: wrap;
}

.fc-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fc-social-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fc-social-item img {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.fc-social-item:hover img {
  transform: scale(1.05);
}

.fc-social-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Tablet */
@media (max-width: 968px) {
  .fc-why-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .fc-price-column {
    order: -1;
  }
  
  .fc-contact-hub {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .fc-infos-panel {
    flex-direction: row;
  }
  
  .fc-info-block {
    flex: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .fc-section {
    padding: clamp(60px, 10vw, 100px) 0;
  }
  
  .fc-zone-badge {
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .fc-zone-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  
  .fc-title-main {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .fc-module {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .fc-module-icon {
    margin: 0 auto;
  }
  
  .fc-price-card {
    width: clamp(220px, 60vw, 280px);
    height: clamp(220px, 60vw, 280px);
  }
  
  .fc-actions-grid {
    grid-template-columns: 1fr;
  }
  
  .fc-action {
    padding: 18px 20px;
  }
  
  .fc-infos-panel {
    flex-direction: column;
  }
  
  .fc-socials-grid {
    gap: 12px;
  }
  
  .fc-social-item {
    padding: 14px;
  }
  
  /* Animations réduites */
  .fc-halo {
    animation: none;
    opacity: 0.3;
  }
  
  .fc-price-card {
    animation: none;
  }
  
  .fc-title-logo {
    animation: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .fc-container {
    padding: 0 18px;
  }
  
  .fc-zone-line {
    width: 30px;
  }
  
  .fc-price-amount {
    font-size: 2.8rem;
  }
  
  .fc-btn-price {
    padding: 9px 18px;
    font-size: 0.75rem;
  }
  
  .fc-response-badge {
    padding: 12px 20px;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .fc-action-icon {
    width: 40px;
    height: 40px;
  }
  
  .fc-social-item img {
    width: 55px;
    height: 55px;
  }
}

/* ==========================================
   FALLBACKS
   ========================================== */
@supports not (backdrop-filter: blur(10px)) {
  .fc-module {
    background: rgba(15, 20, 35, 0.95);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .fc-halo,
  .fc-price-card,
  .fc-title-logo,
  .fc-response-pulse,
  .fc-price-particles span {
    animation: none;
  }
  
  .fc-module,
  .fc-action,
  .fc-social-item {
    transition: none;
  }
}