/*
Theme Name: Laserlab
Author: Jérémy
Version: 1.0
Description: Thème WordPress personnalisé pour centre esthétique.
*/

@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');


* {
  box-sizing: border-box;
}



body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Zen Dots', sans-serif;
}

a {
    color: #00eaff;
    text-decoration: none;
}

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

/* LIMITATION footer uniquement sur mobile */
footer .container {
    max-width: 768px;
}

footer {
    width: 100%;
    overflow-x: hidden;
}


/* HEADER */
header {
    background-color: #000;
    padding: 20px 0;
    border-bottom: 1px solid #00eaff;
}

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

/* LOGO */
.logo-img {
    height: 60px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInZoom 1s forwards ease;
}

@keyframes fadeInZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* NAVIGATION */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav li a {
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

nav li a:hover {
    color: #00eaff;
    text-shadow: 0 0 5px #00eaff;
}

.desktop-menu {
    display: block;
}

/* HERO */
.hero {
    background: url('https://laserlab-sete.fr/wp-content/uploads/2025/03/fond9.png') center/cover no-repeat;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}


.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}


.hero-content.two-columns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.hero-logo-container {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-width: 100%;
    width: 450px;
    animation: fadeInZoom 1s ease forwards;
    opacity: 0;
    transform: scale(0.8);
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Zen Dots', sans-serif;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {

    .hero-logo {
        display: none;
    }
}



/*PRESENTATION DU CENTRE */

.presentation-gallery {
  width: 100%;
  max-width: 400px;
  height: 550px; /* fixe pour éviter les fluctuations */
  margin: 40px auto 0 auto;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-color: #0d1215;
  box-shadow: 0 0 30px rgba(0, 234, 255, 0.15);
}

.presentation-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* important pour garder un rendu propre même si les images sont différentes */
  border-radius: 18px;
  transition: opacity 1.2s ease-in-out;
  animation: slow-zoom 20s ease-in-out infinite alternate;
}


@keyframes slow-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}



@media screen and (max-width: 768px) {
  .accueil-epilation .container.split {
    flex-direction: column !important;
    gap: 0;
    margin-bottom: 80px;
  }

  .accueil-epilation .container.split:last-child {
    margin-bottom: 0;
  }

  .accueil-epilation .texte {
    margin-bottom: -100px; /* 🧨 espace visuellement réduit */
  }

  .accueil-epilation .image {
    margin-top: 0 !important; /* assure-toi qu'il n'y a pas un décalage ici */
    padding-top: 0;
  }


  .accueil-epilation .texte h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .accueil-epilation .texte p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .accueil-epilation .image {
    margin-top: 0;
  }

  .accueil-epilation .image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.1);
    margin: 0;
  }
}










/* CTA */
.cta-button {
    background-color: #00eaff;
    color: #000;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
    transition: 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00eaff, 0 0 30px #00eaff;
}

/* SECTIONS */
section {
    padding: 80px 20px;
    text-align: center;
}

/* SPLIT SECTIONS */
.split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.split.reverse {
    flex-direction: row-reverse;
}

.split .texte, .split .image {
    flex: 1 1 400px;
}

.split img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* CTA FINAL */
.accueil-cta {
    background-color: #111;
    padding: 80px 20px;
    text-align: center;
}

footer {
    background: #000;
    color: #888;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}



/* === BURGER BUTTON ANIMÉ === */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: 0.3s ease;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: #00eaff;
  border-radius: 3px;
  transition: all 0.4s ease;
  box-shadow: 0 0 5px #00eaff;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


/* === MENU MOBILE GLOW === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background: #000;
  box-shadow: -2px 0 20px #00eaff55;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 100px 30px 30px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li a {
  color: white;
  font-size: 20px;
  text-shadow: 0 0 10px #00eaff;
  font-weight: bold;
  transition: 0.3s;
}

.mobile-menu-list li a:hover {
  color: #00eaff;
  text-shadow: 0 0 15px #00eaff;
}


/* === MENU DESKTOP GLOW === */
.desktop-menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-menu li a {
  color: white;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}

.desktop-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #00eaff;
  box-shadow: 0 0 6px #00eaff;
  transition: width 0.4s ease;
}

.desktop-menu li a:hover::after {
  width: 100%;
}

.desktop-menu li a:hover {
  color: #00eaff;
  text-shadow: 0 0 6px #00eaff;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-container {
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
}








