/* =============================================
   STELLA CONCEPT - Main Stylesheet
   ============================================= */

/* --- Variables CSS --- */
:root {
  /* Couleurs */
  --color-primary: #544957;
  --color-lime: #CCD537;
  --color-orange: #F1980D;
  --color-magenta: #C0428A;
  --color-white: #ffffff;
  --color-light: #f8f7f9;
  --color-dark: #2a232c;
  --color-gray: #7a7a7a;
  --color-gray-light: #e8e6e9;

  /* Accent par défaut */
  --accent: var(--color-lime);

  /* Typo */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lora', serif;
  --fs-h1: clamp(2.5rem, 5.5vw, 4rem);
  --fs-h2: clamp(1.8rem, 4vw, 2.8rem);
  --fs-h3: clamp(1.25rem, 2.5vw, 1.6rem);
  --fs-body: 1.05rem;
  --fs-small: 0.9rem;
  --lh-body: 1.8;

  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Ombres */
  --shadow-sm: 0 2px 12px rgba(84, 73, 87, 0.1);
  --shadow-md: 0 8px 30px rgba(84, 73, 87, 0.14);
  --shadow-lg: 0 12px 50px rgba(84, 73, 87, 0.2);

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* --- Reset moderne --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- Typographie --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  margin-bottom: var(--space-sm);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

/* --- Section --- */
.section {
  padding: var(--space-xl) 0;
}

.section--gray {
  background-color: var(--color-light);
}

.section--primary {
  background: linear-gradient(160deg, var(--color-primary) 0%, #3d2f42 100%);
  color: var(--color-white);
}

.section--primary h2,
.section--primary h3 {
  color: var(--color-white);
}

.section--primary .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: var(--color-white);
}

.section--primary .card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
}

/* Valeurs section - design premium */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.valeur-item {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.valeur-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.valeur-item__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: #fff;
  box-shadow: 0 8px 25px rgba(192, 66, 138, 0.35);
  transition: transform 0.4s ease;
}

.valeur-item:hover .valeur-item__icon {
  transform: scale(1.1) rotate(5deg);
}

.valeur-item__icon i {
  width: 26px;
  height: 26px;
}

.valeur-item__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.valeur-item__text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .valeurs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .valeurs-grid {
    grid-template-columns: 1fr;
  }
}

/* Section primary cards (legacy compat) */
.section--primary .card {
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.section--primary .card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section--primary .card__icon {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  color: #fff;
  box-shadow: 0 6px 20px rgba(192, 66, 138, 0.3);
}

.section--primary .card__title {
  color: var(--color-white);
}

.section--primary .card__text {
  color: rgba(255, 255, 255, 0.8);
}

/* Atouts section - numérotation moderne */
.atouts-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.atout-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(84, 73, 87, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.atout-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(84, 73, 87, 0.12);
  border-color: transparent;
}

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

.atout-item__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.atout-item__content {
  flex: 1;
}

.atout-item__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.atout-item__text {
  font-size: var(--fs-small);
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

/* Dark mode atouts */
body.dark .atout-item {
  background: #1e1824;
  border-color: rgba(255, 255, 255, 0.06);
}

body.dark .atout-item:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark .atout-item__title {
  color: #f5f3f7;
}

body.dark .atout-item__text {
  color: #b0adb3;
}

@media (max-width: 480px) {
  .atout-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: var(--space-sm);
  }

  .atout-item__number {
    width: auto;
  }

  .atout-item::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 4px;
  }

  .atout-item:hover {
    transform: translateY(-6px);
    transform: translateX(0);
  }
}

.section__title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-orange));
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section__subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-magenta);
  margin-bottom: var(--space-xs);
}

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
  letter-spacing: 0.3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(192, 66, 138, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 66, 138, 0.4);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn--cta {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  color: var(--color-white);
  border-color: transparent;
  font-size: 1.05rem;
  padding: 1.1rem 2.8rem;
  box-shadow: 0 4px 20px rgba(192, 66, 138, 0.35);
}

.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 66, 138, 0.5);
}

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

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

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(84, 73, 87, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(84, 73, 87, 0.15);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  color: #fff;
  box-shadow: 0 6px 20px rgba(192, 66, 138, 0.25);
}

.card__icon i {
  width: 24px;
  height: 24px;
}

