/* ==========================================================================
   BEAUTY KIDS EVENTS - STYLES PRINCIPAUX
   ========================================================================== */

:root {
  --primary: #ff007c;      /* Rose doux */
  --primary-dark: #f472b6; /* Rose plus soutenu */
  --secondary: #fde68a;    /* Jaune pastel */
  --accent: #c4b5fd;       /* Violet/Mauve pastel */
  --dark: #4b5563;         /* Gris texte */
  --dark-heading: #1f2937; /* Gris foncé titres */
  --light: #f9fafb;        /* Fond clair */
  --white: #ffffff;
  --gold: #d4af37;
  
  --font-title: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-fancy: 'Dancing Script', cursive;
  
  --shadow: 0 10px 30px rgba(244, 114, 182, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

li {
  list-style: none;
}

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

/* ==========================================================================
   COMPONENTS / BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(249, 168, 212, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 114, 182, 0.6);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background-color: #c5a028;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  display: block;
  width: 100%;
}

/* Section Header standard */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-family: var(--font-fancy);
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  color: var(--dark-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--primary-dark);
}

.section-sub {
  font-size: 1.1rem;
  color: #6b7280;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background-color: var(--light);
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.85rem;
  color: #6b7280;
  padding: 8px 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-socials a {
  margin-left: 18px;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent; 
}

.topbar-socials a:hover {
  color: var(--primary);
  transform: scale(1.15);
}

.topbar-socials a i {
  text-decoration: none !important;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
#header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 140px;
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%; 
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0;
}

.header-logo-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}

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

#main-nav {
  height: 100%;
  display: flex;
  align-items: center;
}

#main-nav ul {
  display: flex;
  align-items: center;
  height: 100%;
}

#main-nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
}

#main-nav ul li a {
  padding: 0 20px;
  font-weight: 500;
  color: var(--dark-heading);
  font-size: 0.95rem;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

#main-nav ul li a:hover {
  color: var(--primary-dark);
}

#main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

#main-nav ul li a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  height: 100%;
}

.burger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-heading);
}

/* ==========================================================================
   HERO SECTION & INTEGRATION MASCOTTE
   ========================================================================== */