section p {
    max-width: 850px;
    margin: 0 auto 20px auto;
    font-size: 18px;
    line-height: 1.6;
}



/* BARRE STICKY BAS DE PAGE */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  background-color: #000;
  border-top: 1px solid #00eaff;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  transform: translateY(0);
}

.sticky-container {
  width: 100%;
  max-width: 850px;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

.sticky-button {
  background-color: #00eaff;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
  transition: 0.3s ease;
  white-space: nowrap;
  font-size: 16px;
}

/* HOVER EFFET POUR ORDINATEUR */
.sticky-button:hover {
  background-color: #00d5e0;
  box-shadow: 0 0 20px #00eaff, 0 0 30px #00eaff;
}

/* 💡 VERSION MOBILE LÉGÈRE */
@media screen and (max-width: 768px) {
  .sticky-bar {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }

  .sticky-bar.visible {
    opacity: 1;
    pointer-events: auto;
  }
}



/* Évite que le footer ou autre contenu passe dessous */
body {
    padding-bottom: 60px; /* ajustable selon la hauteur de ta sticky bar */
}























/*PRESTATIONS*/

/* PAGE PRESTATIONS */

.background {

  background: url('https://laserlab-sete.fr/wp-content/uploads/2025/03/fond9.png') center/cover no-repeat;

  align-items: center;
  justify-content: center;
}
/* --- INTERACTIVE DEVICE SECTION --- */

.device-burst {
  padding: 100px 20px;
  background: #0b111a;
  display: flex;
  justify-content: center;
 flex-direction: column;
  align-items: center;
}

.device-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.device-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 234, 255, 0.1);
}

/* Point central */

.point-center {
  width: 36px;
  height: 36px;
  background-color: #00eaff;
  border-radius: 50%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 0 12px #00eaff, 0 0 24px rgba(0, 234, 255, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 234, 255, 0.7),
                0 0 12px #00eaff;
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 234, 255, 0),
                0 0 16px #00eaff;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 234, 255, 0),
                0 0 12px #00eaff;
  }
}








/* Bulles */

/* === BULLES GÉNÉRIQUES POUR TOUS (LASERA + ESTHESKIN) === */
.bubble {
  position: absolute;
  min-width: 150px;
  max-width: 160px;
  padding: 16px 20px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 234, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.2), 0 0 10px rgba(153, 0, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 5;
}

.bubble span {
  display: block;
  color: #00eaff;
  font-weight: bold;
  text-shadow:
    0 0 6px #00eaff,
    0 0 3px #9900ff,
    1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

/* === POSITION IDENTIQUE POUR TOUTES LES BULLES (Mobile & Desktop) === */
.b1 { top: 0%; left: 50%; transform: translate(-50%, -50%) scale(0.6); }
.b2 { top: 20%; left: 90%; transform: translate(-50%, -50%) scale(0.6); }
.b3 { top: 70%; left: 90%; transform: translate(-50%, -50%) scale(0.6); }
.b4 { top: 100%; left: 50%; transform: translate(-50%, -50%) scale(0.6); }
.b5 { top: 70%; left: 10%; transform: translate(-50%, -50%) scale(0.6); }
.b6 { top: 20%; left: 10%; transform: translate(-50%, -50%) scale(0.6); }
.b7 { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6); }

/* === ANIMATION AU SURVOL === */
.device-wrapper:hover .b1 { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.1s; }
.device-wrapper:hover .b2 { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.2s; }
.device-wrapper:hover .b3 { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.3s; }
.device-wrapper:hover .b4 { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.4s; }
.device-wrapper:hover .b5 { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.5s; }
.device-wrapper:hover .b6 { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.6s; }
.device-wrapper:hover .b7 { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.7s; }

/* === TEXTE D'INTRO BURST === */
.burst-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.burst-title {
  font-size: 32px;
  font-family: 'Zen Dots', sans-serif;
  color: #00eaff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
}

.burst-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cdd8e0;
  font-weight: 300;
}

/* === ADAPTATION POUR MOBILE === */
@media screen and (max-width: 768px) {
  .bubble {
    width: 110px;
    height: 110px;
    font-size: 11px;
    padding: 6px;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.1);
    backdrop-filter: blur(6px);
    border-width: 1px;
  }

  .bubble span {
    padding: 6px;
    font-size: 11px;
    line-height: 1.3;
  }

  .b1, .b2, .b3, .b4, .b5, .b6, .b7 {
    transform: translate(-50%, -50%) scale(0.8);
  }
}