.card__title {
  margin-bottom: var(--space-xs);
  font-size: 1.15rem;
}

.card__text {
  color: var(--color-gray);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* Pole cards (2 blocs expertise accueil) */
.pole-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  transition: all 0.5s ease;
  cursor: pointer;
}

.pole-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.pole-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.pole-card:hover .pole-card__bg {
  transform: scale(1.08);
}

.pole-card__overlay {
  position: absolute;
  inset: 0;
  transition: background 0.4s ease;
}

.pole-card--travaux .pole-card__overlay {
  background: linear-gradient(to top, rgba(241, 152, 13, 0.92) 0%, rgba(84, 73, 87, 0.7) 50%, rgba(84, 73, 87, 0.3) 100%);
}

.pole-card--transition .pole-card__overlay {
  background: linear-gradient(to top, rgba(192, 66, 138, 0.92) 0%, rgba(84, 73, 87, 0.7) 50%, rgba(84, 73, 87, 0.3) 100%);
}

.pole-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
  width: 100%;
  color: #fff;
}

.pole-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: #fff;
}

.pole-card__icon i {
  width: 28px;
  height: 28px;
}

.pole-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.pole-card__list {
  list-style: none;
  margin-bottom: var(--space-md);
}

.pole-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-weight: 400;
}

.pole-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pole-card:hover .pole-card__btn {
  background: #fff;
  border-color: #fff;
  color: var(--color-primary);
}

/* Responsive pole cards */
@media (max-width: 768px) {
  .pole-card {
    min-height: 350px;
  }
}

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  background-color: var(--accent);
  color: var(--color-primary);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero--half {
  min-height: 50vh;
}

.hero--compact {
  min-height: 40vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Ken Burns effect - slow zoom animation on hero image */
.hero__bg--kenburns {
  animation: kenBurns 25s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.15) translate(-2%, -1%);
  }
  100% {
    transform: scale(1.08) translate(1%, -2%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(84, 73, 87, 0.92) 0%, rgba(192, 66, 138, 0.6) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl) var(--space-md);
}

.hero__content h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero__content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  opacity: 0.92;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(84, 73, 87, 0.1);
  padding: 0.6rem 0;
  backdrop-filter: blur(12px);
}

.nav--scrolled .nav__logo-stella {
  color: var(--color-primary);
}

.nav--scrolled .nav__links a {
  color: var(--color-dark);
}

.nav--scrolled .nav__links a:hover,
.nav--scrolled .nav__links a.active {
  color: var(--color-magenta);
}

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

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 1001;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  transition: all var(--transition);
}

.nav--scrolled .nav__logo-img {
  height: 42px;
}

.nav__logo-stella {
  color: var(--color-white);
  transition: color var(--transition);
}

.nav__logo-concept {
  color: var(--color-magenta);
}

.footer__logo-img {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-md);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-magenta);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-magenta);
}

/* Nav CTA Button */
.nav__links .btn--nav-cta,
.btn--nav-cta {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  color: #fff !important;
  padding: 0.65rem 1.8rem !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 4px 15px rgba(192, 66, 138, 0.35);
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}

.btn--nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 66, 138, 0.4);
  color: #fff !important;
}

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