.hero {
  position: relative;
  height: calc(100vh - 176px);
  min-height: 650px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-content {
  max-width: 600px;
  z-index: 10;
  transform: translateY(30px);
  transition: transform 0.8s ease;
}

.slide.active .slide-content {
  transform: translateY(0);
}

.slide-tag {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.slide h1 {
  font-family: var(--font-title);
  font-size: 3.8rem;
  line-height: 1.1;
  color: var(--dark-heading);
  font-weight: 900;
  margin-bottom: 25px;
}

.slide h1 em {
  font-family: var(--font-fancy);
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  display: block;
  margin-top: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.slide-sub {
  font-size: 1.15rem;
  text-align: justify;
  color: #fff;
  margin-bottom: 35px;
}

.slide-btns .btn {
  margin-right: 15px;
}

.slide-deco {
  position: absolute !important;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 5;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.slide-deco .float-card {
  position: absolute !important;
  background: var(--white) !important;
  padding: 12px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
  font-weight: 600 !important;
  color: var(--dark-heading) !important;
  font-size: 0.9rem !important;
  white-space: nowrap !important;
  border: 1px solid rgba(244, 114, 182, 0.2) !important;
  z-index: 12 !important;
  animation: floatCards 4s infinite alternate ease-in-out;
}

.slide-deco .fc-1 { top: 40px !important; left: 40px !important; animation-delay: 0s; }
.slide-deco .fc-2 { top: 100px !important; right: -20px !important; animation-delay: 0.8s; }
.slide-deco .fc-3 { bottom: 120px !important; right: -10px !important; animation-delay: 1.5s; }
.slide-deco .fc-4 { bottom: 30px !important; left: 160px !important; animation-delay: 0.4s; }
.slide-deco .fc-5 { bottom: 140px !important; left: -40px !important; animation-delay: 2.2s; }
.slide-deco .fc-6 { bottom: 240px !important; left: -50px !important; animation-delay: 1.2s; }

.logo-character-wrap {
  width: 460px;
  height: 460px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 4px solid rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 6;
  animation: floatMascotte 5s infinite alternate ease-in-out;
}

.logo-character-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes floatMascotte {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

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

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.15);
  border: none;
  margin-right: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-dark);
  width: 30px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 15;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

/* ==========================================================================
   CHIFFRES CLÉS (STATS)
   ========================================================================= */
.stats {
  padding: 60px 0;
  position: relative;
  z-index: 20;
  margin-top: -30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--white);
  padding: 40px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}

.stat-item span:not(.stat-num) {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.stat-item p {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 5px;
  font-weight: 500;
}

/* ==========================================================================
   PRESTATIONS CARDS & ALIGNEMENT GENERAL DES PRIX
   ========================================================================== */
.prestations {
  padding: 100px 0;
  background-color: #fdf8fa;
}

.presta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.presta-card.presta-particulier {
  border: 2px solid #c4b5fd;
  background: #fff;
}
.presta-card.presta-particulier::before {
  content: '🌸 Particulier';
  position: absolute;
  top: -14px;
  right: 30px;
  background: var(--primary-dark);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(244, 114, 182, 0.3); z-index: 10;
}
.presta-card.presta-professionnel {
  border: 2px solid #ff007c;
  background: linear-gradient(to bottom, #ffffff, #faf5ff);
}
.presta-card.presta-professionnel::before {
  content: '💼 Professionnel';
  position: absolute; top: -14px;
  right: 30px;
  background: #7c3aed;
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
  z-index: 10;
 }
 .presta-card.presta-professionnel {
   border: 2px solid #7c3aed;
   background: linear-gradient(to bottom, #ffffff, #faf5ff);
 }
 .presta-card.presta-professionnel::before {
   content: '💼 Professionnel';
   position: absolute;
   top: -14px;
   right: 30px;
   background: #7c3aed;
   color: white;
   padding: 4px 16px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 600;
   letter-spacing: 0.5px;
   box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
   z-index: 10;
 }
 
 .presta-card.presta-pro-part {
   border: 2px solid #ff007c;
   background: #fff;
 }
 .presta-card.presta-pro-part::before {
   content: '🌸 Particulier / 💼 Professionnel';
   position: absolute;
   top: -14px;
   right: 30px;
   background: #ff007c;
   color: white;
   padding: 4px 16px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 600;
   letter-spacing: 0.5px;
   box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
   z-index: 10;
 }

.presta-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: var(--transition);
  border: 2px solid #ff007c!important;
  position: relative;
  display: flex;
  flex-direction: column;
}

.presta-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.presta-card h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  text-align: center;
  color: var(--dark-heading);
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: 74px; /* Compense magiquement l'absence de badge sur l'Animation Spa */
}

.presta-card h3 small {
  font-size: 0.9rem;
  color: #9ca3af;
  font-family: var(--font-body);
  font-weight: 400;
}

.card-badges-row {
  display: flex;
  gap: 12px;
  margin-top: -10px;
  margin-bottom: 20px;
  width: 100%;
}

.badge-btn {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff !important;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.badge-btn.b-particulier {
  background: linear-gradient(135deg, #D21E8A 0%, #6A51A3 50%, #159FB0 100%) !important;
}

.badge-btn.b-professionnel {
  background: linear-gradient(135deg, #159FB0 0%, #6A51A3 50%, #D21E8A 100%) !important;
}

.presta-card .img-inner {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  height: 200px;
}

.presta-card .img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.presta-card:hover .img-inner img {
  transform: scale(1.08);
}

.presta-card ul {
  margin-bottom: 25px;
  flex: 1; /* Pousse le prix et le bouton vers le bas de manière uniforme */
}

.presta-card ul li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #4b5563;
}

.presta-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 20px;
  text-align: center;
}

.presta-card .btn {
  margin-top: auto !important;
  display: block;
  width: 100%;
}

/* ==========================================================================
   SECTIONS INTRO (PARTICULIERS & PROFESSIONNELS)
   ========================================================================== */
.intro {
  padding: 100px 0;
}

#professionnels {
  background-color: #faf5ff;
}

.intro-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

#professionnels .intro-flex {
  flex-direction: row-reverse;
}

.intro-img {
  flex: 1;
  align-self: stretch;
  display: flex;
  position: relative;
}

.img-cover-preet {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark-heading);
  color: white;
  padding: 14px 24px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 2;
}

.badge-float span { color: var(--secondary); }

.intro-text {
  flex: 1.2;
}

.intro-text h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  color: var(--dark-heading);
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.intro-text h2 em {
  font-family: var(--font-fancy);
  color: var(--primary-dark);
  font-style: italic;
  font-weight: 400;
}

.intro-text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #58616e;
}