/* FAQ */
.faq-section {
    text-align: center;
    padding: 80px 20px;
}
.faq-section h2 {
    font-family: 'Zen Dots', sans-serif;
    font-size: 28px;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
    margin-bottom: 40px;
}
.faq details {
    background: #111;
    margin: 10px auto;
    padding: 15px 20px;
    border: 1px solid #00eaff;
    border-radius: 8px;
    max-width: 850px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.08);
}
.faq summary {
    font-weight: bold;
    color: #00eaff;
    position: relative;
}
.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24px;
    color: #00eaff;
    transition: transform 0.3s ease;
}
.faq details[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}
.faq p {
    color: white;
    margin-top: 10px;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .split, .split.reverse {
        flex-direction: column;
        text-align: center;
    }

    .split .texte, .split .image {
        max-width: 90%;
    }

    .prestations-intro h1 {
        font-size: 28px;
    }

    .appareil-section h2 {
        font-size: 24px;
    }
}























/* === VARIANTS DE BACKGROUND PREMIUM === */

/* Bleu pétrole foncé avec un léger glow */
.bg-bleu-petrole {
    background-color: #0a1c24;
    background-image: radial-gradient(circle at top right, rgba(0, 234, 255, 0.05), transparent 70%);
}

/* Gris bleuté légèrement métallisé */
.bg-gris-bleute {
    background-color: #121820;
    background-image: linear-gradient(135deg, rgba(0, 234, 255, 0.02), transparent);
}

/* Dégradé néon doux */
.bg-neon-degrade {
    background: linear-gradient(to bottom right, #000, #0a1c24, #121820);
}

/* Section avec bordures haut/bas effet néon */
.section-glow-border {
    border-top: 1px solid rgba(0, 234, 255, 0.2);
    border-bottom: 1px solid rgba(0, 234, 255, 0.2);
    box-shadow: inset 0 2px 10px rgba(0, 234, 255, 0.08), inset 0 -2px 10px rgba(0, 234, 255, 0.08);
}

/* Lueur subtile sur tout le fond */
.bg-light-glow {
    background-color: #0b0f12;
    background-image: radial-gradient(circle at 30% 20%, rgba(0, 234, 255, 0.04), transparent 50%);
}

/* Animation légère d’apparition */
[data-aos] {
    transition: all 0.6s ease;
}


/* HERO LUXE */
.hero-luxe {
  animation: neon-flash 1.8s ease-out;
  position: relative;
  background: url('https://laserlab-sete.fr/wp-content/uploads/2025/03/fond9.png') center/cover no-repeat;
  height: 80vh; /* ✅ Plein écran sur desktop */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

/* ✅ Mobile : hauteur auto, padding ajusté */
@media screen and (max-width: 768px) {
  .hero-luxe {
    animation: neon-flash 2.4s ease-out;
    height: auto; /* ✅ hauteur dynamique */
    padding: 60px 20px; /* ✅ un peu de respiration */
  }
}



.hero-luxe .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0,234,255,0.1), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-luxe .hero-content {
    position: relative;
    z-index: 2;
}

.gradient-title {
    font-size: 42px;
    background: linear-gradient(to right, #00eaff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes neon-flash {
  0% {
    opacity: 0;
    filter: brightness(1.2) saturate(1.2);
  }
  30% {
    opacity: 1;
    filter: brightness(2.5) saturate(2.5);
  }
  60% {
    filter: brightness(1.5) saturate(1.5);
  }
  100% {
    filter: brightness(1) saturate(1);
  }
}




/* Image flottante */
.floating-img img {
    transition: transform 0.6s ease;
}
.floating-img img:hover {
    transform: scale(1.02) rotate(1deg);
}

/* CTA dans hero */
.hero-cta {
    margin-top: 30px;
    padding: 14px 30px;
    font-size: 16px;
}


/* Empêche les débordements horizontaux */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}





.contact-page {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* SECTION INTRO */
.contact-intro {
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 900px;
    margin: auto;
}

.contact-intro h1 {
    font-size: 40px;
    color: #00eaff;
    text-shadow: 0 0 15px #00eaff;
    font-family: 'Zen Dots', sans-serif;
}

.contact-intro p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

/* GRILLE DE CONTACT */
.contact-infos {
  padding: 80px 20px;
  background: #0a1c24;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,234,255,0.03);
  text-align: center;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    text-align: center;
}

.contact-box {
    flex: 1 1 250px;
    background: #111;
    border: 1px solid #00eaff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 0 15px rgba(0,234,255,0.1);
    transition: 0.3s ease;
}

.contact-box:hover {
    box-shadow: 0 0 30px #00eaff;
    transform: translateY(-5px);
}

.contact-box i {
    font-size: 32px;
    color: #00eaff;
    margin-bottom: 15px;
}

/* MAP */
.map-section {
    padding: 80px 20px;
    text-align: center;
}

.map-section h2 {
    font-family: 'Zen Dots', sans-serif;
    color: #00eaff;
    margin-bottom: 20px;
    font-size: 32px;
    text-shadow: 0 0 10px #00eaff;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,234,255,0.2);
}

/* PLANITY */
.planity-section {
    padding: 80px 20px;
    text-align: center;
}

.planity-section h2 {
    font-family: 'Zen Dots', sans-serif;
    color: #00eaff;
    font-size: 32px;
    text-shadow: 0 0 10px #00eaff;
    margin-bottom: 20px;
}

.planity-section p {
    color: #ccc;
    font-size: 17px;
}

.planity-container {
    margin-top: 30px;
    padding: 20px;
    border: 1px dashed #00eaff;
    border-radius: 8px;
    max-width: 800px;
    margin-inline: auto;
    background: #0a0a0a;
    box-shadow: 0 0 20px rgba(0,234,255,0.1);
}





/* SECTION GLOWS */
.contact-hero,
.contact-reservation {
    padding: 100px 20px;
    text-align: center;
    color: white;
}
.contact-hero h1,
.contact-reservation h2 {
    font-size: 36px;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
    margin-bottom: 20px;
}
.contact-hero p,
.contact-reservation p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #ccc;
}

/* GRID INFO */
.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 80px 20px;
    text-align: center;
}