.nav--scrolled .btn--nav-cta {
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger__bar {
  width: 26px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav--scrolled .hamburger__bar {
  background-color: var(--color-primary);
}

/* --- Footer --- */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__text {
  font-size: var(--fs-small);
  line-height: 1.8;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__links a {
  font-size: var(--fs-small);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-magenta);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  font-size: var(--fs-small);
}

.footer__contact-item i {
  width: 18px;
  height: 18px;
  color: var(--color-magenta);
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  font-size: var(--fs-small);
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

/* --- Chiffres clés --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-magenta);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: var(--fs-small);
  opacity: 0.8;
}

/* --- Témoignages --- */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: var(--space-md);
  text-align: center;
}

.testimonial__stars {
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.testimonial__text {
  font-style: italic;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto var(--space-md);
  color: var(--color-dark);
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial__role {
  font-size: var(--fs-small);
  color: var(--color-gray);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.testimonials__btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  color: var(--color-primary);
}

.testimonials__btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-gray-light);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.testimonials__dot.active {
  background-color: var(--color-primary);
  width: 28px;
  border-radius: 5px;
}

/* --- CTA Bannière --- */
.cta-banner {
  position: relative;
  padding: var(--space-xl) 0;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(84, 73, 87, 0.93) 0%, rgba(192, 66, 138, 0.75) 100%);
}

.cta-banner__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-banner__content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.cta-banner__phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.cta-banner__phone i {
  width: 20px;
  height: 20px;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 3px;
  background: var(--color-gray-light);
}

.timeline__item {
  position: relative;
  padding-left: 80px;
  margin-bottom: var(--space-lg);
}

.timeline__number {
  position: absolute;
  left: 10px;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: var(--accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1;
}

.timeline__title {
  margin-bottom: var(--space-xs);
}

.timeline__text {
  color: var(--color-gray);
  font-size: var(--fs-small);
}

/* --- Valeurs bandeau --- */
.values-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.value-item__icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.value-item__icon i {
  width: 32px;
  height: 32px;
}

.value-item__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

/* --- FAQ Accordéon --- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.accordion__header {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  background: var(--color-white);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
  border: none;
}

.accordion__header:hover {
  background: var(--color-light);
}

.accordion__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion__item.active .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__content {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--color-gray);
  font-size: var(--fs-small);
  line-height: 1.8;
}

/* --- Formulaire contact --- */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form__label {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-primary);
}

.form__label .required {
  color: var(--color-magenta);
}

.form__input,
.form__select,
.form__textarea {
  padding: 0.8rem 1rem;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-dark);
  transition: border-color var(--transition);
  background: var(--color-white);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-primary);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: var(--color-magenta);
}

.form__error {
  font-size: 0.75rem;
  color: var(--color-magenta);
  display: none;
}

.form__error.visible {
  display: block;
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__success {
  display: none;
  padding: var(--space-md);
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  text-align: center;
  color: #2e7d32;
  font-weight: 500;
}

.form__success.visible {
  display: block;
}

/* --- Contact infos --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-magenta);
}

.contact-info__icon i {
  width: 22px;
  height: 22px;
}

.contact-info__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-primary);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: var(--fs-small);
  color: var(--color-gray);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Intro section avec image --- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.intro__text h2 {
  margin-bottom: var(--space-sm);
}

.intro__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.intro__text p strong {
  color: var(--color-primary);
}

/* --- About / Rencontrez --- */
.about-estelle {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-estelle__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-estelle__photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* --- Grille valeurs (à propos) --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: var(--space-md);
}

.value-card__icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--accent);
}

.value-card__icon i {
  width: 30px;
  height: 30px;
}

/* --- Pages legales --- */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: var(--space-lg);
}

.legal-block h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-gray-light);
}

.legal-block h3 {
  font-size: 1.1rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.legal-block p {
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
  line-height: 1.8;
}

.legal-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  color: var(--color-primary);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-sm);
}

.legal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--color-dark);
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--accent);
}

.legal-notice {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: #fff8e1;
  border-left: 4px solid var(--color-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-sm) 0;
  align-items: flex-start;
  color: #6d4c00;
}

.legal-notice p {
  margin-bottom: 0;
  font-size: var(--fs-small);
  color: #6d4c00;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0 var(--space-md);
  font-size: var(--fs-small);
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--color-gray-light);
}

.legal-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.legal-table tr:nth-child(even) {
  background-color: var(--color-light);
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.legal-right {
  padding: var(--space-sm);
  background: var(--color-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.legal-right h3 {
  margin-top: 0;
  font-size: 0.95rem;
}

.legal-right p {
  font-size: var(--fs-small);
  margin-bottom: 0;
  color: var(--color-gray);
}

.legal-update {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--color-gray);
  font-style: italic;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-gray-light);
}

/* --- Footer legal links --- */
.footer__legal {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--color-magenta);
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  position: relative;
  border: 2px solid var(--color-gray-light);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

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

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
}

.pricing-card__header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gray-light);
}

.pricing-card__header h3 {
  margin-bottom: var(--space-xs);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-gray);
}

.pricing-card__price strong {
  font-size: 2.2rem;
  color: var(--color-primary);
  display: block;
  margin: var(--space-xs) 0;
}

.pricing-card__period {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin-bottom: 0;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 0;
  font-size: var(--fs-small);
  color: var(--color-dark);
}

.pricing-check {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-gray-light);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--color-white);
  color: var(--color-dark);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-item__before,