.check-list {
  margin: 30px 0;
}

.check-list li {
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--dark-heading);
  display: flex;
  align-items: center;
}

/* ==========================================================================
   COMMENT ÇA MARCHE (STEPS) - VERTICAL DESKTOP CORRIGÉ
   ========================================================================== */
.how-it-works {
  padding: 100px 0;
  background-color: var(--dark-heading);
  color: white;
  position: relative;
}

.section-header.light h2 { color: white; }
.section-header.light .section-sub { color: #9ca3af; }

.steps-grid {
  display: flex;
  flex-direction: row; /* Aligné horizontalement en 3 colonnes sur PC */
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.step-num {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: -20px;
  transition: var(--transition);
}

.step:hover .step-num {
  color: var(--primary);
  transform: translateY(-5px);
}

.step h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.step p {
  color: #9ca3af;
  font-size: 0.95rem;
}

.step-arrow {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
  padding-bottom: 40px;
}

/* ==========================================================================
   DEVIS SECTION & FORMULAIRE LOGO INTEGRATION
   ========================================================================== */
.devis-section {
  padding: 100px 0;
  background-color: #fafafa;
}

.devis-flex {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.devis-text {
  flex: 1;
}

.devis-text h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--dark-heading);
  line-height: 1.3;
  margin-bottom: 25px;
}

.devis-text h2 em {
  font-family: var(--font-fancy);
  color: #7c3aed;
  font-style: italic;
}

.devis-features {
  margin-top: 40px;
}

.df-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.df-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.df-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark-heading);
}

.df-item p {
  font-size: 0.9rem;
  color: #6b7280;
}

.devis-form-wrap {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  border: 1px solid #f3f4f6;
}

.form-logo-container {
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
}

.form-logo-img {
  max-width: 180px;
  height: auto;
  display: inline-block;
  object-fit: contain;
}

.form-sub {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 30px;
  text-align: center;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-heading);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-heading);
  background-color: #f9fafb;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(249, 168, 212, 0.15);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
}

.form-check input {
  margin-top: 4px;
}

.form-check label {
  font-weight: 400;
  color: #4b5563;
  font-size: 0.85rem;
  line-height: 1.4;
}

.form-mention {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 15px;
}

/* ==========================================================================
   TÉMOIGNAGES (REVIEWS SLIDER COMPLET)
   ========================================================================== */
.temoignages {
  padding: 100px 0;
  background-color: #fff8fa;
  overflow: hidden;
}

.temo-slider {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.temo-track {
  display: flex !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.temo-card {
  min-width: 100% !important;
  box-sizing: border-box;
  padding: 20px 40px;
  text-align: center;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.temo-card p {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark-heading);
  line-height: 1.5;
  margin-bottom: 30px;
}

.temo-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.temo-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.temo-author strong {
  color: var(--dark-heading);
}

.temo-author small {
  color: #6b7280;
}

.temo-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.temo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(31, 41, 55, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.temo-dot.active {
  background-color: var(--primary-dark);
  width: 25px;
  border-radius: 10px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-flex {
  display: flex;
  gap: 80px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--dark-heading);
  line-height: 1.1;
  margin-bottom: 40px;
}

.contact-info h2 em {
  font-family: var(--font-fancy);
  color: var(--primary-dark);
  font-style: italic;
  font-weight: 400;
}

.ci-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.ci-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark-heading);
  margin-bottom: 4px;
}

.contact-socials {
  margin-top: 5px;
  display: flex;
  gap: 20px;
}

.contact-socials a {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form {
  flex: 1.2;
  background-color: var(--light);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #f3f4f6;
}

.contact-form h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--dark-heading);
  margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER STYLE
   ========================================================================== */
footer {
  background-color: #111827;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: -60px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-dark);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: var(--transition);
  z-index: 99;
}

.scroll-top.show {
  right: 30px;
}

/* ==========================================================================
   ARRANGEMENTS COMPLETS VERSION RESPONSIVE (100% HERMÉTIQUES ET ISOLÉS)
   ========================================================================== */

@media (max-width: 1024px) {
  #header {
    height: 110px;
  }
  
  .header-logo-img {
    height: 85px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 0px;
  }
  .slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    padding: 80px 20px;
    display: block;
  }
  .slide:not(.active) {
    display: none;
  }
  .slide h1 { 
    font-size: 2.8rem; 
  }

  .slide-deco {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    z-index: 1 !important;
    pointer-events: none;
  }

  .slide-deco .logo-character-wrap,
  .slide-deco .float-card {
    display: none !important;
  }

  .slide-deco .confetti-wrap {
    display: block !important;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .slide-content {
    position: relative;
    z-index: 10;
  }

  .presta-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 25px;
  }

  .intro {
    padding: 60px 0;
  }
  .intro-flex, .devis-flex, .contact-flex { 
    flex-direction: column !important; 
    gap: 40px; 
  }
  .intro-img {
    width: 100%;
    align-self: initial;
    height: 350px;
  }
  .intro-text, .devis-text, .contact-info, .devis-form-wrap, .contact-form { 
    width: 100%; 
  }
  .badge-float {
    right: 10px;
    bottom: -10px;
  }

  .steps-grid {
    flex-direction: row !important;
    justify-content: space-between;
    gap: 20px;
  }
  .step-arrow {
    display: block !important;
  }
  .stats {
    display: none !important;
  }
  
  #header {
    height: 110px;
  }
}