.info-box {
    background: #0e0e0e;
    border: 1px solid rgba(0, 234, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.05);
    transition: 0.3s ease;
}
.info-box:hover {
    box-shadow: 0 0 20px #00eaff33;
    transform: translateY(-5px);
}
.info-box i {
    font-size: 28px;
    color: #00eaff;
    margin-bottom: 15px;
    text-shadow: 0 0 8px #00eaff;
}
.info-box h3 {
    margin-bottom: 10px;
    font-family: 'Zen Dots', sans-serif;
}

/* MAP */
.contact-map-section {
    padding: 80px 20px;
    background: #000;
    text-align: center;
}
.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.15);
    max-width: 100%;
}

/* PLANITY */
.planity-placeholder {
    margin-top: 40px;
    padding: 30px;
    border: 2px dashed #00eaff55;
    border-radius: 12px;
    background: rgba(0, 234, 255, 0.02);
    color: #00eaff;
    font-weight: bold;
    text-shadow: 0 0 5px #00eaff;
}










.neon-laser-separator {
  position: relative;
  width: 70%;
  height: 5px;
  border-radius: 5px;
  margin: 0px auto 0px auto;
  background: linear-gradient(90deg, #00eaff, #00eaff88, #00eaff);
  overflow: hidden;
  box-shadow: 0 0 20px #00eaff55, 0 0 40px #00eaff33;
}

.neon-laser-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00eaffcc, transparent);
  animation: laserScan 2.5s infinite linear;
}

@keyframes laserScan {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}







/* TARIFS */

/* === PAGE TARIFS PREMIUM === */

.icon-tarif {
  color: #00eaff;
  margin-right: 12px;
  text-shadow: 0 0 8px #00eaff88;
  font-size: 1.2em;
  vertical-align: middle;
}