.gallery-item__after {
  position: relative;
  overflow: hidden;
}

.gallery-item__before img,
.gallery-item__after img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item__before img,
.gallery-item:hover .gallery-item__after img {
  transform: scale(1.05);
}

.gallery-item__label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 1px;
}

.gallery-item__label--after {
  background: var(--color-lime);
  color: var(--color-primary);
}

.gallery-item__info {
  padding: var(--space-sm) var(--space-md);
}

.gallery-item__info .badge {
  margin-bottom: var(--space-xs);
}

.gallery-item__info h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.gallery-item__info p {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin-bottom: 0;
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__image .badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
}

.blog-card__body {
  padding: var(--space-md);
}

.blog-card__meta {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.blog-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  transition: color var(--transition);
}

.blog-card:hover .blog-card__title {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: var(--fs-small);
  color: var(--color-gray);
  line-height: 1.6;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent);
  margin-top: var(--space-xs);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-md);
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: var(--fs-small);
  min-width: 250px;
}

.cookie-banner__text a {
  color: var(--color-magenta);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.cookie-banner__btn {
  padding: 0.6rem 1.2rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.cookie-banner__btn--accept {
  background: var(--color-lime);
  color: var(--color-primary);
}

.cookie-banner__btn--accept:hover {
  background: #b8c02e;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.whatsapp-btn__tooltip {
  position: absolute;
  right: 68px;
  background: var(--color-dark);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
  opacity: 1;
}

/* --- Dark Mode --- */
.dark-toggle {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 998;
  transition: all var(--transition);
  border: 2px solid rgba(84, 73, 87, 0.12);
  cursor: pointer;
}

.dark-toggle:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}

.dark-toggle i {
  width: 22px;
  height: 22px;
}

body.dark .dark-toggle {
  background: #2d2733;
  color: var(--color-orange);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark .dark-toggle:hover {
  border-color: var(--color-orange);
}

body.dark {
  --color-white: #16111b;
  --color-light: #1e1824;
  --color-dark: #eae8ec;
  --color-gray: #b0adb3;
  --color-gray-light: #2d2733;
  background-color: #16111b;
  color: #eae8ec;
}

/* Dark - Texte global */
body.dark h1, body.dark h2, body.dark h3, body.dark h4, body.dark h5, body.dark h6 {
  color: #f5f3f7;
}

body.dark p, body.dark li, body.dark span, body.dark label {
  color: #d4d1d7;
}

body.dark a {
  color: #d4d1d7;
}

/* Dark - Navigation */
body.dark .nav--scrolled {
  background: rgba(22, 17, 27, 0.97);
  backdrop-filter: blur(12px);
}

body.dark .nav--scrolled .nav__links a {
  color: #d4d1d7;
}

body.dark .nav--scrolled .nav__links a:hover,
body.dark .nav--scrolled .nav__links a.active {
  color: var(--color-magenta);
}

body.dark .nav--scrolled .hamburger__bar {
  background-color: #eae8ec;
}

/* Dark - Cards */
body.dark .card,
body.dark .pricing-card,
body.dark .blog-card,
body.dark .gallery-item {
  background: #1e1824;
  border-color: rgba(255, 255, 255, 0.06);
}

body.dark .card__title,
body.dark .blog-card__title,
body.dark .pricing-card__header h3 {
  color: #f5f3f7;
}

body.dark .card__text,
body.dark .blog-card__excerpt,
body.dark .pricing-card__period {
  color: #b0adb3;
}

body.dark .card__icon {
  background: rgba(192, 66, 138, 0.12);
}

/* Dark - Sections */
body.dark .section--gray {
  background-color: #1e1824;
}

body.dark .section--primary {
  background: linear-gradient(160deg, #2a1f30 0%, #1a1122 100%);
}

body.dark .section--primary .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Dark - Accordion */
body.dark .accordion__header {
  background: #1e1824;
  color: #f5f3f7;
}

body.dark .accordion__header:hover {
  background: #261f2d;
}

body.dark .accordion__item {
  border-color: #2d2733;
}

body.dark .accordion__content {
  color: #b0adb3;
}

/* Dark - Forms */
body.dark .form__input,
body.dark .form__select,
body.dark .form__textarea {
  background: #1e1824;
  border-color: #2d2733;
  color: #eae8ec;
}

body.dark .form__input:focus,
body.dark .form__select:focus,
body.dark .form__textarea:focus {
  border-color: var(--color-magenta);
}

body.dark .form__label {
  color: #d4d1d7;
}

/* Dark - Footer */
body.dark .footer {
  background: #0d0810;
}

body.dark .footer__title {
  color: #f5f3f7;
}

/* Dark - CTA / Hero overlays */
body.dark .hero__overlay {
  background: linear-gradient(160deg, rgba(22, 17, 27, 0.93) 0%, rgba(192, 66, 138, 0.5) 100%);
}

body.dark .cta-banner__overlay {
  background: linear-gradient(160deg, rgba(22, 17, 27, 0.95) 0%, rgba(192, 66, 138, 0.6) 100%);
}

/* Dark - Cookie banner */
body.dark .cookie-banner {
  background: #0d0810;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dark - Timeline */
body.dark .timeline::before {
  background: #2d2733;
}

body.dark .timeline__title {
  color: #f5f3f7;
}

body.dark .timeline__text {
  color: #b0adb3;
}

/* Dark - Intro text */
body.dark .intro__text p {
  color: #b0adb3;
}

body.dark .intro__text h2 {
  color: #f5f3f7;
}

/* Dark - Contact info */
body.dark .contact-info__label {
  color: #f5f3f7;
}

body.dark .contact-info__value {
  color: #b0adb3;
}

body.dark .contact-info__icon {
  background: #1e1824;
}

/* Dark - Legal pages */
body.dark .legal-block h2 {
  color: #f5f3f7;
  border-bottom-color: #2d2733;
}

body.dark .legal-block h3 {
  color: #d4d1d7;
}

body.dark .legal-block p,
body.dark .legal-list li {
  color: #b0adb3;
}

body.dark .legal-table th {
  background: #2d2733;
}

body.dark .legal-table td {
  border-color: #2d2733;
}

body.dark .legal-table tr:nth-child(even) {
  background: #1e1824;
}

body.dark .legal-right {
  background: #1e1824;
}

body.dark .legal-notice {
  background: #2a2218;
  border-left-color: var(--color-orange);
  color: #d4a84a;
}

body.dark .legal-notice p {
  color: #d4a84a;
}

/* Dark - Pricing */
body.dark .pricing-card {
  border-color: #2d2733;
}

body.dark .pricing-card--featured {
  border-color: var(--color-magenta);
}

body.dark .pricing-card__price strong {
  color: #f5f3f7;
}

body.dark .pricing-card__header {
  border-bottom-color: #2d2733;
}

/* Dark - Map */
body.dark .map-container {
  filter: brightness(0.8) contrast(1.1);
}

/* Dark - Buttons outline */
body.dark .btn--outline {
  color: #d4d1d7;
  border-color: #d4d1d7;
}

body.dark .btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

body.dark .btn--secondary {
  color: #eae8ec;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Dark - Toggle button */
body.dark .dark-toggle {
  background: #2d2733;
}

/* --- Booking / Reservation --- */

/* Main container — card-like appearance */
.booking {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  overflow: hidden;
}

/* ---- Stepper ---- */
.booking__stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-md);
}

.booking__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.booking__step-circle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--color-gray-light);
  background: var(--color-white);
  color: var(--color-gray);
  transition: all var(--transition);
}

.booking__step-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gray);
  transition: color var(--transition);
  white-space: nowrap;
}