@media (max-width: 768px) {
  #header {
    height: 90px;
  }

  .header-logo-img {
    height: 70px;
  }

  .burger { 
    display: block !important; 
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-heading);
    z-index: 1100;
  }

  #main-nav { 
    display: flex !important;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: flex-start !important; 
    justify-content: center !important;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  #main-nav.open {
    transform: translateX(0);
  }

  #main-nav ul {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100%;
    height: auto !important;
    margin: 0 !important;
    padding-top: 25px !important;
    gap: 5px !important;
  }

  #main-nav ul li {
    width: 100%;
    text-align: center;
    margin: 0 !important;
    padding: 0 !important;
  }

  #main-nav ul li a {
    font-size: 1.2rem !important;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 10px 30px !important;
    margin: 0 !important;
  }

  #main-nav ul li a::after {
    display: none !important;
  }

  .nav-cta { 
    display: none !important;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
  .slide h1 {
    font-size: 2.4rem;
  }

  .slide-btns {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .slide-btns .btn {
    margin-right: 0 !important;
    flex: 1;
    max-width: 180px;
    font-size: 0.85rem !important;
    padding: 12px 10px !important;
    white-space: nowrap;
  }

  .stats-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    padding: 20px;
  }
  
  .presta-grid { 
    grid-template-columns: 1fr !important; 
    gap: 35px;
  }

  .presta-card h3 {
    min-height: auto !important; 
    margin-bottom: 10px;
  }

  .card-badges-row {
    flex-direction: row !important;
    gap: 8px;
  }
  .badge-btn {
    font-size: 0.75rem;
    padding: 8px 6px;
  }

  .steps-grid { 
    flex-direction: column !important; 
    align-items: center !important;
    gap: 40px !important; 
  }
  .step-arrow { 
    display: none !important; 
  }

  .intro-img {
    height: 280px;
  }
  .mobile-only-cta {
    display: block !important;
    margin-top: 20px !important;
  }
  
  .mobile-only-cta a.btn {
    display: inline-block !important;
    padding: 12px 30px !important;
    font-size: 1rem !important;
    border-radius: 50px;
    background-color: var(--primary) !important;
    color: white !important;
    text-align: center;
    width: auto !important;
  }
}

@media (max-width: 480px) {
  .stats-grid { 
    grid-template-columns: 1fr !important; 
  }
  .form-row { 
    grid-template-columns: 1fr !important; 
    gap: 0;
  }
  .slide h1 {
    font-size: 2rem;
  }
  .intro-text h2 {
    font-size: 1.8rem;
  }
  .devis-form-wrap, .contact-form {
    padding: 24px 16px;
  }
  .temo-card p {
    font-size: 1.25rem;
  }
}

.mobile-only-cta {
  display: none !important;
}

/* --- Afficher le bouton uniquement sur mobile/tablette (inférieur à 768px) --- */
@media (max-width: 768px) {
  .mobile-only-cta {
    display: block !important;
  }
}
  
  /* Bouton flottant circulaire */
  .floating-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%; /* Rend le bouton parfaitement rond */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .floating-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.6);
  }