.page-tarifs {
  padding: 80px 20px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* === INTRO === */
.tarif-intro h1,
.tarif-intro h1 {
  font-family: 'Zen Dots', sans-serif;
  font-size: 40px;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
}
.tarif-intro p {
  font-size: 18px;
  color: #cdd8e0;
  margin-top: 10px;
}

/* === SWITCH BUTTONS === */

.epilation-laser-section {
  padding: 80px 30px;
  background: #000;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 234, 255, 0.02);
  text-align: center;
  transition: background 0.5s ease;
}

.epilation-laser-section .section-title {
  font-family: 'Zen Dots', sans-serif;
  color: #00eaff;
  font-size: 36px;
  text-shadow: 0 0 12px rgba(0, 234, 255, 0.4);
  margin-bottom: 10px;
}

.epilation-laser-section .section-subtitle {
  color: #cdd8e0;
  font-size: 18px;
  margin-bottom: 40px;
}

.tarif-switcher {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gender-btn, .zone-btn {
  padding: 12px 25px;
  border: 2px solid #00eaff;
  background: transparent;
  color: #00eaff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 16px;
}

.gender-btn.active, .zone-btn.active {
  background: #00eaff;
  color: #000;
  box-shadow: 0 0 10px #00eaff;
}

/* === LASER TARIFF TABLES === */
.tarif-table {
  display: none;
  background: rgba(255, 255, 255, 0.015);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.05);
  margin-bottom: 30px;
  animation: fadeIn 0.4s ease;
}

.tarif-table.active {
  display: block;
}

.tarif-table h3 {
  color: #00eaff;
  font-size: 24px;
  margin-bottom: 25px;
  font-family: 'Zen Dots', sans-serif;
  text-shadow: 0 0 8px #00eaff55;
}

.tarif-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.015);
  color: white;
  font-size: 16px;
  transition: 0.3s ease;
  position: relative;
}

.tarif-row:hover {
  background: rgba(0, 234, 255, 0.1);
  box-shadow: 0 0 10px #00eaff55;
  transform: scale(1.02);
}


.lasera-section {
  padding: 80px 20px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,234,255,0.03);
  text-align: center;
  margin-bottom: 100px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === NOTE EN BAS === */
.tarif-note {
  font-size: 14px;
  color: #cdd8e0;
  margin-top: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* === ESTHESKIN PREMIUM === */
/* Icône devant chaque ligne */
.esthe-card ul li i {
  margin-right: 8px;
  color: #00eaff;
  text-shadow: 0 0 4px #00eaff;
}

/* Cartes différenciées */

.esthe-card.basic {
  border-top: 4px solid rgba(0, 234, 255, 0.2);
  background: rgba(0, 234, 255, 0.05); /* Bleu léger */
  transition: all 0.4s ease;
}

/* Cartes Glow : Intensité intermédiaire */
.esthe-card.glow {
  border-top: 4px solid rgba(0, 234, 255, 0.4);
  background: linear-gradient(145deg, rgba(0,234,255,0.1), rgba(0,234,255,0.05)); /* Bleu et dégradé doux */
  box-shadow: 0 0 40px rgba(0,234,255,0.2);
  transform: scale(1.00);
  transition: all 0.4s ease;
}

/* Cartes Premium : Ajout d'une touche de violet */
.esthe-card.premium {
  border-top: 4px solid #00eaff; /* Bordure forte pour le luxe */
  background: linear-gradient(145deg, rgba(0,234,255,0.05), rgba(255, 0, 255, 0.1), rgba(0, 234, 255, 0.2)); /* Violet et bleu en dégradé */
  box-shadow: 0 0 40px rgba(0,234,255,0.2), 0 0 60px rgba(255,0,255,0.2); /* Ombres plus fortes */
  transform: scale(1.00);
  z-index: 1;
  transition: all 0.4s ease;
}

/* Au survol de la carte Premium */
.esthe-card.premium:hover {
  box-shadow: 0 0 60px #00eaff66, 0 0 60px rgba(255,0,255,0.3); /* Lueur violette au survol */
  transform: scale(1.05); /* Léger effet d'agrandissement */
}










.estheskin-section {
  padding: 80px 20px;
  background: #0a1c24;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,234,255,0.03);
  text-align: center;
  
}

.estheskin-title {
  font-family: 'Zen Dots', sans-serif;
  font-size: 34px;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff88;
  margin-bottom: 10px;
}

.estheskin-subtitle {
  color: #cdd8e0;
  font-size: 18px;
  margin-bottom: 50px;
}

.estheskin-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.esthe-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(0, 234, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.05);
  border-radius: 16px;
  padding: 30px 25px;
  flex: 1 1 300px;
  max-width: 350px;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  position: relative;
}

.esthe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0,234,255,0.15);
}

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

.card-header h3 {
  font-size: 22px;
  font-family: 'Zen Dots', sans-serif;
  color: #00eaff;
}