/* Active step */
.booking__step.active .booking__step-circle {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(192, 66, 138, 0.35);
}

.booking__step.active .booking__step-label {
  color: var(--color-magenta);
  font-weight: 600;
}

/* Done step */
.booking__step.done .booking__step-circle {
  background: var(--color-magenta);
  border-color: transparent;
  color: var(--color-white);
  font-size: 0;
}

.booking__step.done .booking__step-circle::after {
  content: '\2713';
  font-size: 1rem;
}

.booking__step.done .booking__step-label {
  color: var(--color-magenta);
}

/* Connector lines */
.booking__stepper-line {
  flex: 1;
  height: 2px;
  max-width: 80px;
  background: var(--color-gray-light);
  margin: 0 8px;
  margin-bottom: 24px;
  border-radius: 2px;
  transition: background var(--transition);
}

.booking__stepper-line.done {
  background: var(--color-magenta);
}

/* ---- Panels ---- */
.booking__panels {
  position: relative;
  min-height: 320px;
}

.booking__panel {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.booking__panel.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: bookingSlideIn 0.4s ease forwards;
}

@keyframes bookingSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- Back button ---- */
.booking__back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  color: var(--color-magenta);
  padding: 0;
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.booking__back:hover {
  color: var(--color-orange);
}

/* ---- Calendar ---- */
.calendar {
  user-select: none;
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.calendar__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-dark);
}