.card-price {
  font-size: 22px;
  font-weight: bold;
  color: #00eaff;
  background: rgba(0, 234, 255, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  text-shadow: 0 0 6px #00eaff88;
}

.esthe-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.esthe-card ul li {
  color: #cdd8e0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.card-tech {
  font-size: 13px;
  color: #a6c7d6;
  margin-top: auto;
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .estheskin-cards {
    flex-direction: column;
    align-items: center;
  }

  .esthe-card {
    max-width: 100%;
  }

  .card-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .card-price {
    align-self: flex-end;
  }
}






/* Responsive */
@media screen and (max-width: 768px) {
  .estheskin-cards {
    flex-direction: column;
    align-items: center;
  }

  .esthe-card {
    max-width: 100%;
  }

  .card-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .card-price {
    align-self: flex-end;
  }
}


/* === RDV D'INFORMATION === */
.rendez-vous-info {
  background: rgba(0, 234, 255, 0.03);
  padding: 50px 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.05);
}

.rendez-vous-info h2 {
  font-family: 'Zen Dots', sans-serif;
  color: #00eaff;
  font-size: 26px;
  margin-bottom: 20px;
}

.rendez-vous-info p {
  color: #cdd8e0;
  font-size: 17px;
  line-height: 1.7;
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}

.rendez-vous-info .cta-button {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  background: #00eaff;
  color: #000;
  border-radius: 30px;
  transition: 0.3s;
  box-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
}
.rendez-vous-info .cta-button:hover {
  background: #00cce6;
  color: white;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .soin-card {
    flex-direction: column;
    text-align: left;
  }
  .soin-right {
    text-align: left;
    margin-top: 20px;
  }

  .gender-btn, .zone-btn {
    flex: 1 1 45%;
    text-align: center;
  }

  .tarif-row {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }

  .tarif-row span:last-child {
    font-weight: bold;
    color: #00eaff;
  }
}

.container-tarif {
  max-width: 800px;
  margin: 0 auto;
}






.scroll-down-svg.violet {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounceDown 2.5s infinite ease-in-out;
}

.scroll-down-svg.violet svg {
  stroke: #00eaff;
  stroke-width: 2;
  fill: none;
  filter: drop-shadow(0 0 6px #00eaff);
}

.scroll-down-svg.violet .arrow-1,
.scroll-down-svg.violet .arrow-2 {
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}


/* Scrollbar (WebKit) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a1c24;
  border-left: 1px solid #00eaff33;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00eaff, #a855f7);
  border-radius: 10px;
  box-shadow: 0 0 6px #00eaffaa;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00bbdd, #9333ea);
}

/* Firefox (couleurs de base) */
html {
  scrollbar-width: thin;
  scrollbar-color: #00eaff #0a1c24;
}





.btn-wrapper-neon {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}

.btn-neon-border {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: bold;
  color: #00eaff;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid #00eaff;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

.btn-neon-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 50px;
  background: linear-gradient(
    45deg,
    #00eaff,
    #9900ff,
    #00eaff,
    #9900ff,
    #00eaff
  );
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  animation: neon-glow 10s linear infinite;
}

.btn-neon-border:hover {
  color: #fff;
  box-shadow: 0 0 20px #00eaff, 0 0 40px #9900ff;
}

@keyframes neon-glow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}



 /* page le centre */

.page-le-centre {
  background: #000;
  color: #fff;
  padding-bottom: 80px;
}

.title-neon {
  font-size: 40px;
  text-align: center;
  color: #00eaff;
  text-shadow: 0 0 15px #00eaff, 0 0 10px #9900ff;
  margin-bottom: 10px;
}

.subtitle-neon {
  text-align: center;
  font-size: 18px;
  color: #cdd8e0;
  margin-bottom: 60px;
}

/* Section principale */
.slider-section {
  padding: 40px 20px;
  background: #000;
  color: white;
  text-align: center;
}

.slider-heading h1 {
  font-family: 'Zen Dots', sans-serif;
  color: #00eaff;
  font-size: 2.2em;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #00eaff;
}

.slider-heading p {
  font-size: 1em;
  color: #cceeff;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Carrousel */
.image-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.image-slider img {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  scroll-snap-align: start;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 234, 255, 0.15);
  transition: transform 0.3s ease;
}

.image-slider img:hover {
  transform: scale(1.05);
}

/* Mobile uniquement */
@media screen and (max-width: 768px) {
  .image-slider {
    padding: 0 10px;
  }

  .image-slider::before {
    content: "↔️ Glissez pour faire défiler";
    display: block;
    font-size: 14px;
    color: #00eaff;
    margin-bottom: 12px;
    opacity: 0.7;
  }

  .image-slider img {
    max-width: 80%;
    margin: 0 auto;
  }
}

}