.calendar__nav {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: all var(--transition);
}

.calendar__nav:hover:not(:disabled) {
  background: var(--color-magenta);
  border-color: var(--color-magenta);
  color: var(--color-white);
}

.calendar__nav:disabled,
.calendar__nav--disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__grid--labels {
  margin-bottom: 4px;
}

.calendar__day-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray);
  padding: 4px 0;
}

.calendar__day {
  aspect-ratio: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.calendar__day--empty {
  cursor: default;
}

.calendar__day:not(.calendar__day--disabled):not(.calendar__day--empty):hover {
  background: rgba(192, 66, 138, 0.1);
}

/* Today */
.calendar__day--today {
  border: 2px solid var(--color-magenta) !important;
}

/* Selected */
.calendar__day--selected {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange)) !important;
  color: var(--color-white) !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(192, 66, 138, 0.3);
}

/* Disabled (past) */
.calendar__day--disabled {
  color: var(--color-gray-light);
  cursor: not-allowed;
  pointer-events: none;
}

/* Weekend */
.calendar__day--weekend:not(.calendar__day--selected) {
  color: var(--color-gray);
}

/* ---- Time Slots ---- */
.booking__slot-heading,
.booking__form-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--color-gray-light);
  background: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.slot:hover {
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}

.slot.selected {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(192, 66, 138, 0.3);
  transform: scale(1.05);
}

.booking__no-slots {
  font-family: var(--font-body);
  color: var(--color-gray);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ---- Booking Form ---- */
.booking__form .form__group {
  margin-bottom: var(--space-sm);
}

.booking__form .form__label {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-dark);
  display: block;
  margin-bottom: 6px;
}

.booking__form .form__label .required {
  color: var(--color-magenta);
}

.booking__form .form__input,
.booking__form .form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.booking__form .form__input:focus,
.booking__form .form__select:focus {
  outline: none;
  border-color: var(--color-magenta);
  box-shadow: 0 0 0 3px rgba(192, 66, 138, 0.12);
}

.booking__form .form__input.error,
.booking__form .form__select.error {
  border-color: #e74c3c;
}

.booking__form .form__error {
  display: none;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 4px;
}

.booking__form .form__error.visible {
  display: block;
}

.booking__form-error {
  display: none;
  text-align: center;
  font-size: var(--fs-small);
  color: #e74c3c;
  margin-top: var(--space-sm);
}

.booking__form-error.visible {
  display: block;
}

.booking__submit {
  width: 100%;
  margin-top: var(--space-xs);
}

/* ---- Success State ---- */
.booking__success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-white);
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 5;
}

.booking__success.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.booking__success-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-sm);
  color: var(--color-magenta);
}

.booking__checkmark circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
}

.booking__success.visible .booking__checkmark circle {
  animation: bookingCircleDraw 0.6s ease forwards;
}

.booking__checkmark path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

.booking__success.visible .booking__checkmark path {
  animation: bookingCheckDraw 0.4s 0.5s ease forwards;
}

@keyframes bookingCircleDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes bookingCheckDraw {
  to { stroke-dashoffset: 0; }
}

.booking__success-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.booking__success-text {
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  max-width: 380px;
}

.booking__restart {
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}

.booking__restart:hover {
  background: var(--color-magenta);
  color: var(--color-white);
}

/* Decorative confetti dots */
.booking__success.visible::before,
.booking__success.visible::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  animation: bookingConfetti 1s ease forwards;
  pointer-events: none;
}

.booking__success.visible::before {
  background: var(--color-orange);
  top: 25%;
  left: 15%;
  animation-delay: 0.2s;
}

.booking__success.visible::after {
  background: var(--color-lime);
  top: 20%;
  right: 18%;
  animation-delay: 0.4s;
}

@keyframes bookingConfetti {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  50%  { opacity: 1; transform: translateY(-20px) scale(1.5); }
  100% { opacity: 0; transform: translateY(10px) scale(0.5); }
}

/* ---- Loading Overlay ---- */
.booking__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.booking__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-gray-light);
  border-top-color: var(--color-magenta);
  border-radius: var(--radius-full);
  animation: bookingSpin 0.7s linear infinite;
  margin-bottom: var(--space-xs);
}

@keyframes bookingSpin {
  to { transform: rotate(360deg); }
}

.booking__loading p {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  color: var(--color-gray);
}

/* ---- Dark mode booking ---- */
body.dark .booking {
  background: var(--color-dark);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

body.dark .calendar__title,
body.dark .booking__slot-heading,
body.dark .booking__form-heading,
body.dark .calendar__day,
body.dark .slot,
body.dark .booking__form .form__label,
body.dark .booking__form .form__input,
body.dark .booking__form .form__select,
body.dark .booking__success-title {
  color: #f0eef1;
}

body.dark .calendar__nav {
  border-color: #3d3340;
  background: var(--color-dark);
  color: #f0eef1;
}

body.dark .calendar__nav:hover:not(:disabled) {
  background: var(--color-magenta);
  border-color: var(--color-magenta);
}

body.dark .calendar__day--disabled {
  color: #3d3340;
}

body.dark .calendar__day--weekend:not(.calendar__day--selected) {
  color: #7a7a7a;
}

body.dark .calendar__day:not(.calendar__day--disabled):not(.calendar__day--empty):hover {
  background: rgba(192, 66, 138, 0.15);
}

body.dark .slot {
  border-color: #3d3340;
  background: var(--color-dark);
}

body.dark .slot:hover {
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}

body.dark .booking__form .form__input,
body.dark .booking__form .form__select {
  background: #1a1520;
  border-color: #3d3340;
}

body.dark .booking__form .form__input:focus,
body.dark .booking__form .form__select:focus {
  border-color: var(--color-magenta);
}

body.dark .booking__success {
  background: var(--color-dark);
}

body.dark .booking__loading {
  background: rgba(42, 35, 44, 0.85);
}

body.dark .booking__step-circle {
  border-color: #3d3340;
  background: var(--color-dark);
  color: #7a7a7a;
}

body.dark .booking__stepper-line {
  background: #3d3340;
}

/* ---- Booking responsive ---- */
@media (max-width: 600px) {
  .booking {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .booking__step-label {
    font-size: 0.65rem;
  }

  .booking__step-circle {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .booking__stepper-line {
    max-width: 50px;
  }

  .calendar__day {
    min-width: 38px;
    min-height: 38px;
    font-size: 0.85rem;
  }

  .slot {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .booking__slot-heading,
  .booking__form-heading {
    font-size: 1.1rem;
  }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-orange));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(192, 66, 138, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 150px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid rgba(84, 73, 87, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192, 66, 138, 0.3);
}

body.dark .back-to-top {
  background: #2d2733;
  border-color: rgba(255, 255, 255, 0.1);
  color: #d4d1d7;
}

body.dark .back-to-top:hover {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  color: #fff;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader--hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__content {
  text-align: center;
}

.preloader__logo {
  height: 60px;
  margin-bottom: 1.5rem;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.preloader__bar {
  width: 120px;
  height: 3px;
  background: rgba(84, 73, 87, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader__fill {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-orange));
  border-radius: 3px;
  animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

body.dark .preloader {
  background: #16111b;
}

/* --- Trust Band --- */
.trust-band {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  white-space: nowrap;
}

body.dark .trust-item {
  color: #d4d1d7;
}

/* --- Stats (compteurs) redesign --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

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

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: var(--color-white);
    padding: 0.75rem var(--space-sm);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    gap: var(--space-xs);
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .sticky-cta.visible {
    transform: translateY(0);
  }

  .sticky-cta .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .sticky-cta .btn--phone {
    background: none;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  body.dark .sticky-cta {
    background: #1e1824;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }

  body.dark .sticky-cta .btn--phone {
    border-color: #d4d1d7;
    color: #d4d1d7;
  }

  /* Adjust WhatsApp + dark toggle + back-to-top position above sticky bar */
  .whatsapp-btn {
    bottom: 76px !important;
  }

  .dark-toggle {
    bottom: 136px !important;
  }

  .back-to-top {
    bottom: 196px !important;
  }
}

/* --- Video Hero --- */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* --- Exit Intent Popup --- */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.exit-popup.visible {
  opacity: 1;
  visibility: visible;
}

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.exit-popup__content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s ease;
}

.exit-popup.visible .exit-popup__content {
  transform: scale(1) translateY(0);
}

.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-gray);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.exit-popup__close:hover {
  color: var(--color-magenta);
}

.exit-popup__icon {
  color: var(--color-magenta);
  margin-bottom: 1rem;
}

.exit-popup__content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.exit-popup__content p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.exit-popup__skip {
  background: none;
  border: none;
  color: var(--color-gray);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 1rem;
  font-family: var(--font-heading);
  transition: color 0.2s;
}

.exit-popup__skip:hover {
  color: var(--color-magenta);
}

body.dark .exit-popup__content {
  background: #1e1824;
}

body.dark .exit-popup__content h3 {
  color: #f5f3f7;
}

/* --- Availability Badge --- */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: availPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

@keyframes availPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* --- Before/After Slider --- */
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  height: 280px;
}

.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
}

.ba-slider__before {
  z-index: 2;
  overflow: hidden;
  width: 50%;
}

.ba-slider__after {
  z-index: 1;
}

.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.ba-slider__before img {
  min-width: 0;
  width: auto;
  min-width: 100%;
}

.ba-slider__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  letter-spacing: 1px;
  z-index: 5;
}

.ba-slider__label--after {
  left: auto;
  right: 12px;
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.ba-slider__line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.ba-slider__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* --- Calculator --- */
.calculator {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(84, 73, 87, 0.06);
}

.calc-step {
  display: none;
  animation: panelIn 0.4s ease;
}

.calc-step.active {
  display: block;
}

.calc-step__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.calc-step__desc {
  text-align: center;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.calc-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.calc-option {
  padding: 1.5rem;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-white);
}

.calc-option:hover {
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}

.calc-option.selected {
  border-color: var(--color-magenta);
  background: linear-gradient(135deg, rgba(192, 66, 138, 0.08), rgba(241, 152, 13, 0.08));
  color: var(--color-magenta);
}

.calc-option__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.calc-range {
  width: 100%;
  margin: var(--space-md) 0;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-orange));
  outline: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-magenta);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
}

.calc-range-value {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.calc-range-value span {
  font-size: 1rem;
  color: var(--color-gray);
  font-weight: 400;
}

.calc-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.calc-result {
  text-align: center;
  padding: var(--space-md) 0;
}

.calc-result__range {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.calc-result__details {
  color: var(--color-gray);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.calc-result__disclaimer {
  font-size: 0.8rem;
  color: var(--color-gray);
  font-style: italic;
  margin-top: var(--space-sm);
}

body.dark .calculator {
  background: #1e1824;
  border-color: rgba(255,255,255,0.06);
}

body.dark .calc-option {
  background: #16111b;
  border-color: #2d2733;
  color: #d4d1d7;
}

body.dark .calc-step__title {
  color: #f5f3f7;
}

body.dark .calc-range-value {
  color: #f5f3f7;
}

@media (max-width: 480px) {
  .calc-options {
    grid-template-columns: 1fr;
  }
}

/* --- Utilitaires --- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

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

@media (max-width: 1024px) {
  .grid--4,
  .grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-estelle {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-estelle__photo {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--5 {
    grid-template-columns: 1fr;
  }

  .intro {
    grid-template-columns: 1fr;
  }

  .values-band {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  /* Navigation mobile */
  .hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }

  .nav__links.active {
    right: 0;
  }

  .nav__links a {
    color: var(--color-dark);
    font-size: 1.1rem;
  }

  .nav__links a:hover,
  .nav__links a.active {
    color: var(--color-magenta);
  }

  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav__overlay.active {
    display: block;
  }

  /* Footer mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero__content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .legal-rights-grid {
    grid-template-columns: 1fr;
  }

  .legal-table {
    font-size: 0.75rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.5rem;
  }

  .footer__legal {
    gap: var(--space-sm);
  }

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

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .whatsapp-btn {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .dark-toggle {
    bottom: 76px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .nav__logo-img {
    height: 40px;
  }

  .nav--scrolled .nav__logo-img {
    height: 34px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline__item {
    padding-left: 60px;
  }

  .timeline__number {
    left: 0;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--fs-small);
    width: 100%;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
