/* ============================================================
   SALON SARA BELLE — Feuille de style principale
   Palette : crème, blush, or rose & bordeaux profond
   ============================================================ */

:root {
  --cream: #faf6f1;
  --cream-2: #f4ece3;
  --blush: #f1dfd8;
  --rose: #d9a3a3;
  --rose-deep: #b76e79;
  --gold: #c8a24a;
  --gold-light: #e4c985;
  --plum: #4a2f3a;
  --plum-dark: #332027;
  --ink: #3a2b30;
  --muted: #8a757c;
  --white: #ffffff;
  --shadow: 0 20px 50px -20px rgba(74, 47, 58, .35);
  --shadow-sm: 0 8px 24px -12px rgba(74, 47, 58, .28);
  --radius: 18px;
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --transition: .4s cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
/* Fail-safe : si le JS ne charge pas, tout reste visible */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--plum-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
/* Sécurité : même sans JavaScript, le preloader disparaît tout seul après 3s */
.preloader {
  animation: preloaderAutoHide .3s ease 3s forwards;
}
@keyframes preloaderAutoHide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.preloader-inner { text-align: center; }
.preloader-logo-img {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; display: block;
  box-shadow: 0 0 0 4px rgba(228,201,133,.35), 0 10px 30px rgba(0,0,0,.4);
  animation: pulseLogo 1.6s ease-in-out infinite;
}
@keyframes pulseLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}
.preloader-logo {
  font-family: var(--font-head);
  font-size: 2.2rem; color: var(--cream); letter-spacing: 1px;
}
.preloader-logo em { color: var(--gold-light); font-style: italic; }
.preloader-bar {
  width: 180px; height: 3px; background: rgba(255,255,255,.15);
  margin: 18px auto 0; border-radius: 3px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: load 1.1s ease-in-out infinite;
}
@keyframes load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(360%); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px; border-radius: 50px;
  font-weight: 500; font-size: .95rem; letter-spacing: .3px;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--plum-dark); border-color: transparent;
  box-shadow: 0 12px 28px -12px rgba(200, 162, 74, .7);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(200,162,74,.85); }
/* Effet de reflet qui balaie le bouton */
.btn-gold {
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine {
  0% { left: -80%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
.btn-outline { position: relative; overflow: hidden; }
.btn-outline::before {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4.2s ease-in-out infinite;
}
.btn-outline { border-color: rgba(255,255,255,.65); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--plum-dark); }
.btn-dark { background: var(--plum); color: var(--cream); }
.btn-dark:hover { background: var(--plum-dark); transform: translateY(-3px); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb958; transform: translateY(-3px); }
.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.btn-instagram:hover { transform: translateY(-3px); filter: brightness(1.08); }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 246, 241, .92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -18px rgba(74,47,58,.35);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose-deep));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden; position: relative;
}
.brand-mark img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  display: block; transition: transform .5s ease;
}
.brand:hover .brand-mark img { transform: scale(1.12) rotate(4deg); }
/* halo doré animé autour du logo */
.brand-mark::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold-light);
  border-right-color: var(--gold);
  animation: spinHalo 4s linear infinite;
  opacity: 0;
}
.brand:hover .brand-mark::after { opacity: 1; }
@keyframes spinHalo { to { transform: rotate(360deg); } }
.brand-text {
  font-family: var(--font-head); font-size: 1.45rem; line-height: 1;
  color: #fff; font-weight: 600; display: flex; flex-direction: column; gap: 3px;
}
.brand-text em { color: var(--gold-light); font-style: italic; }
.brand-text small { font-family: var(--font-body); font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 400; opacity: .85; }
.navbar.scrolled .brand-text { color: var(--plum); }
.navbar.scrolled .brand-text em { color: var(--gold); }
.navbar.scrolled .brand-text small { opacity: .7; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link {
  color: #fff; font-size: .92rem; font-weight: 400; position: relative;
  padding: 4px 0; transition: color .3s;
}
.navbar.scrolled .nav-link { color: var(--ink); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width .3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.navbar.scrolled .nav-link.active { color: var(--rose-deep); }
.nav-cta { padding: 10px 24px; font-size: .88rem; }

/* ---------- Sélecteur de langue ---------- */
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 4px; border-radius: 30px;
  transition: var(--transition);
}
.navbar.scrolled .lang-switch {
  background: rgba(74,47,58,.08); border-color: rgba(74,47,58,.15);
}
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .5px;
  padding: 5px 11px; border-radius: 24px; transition: var(--transition);
}
.navbar.scrolled .lang-btn { color: var(--plum); }
.lang-btn .flag { font-size: 1.05rem; line-height: 1; }
.lang-btn .lang-code { display: none; }
.lang-btn:hover { background: rgba(255,255,255,.18); }
.navbar.scrolled .lang-btn:hover { background: rgba(74,47,58,.1); }
.lang-btn.active {
  background: var(--gold); color: var(--plum-dark);
}
.lang-btn.active .lang-code { display: inline; }
@media (max-width: 560px) {
  .lang-btn { padding: 5px 7px; }
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; z-index: 1002;
}
.hamburger span {
  width: 26px; height: 2.5px; background: #fff; border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--plum); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; color: #fff;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(51,32,39,.88) 0%, rgba(51,32,39,.55) 45%, rgba(51,32,39,.2) 100%);
}

/* ---------- Pétales flottants (hero) ---------- */
.petals {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2;
}
.petal {
  position: absolute; bottom: -60px;
  font-size: 1.4rem; opacity: 0;
  animation: petalFloat linear infinite;
  filter: drop-shadow(0 0 6px rgba(228,201,133,.55));
}
@keyframes petalFloat {
  0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  8% { opacity: .85; }
  50% { transform: translateY(-45vh) translateX(40px) rotate(180deg); }
  92% { opacity: .85; }
  100% { transform: translateY(-95vh) translateX(-30px) rotate(360deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 120px 0 100px; }
.hero-eyebrow {
  font-size: .85rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-head); font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 700; line-height: 1.05; margin-bottom: 22px;
}
.hero-title span {
  display: block; font-style: italic; color: var(--gold-light);
  background: linear-gradient(100deg, var(--gold-light) 25%, #fff 45%, var(--gold-light) 65%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 18px rgba(228,201,133,.35));
}
@keyframes shimmer { to { background-position: -200% center; } }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem); font-weight: 300;
  color: rgba(255,255,255,.92); max-width: 560px; margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
/* Entrée animée des boutons du hero (staggered) */
.hero-actions .btn {
  opacity: 0; transform: translateY(24px);
  animation: heroBtnIn .7s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero-actions .btn:nth-child(1) { animation-delay: .9s; }
.hero-actions .btn:nth-child(2) { animation-delay: 1.1s; }
@keyframes heroBtnIn {
  to { opacity: 1; transform: translateY(0); }
}
/* Bouton "Rendez-vous" : pulsation douce pour attirer l'œil */
.hero-actions .btn-gold { animation: heroBtnIn .7s cubic-bezier(.22,.61,.36,1) forwards, ctaPulse 2.6s ease-in-out 1.8s infinite; }
@keyframes ctaPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.03); }
}
.hero-badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rating-badge { display: flex; flex-direction: column; gap: 4px; }
.stars { color: var(--gold-light); font-size: 1.05rem; letter-spacing: 2px; }
.stars span { color: rgba(255,255,255,.4); }
.rating-badge span { font-size: .88rem; color: rgba(255,255,255,.85); }
.rating-badge strong { color: #fff; font-size: 1.05rem; }
.hero-divider { width: 1px; height: 38px; background: rgba(255,255,255,.3); }
.hero-phone { font-size: 1.05rem; color: #fff; font-weight: 500; border-bottom: 1px solid var(--gold-light); padding-bottom: 2px; }

.scroll-down {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 50px; border: 2px solid rgba(255,255,255,.6);
  border-radius: 20px; z-index: 3; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-down span {
  width: 5px; height: 10px; border-radius: 3px; background: #fff;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Strip ---------- */
.strip {
  background: var(--plum); color: var(--cream);
  overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08);
}
.strip-track {
  display: flex; gap: 34px; align-items: center; white-space: nowrap;
  width: max-content; animation: marquee 26s linear infinite;
}
.strip-track span { font-family: var(--font-head); font-size: 1.15rem; font-style: italic; }
.strip-track i { color: var(--gold-light); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 58px; }
.section-eyebrow {
  font-size: .8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 12px; font-weight: 600;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--plum); line-height: 1.15; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1.02rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
}
.about-media { position: relative; }
.about-img-main {
  width: 82%; aspect-ratio: 4/5; border-radius: var(--radius);
  background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.about-img-accent {
  position: absolute; right: 0; bottom: -40px; width: 48%; aspect-ratio: 1/1;
  border-radius: var(--radius); background-size: cover; background-position: center;
  border: 8px solid var(--cream); box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; top: -26px; right: 6%; z-index: 2;
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose-deep));
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.about-badge strong { font-family: var(--font-head); font-size: 1.5rem; line-height: 1; }
.about-badge span { font-size: .85rem; }
.about-badge small { font-size: .6rem; letter-spacing: 1px; text-transform: uppercase; opacity: .9; }

.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 20px; }
.about-features { margin: 8px 0 28px; display: grid; gap: 12px; }
.about-features li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: .98rem; }
.check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,162,74,.15); color: var(--gold);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.about-stats { display: flex; gap: 36px; margin: 26px 0 34px; }
.stat strong { font-family: var(--font-head); font-size: 2rem; color: var(--plum); display: block; line-height: 1; }
.stat strong span { font-size: 1.1rem; color: var(--gold); }
.stat small { color: var(--muted); font-size: .8rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-img { height: 170px; background-size: cover; background-position: center; }
.service-body { padding: 22px; position: relative; }
.service-icon {
  position: absolute; top: -24px; right: 20px; width: 48px; height: 48px;
  border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm);
  display: grid; place-items: center; font-size: 1.3rem;
}
.service-body h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--plum); margin-bottom: 8px; }
.service-body p { font-size: .9rem; color: var(--muted); }

/* ---------- Promo / Offre ---------- */
.promo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 880px; margin: 0 auto;
}
.promo-card {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 38px 34px; box-shadow: var(--shadow-sm);
  text-align: center; transition: var(--transition);
  border: 2px solid transparent;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.promo-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
  box-shadow: var(--shadow);
}
.promo-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--plum); color: var(--gold-light);
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  padding: 5px 16px; border-radius: 30px; white-space: nowrap;
}
.promo-featured .promo-tag { background: var(--gold); color: var(--plum-dark); }
.promo-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--plum); margin: 12px 0 18px; }
.promo-list { text-align: left; margin: 0 auto 22px; display: inline-block; }
.promo-list li { padding: 8px 0; font-size: 1rem; color: var(--ink); border-bottom: 1px dashed #f1e8e2; }
.promo-list li:last-child { border: none; }
.promo-list li em {
  display: inline-block; margin-left: 6px; font-style: normal; font-size: .68rem;
  background: var(--gold); color: var(--plum-dark); padding: 2px 9px; border-radius: 20px; font-weight: 600;
}
.promo-price { margin-bottom: 20px; }
.promo-price small { display: block; color: var(--muted); font-size: .85rem; margin-bottom: 2px; }
.promo-price strong { font-family: var(--font-head); font-size: 3.2rem; color: var(--rose-deep); line-height: 1; }
.promo-price strong span { font-size: 1.3rem; color: var(--gold); }

/* ---------- Pricing / Tarifs ---------- */
.price-note { font-size: .82rem; color: var(--muted); font-style: italic; margin-top: 6px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.price-col {
  background: #fff; border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.price-col:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-col-title {
  font-family: var(--font-head); font-size: 1.2rem; color: var(--plum);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px dashed #eee;
}
.price-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 10px 0; font-size: .92rem; color: var(--muted);
}
.price-item span { flex: 1; }
.price-item b { color: var(--rose-deep); font-weight: 600; white-space: nowrap; font-size: .95rem; }
.price-item:not(:last-child) { border-bottom: 1px dashed #f1e8e2; }
.pricing-cta { text-align: center; margin-top: 44px; }
.pricing-cta p { color: var(--muted); margin-bottom: 16px; }
.ig-link { color: var(--rose-deep); font-weight: 600; text-decoration: underline; }

/* ---------- Instagram section ---------- */
.instagram { background: var(--cream); }
.ig-profile {
  display: flex; align-items: center; gap: 18px;
  max-width: 520px; margin: 0 auto 34px;
  background: #fff; padding: 18px 24px; border-radius: 60px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.ig-profile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ig-avatar {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(from 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
  padding: 3px; display: grid; place-items: center;
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 2px solid #fff; }
.ig-profile-info { flex: 1; display: flex; flex-direction: column; }
.ig-profile-info strong { font-size: 1.05rem; color: var(--plum); }
.ig-profile-info span { font-size: .82rem; color: var(--muted); }
.ig-follow-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; font-weight: 600; font-size: .88rem;
  padding: 10px 20px; border-radius: 30px; white-space: nowrap;
  box-shadow: 0 10px 22px -8px rgba(204,35,102,.6);
  transition: var(--transition);
}
.ig-follow-btn:hover { transform: scale(1.04); filter: brightness(1.08); }

.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 880px; margin: 0 auto;
}
.ig-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/1; display: block; box-shadow: var(--shadow-sm);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ig-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(51,32,39,.55); opacity: 0; transition: opacity .4s;
}
.ig-stats { display: flex; gap: 20px; color: #fff; font-weight: 600; font-size: 1.05rem; }
.ig-stats span { display: flex; align-items: center; gap: 6px; }
.ig-item:hover img { transform: scale(1.1); }
.ig-item:hover .ig-overlay { opacity: 1; }

.ig-cta { text-align: center; margin-top: 34px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(rgba(51,32,39,.85), rgba(51,32,39,.85)),
    url('../assets/hammam.jpg') center/cover fixed;
  color: #fff; text-align: center; padding: 80px 0;
}
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.cta-inner p { color: rgba(255,255,255,.9); margin-bottom: 28px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; aspect-ratio: 1/1; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 1.8rem; background: rgba(51,32,39,.45); opacity: 0; transition: opacity .4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.big-rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 14px; }
.big-rating strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--plum); }
.stars-lg { font-size: 1.4rem; }
.testimonial-slider { max-width: 720px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.testimonial-card {
  min-width: 100%; background: #fff; border-radius: var(--radius);
  padding: 40px; text-align: center; box-shadow: var(--shadow-sm); position: relative;
}
.quote { font-family: var(--font-head); font-size: 4rem; color: var(--gold); line-height: .4; margin-bottom: 18px; }
.testimonial-card p { font-size: 1.05rem; color: var(--ink); font-style: italic; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--rose-deep));
  color: #fff; display: grid; place-items: center; font-weight: 600;
}
.testimonial-author strong { display: block; color: var(--plum); }
.testimonial-author small { color: var(--muted); }
.stars-sm { font-size: .95rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--rose);
  background: transparent; color: var(--rose-deep); font-size: 1.2rem; cursor: pointer; transition: var(--transition);
}
.slider-btn:hover { background: var(--rose-deep); color: #fff; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--rose);
  opacity: .4; cursor: pointer; transition: var(--transition); padding: 0;
}
.slider-dots button.active { opacity: 1; width: 26px; border-radius: 6px; background: var(--rose-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start; background: #fff;
  padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.info-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
  background: rgba(200,162,74,.14); display: grid; place-items: center; font-size: 1.4rem;
}
.info-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--plum); margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); }
.info-card a:hover { color: var(--rose-deep); }
.hours { margin-top: 6px; }
.hours li { display: flex; justify-content: space-between; gap: 20px; padding: 5px 0; font-size: .92rem; color: var(--muted); border-bottom: 1px dashed #eee; }
.hours li:last-child { border: none; }
.hours .closed { color: var(--rose-deep); font-weight: 500; }
.info-actions { display: flex; gap: 14px; }
.contact-map {
  border-radius: var(--radius); overflow: hidden; min-height: 420px;
  box-shadow: var(--shadow); position: relative;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---------- Booking ---------- */
.booking-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.booking-text p { color: var(--muted); margin: 14px 0 26px; }
.booking-phone {
  display: flex; align-items: center; gap: 16px; background: #fff;
  padding: 18px 22px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.booking-phone > span { font-size: 1.7rem; }
.booking-phone small { display: block; color: var(--muted); font-size: .8rem; }
.booking-phone a { font-size: 1.2rem; font-weight: 600; color: var(--plum); }
.booking-form {
  background: #fff; border-radius: var(--radius); padding: 38px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; color: var(--plum); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid #eadfd8;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: var(--cream); transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,162,74,.14);
  background: #fff;
}
.form-group textarea { resize: vertical; }
.form-success { display: none; text-align: center; color: #2e8b57; font-weight: 500; margin-top: 14px; }
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--plum-dark); color: rgba(255,255,255,.75); padding-top: 70px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px;
}
.brand-light .brand-text { color: #fff; }
.brand-light .brand-text small { opacity: .7; }
.footer-brand p { margin: 20px 0; font-size: .92rem; max-width: 300px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; font-size: 1.1rem; transition: var(--transition);
}
.socials a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: .9rem; margin-bottom: 10px; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; font-size: .85rem; }
.credit { opacity: .55; font-style: italic; }

/* ---------- Floating buttons ---------- */
.float-whatsapp {
  position: fixed; right: 22px; bottom: 88px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,.7);
  transition: var(--transition);
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-instagram {
  position: fixed; right: 22px; bottom: 154px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(214,36,159,.6);
  transition: var(--transition);
}
.float-instagram:hover { transform: scale(1.08); }
.back-top {
  position: fixed; right: 22px; bottom: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--plum); color: #fff; font-size: 1.3rem;
  box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: var(--transition);
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--rose-deep); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(20,12,16,.94);
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw; max-height: 84vh; border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px; background: rgba(255,255,255,.12);
  border: none; color: #fff; font-size: 1.4rem; width: 46px; height: 46px; border-radius: 50%;
  cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: var(--rose-deep); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 2.2rem;
  width: 56px; height: 56px; border-radius: 50%; cursor: pointer; transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-prev { left: 26px; }
.lightbox-next { right: 26px; }

/* ---------- Animations élégantes (féminines) ---------- */

/* Lueur pulsante sur les boutons dorés */
.btn-gold { animation: goldGlow 3s ease-in-out infinite; }
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 12px 28px -12px rgba(200,162,74,.7); }
  50% { box-shadow: 0 12px 34px -8px rgba(200,162,74,.95); }
}

/* Icônes de service : flottement doux */
.service-icon { animation: bob 3.5s ease-in-out infinite; }
.service-card:nth-child(even) .service-icon { animation-delay: 1.2s; }
.service-card:nth-child(3n) .service-icon { animation-delay: 2.1s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Badge "Avis clients" : lévitation douce */
.about-badge { animation: levitate 4s ease-in-out infinite; }
@keyframes levitate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

/* Flèche scroll-down : pulsation */
.scroll-down { animation: breathe 2s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { opacity: .85; }
  50% { opacity: .45; }
}

/* Titres de section : soulignement doré animé */
.section-title {
  position: relative; display: inline-block;
}
.section-head .section-title::after {
  content: ''; position: absolute; left: 50%; bottom: -10px;
  width: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%); transition: width .8s ease;
}
.section-head .section-title.visible::after,
.section-head .reveal.visible .section-title::after { width: 120px; }

/* Carte mise en avant (promo) : lueur animée */
.promo-featured { animation: featuredGlow 3.2s ease-in-out infinite; }
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 20px 50px -20px rgba(200,162,74,.45); }
  50% { box-shadow: 0 20px 60px -16px rgba(200,162,74,.75); }
}

/* Boutons flottants : pulsation légère */
.float-whatsapp, .float-instagram { animation: floatPulse 2.8s ease-in-out infinite; }
@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Galerie : bordure dorée douce au survol */
.gallery-item { border: 2px solid transparent; transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease; }
.gallery-item:hover { border-color: var(--gold-light); }

/* Prix en gros : effet de scintillement */
.promo-price strong {
  background: linear-gradient(100deg, var(--rose-deep) 20%, var(--gold) 40%, var(--rose-deep) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* Réduire les animations pour ceux qui préfèrent */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- RTL (arabe) ---------- */
[dir="rtl"] { font-family: 'Poppins', 'Segoe UI', 'Tahoma', sans-serif; }
[dir="rtl"] .hero-content,
[dir="rtl"] .about-text,
[dir="rtl"] .section-head,
[dir="rtl"] .testimonial-card,
[dir="rtl"] .booking-text { text-align: right; }
[dir="rtl"] .hero-overlay {
  background: linear-gradient(-100deg, rgba(51,32,39,.88) 0%, rgba(51,32,39,.55) 45%, rgba(51,32,39,.2) 100%);
}
[dir="rtl"] .brand { flex-direction: row-reverse; }
[dir="rtl"] .brand-text { text-align: right; }
[dir="rtl"] .service-icon { right: auto; left: 20px; }
[dir="rtl"] .about-badge { right: auto; left: 6%; }
[dir="rtl"] .about-img-accent { right: auto; left: 0; }
[dir="rtl"] .info-card { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .info-actions { flex-direction: row-reverse; }
[dir="rtl"] .booking-phone { flex-direction: row-reverse; }
[dir="rtl"] .hours li { flex-direction: row-reverse; }
[dir="rtl"] .price-item { flex-direction: row-reverse; }
[dir="rtl"] .promo-list { text-align: right; }
[dir="rtl"] .float-whatsapp, [dir="rtl"] .float-instagram, [dir="rtl"] .back-top { right: auto; left: 22px; }
[dir="rtl"] .footer-col h4 { text-align: right; }
[dir="rtl"] .footer-col a, [dir="rtl"] .footer-col p { text-align: right; }
[dir="rtl"] .hero-actions, [dir="rtl"] .hero-badges { justify-content: flex-start; }
[dir="rtl"] .ig-profile { flex-direction: row-reverse; }
[dir="rtl"] .ig-profile-info { align-items: flex-end; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
}
@media (max-width: 640px) {
  .promo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0; background: var(--plum-dark);
    flex-direction: column; justify-content: center; gap: 26px;
    transform: translateX(100%); transition: transform .45s cubic-bezier(.22,.61,.36,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.3rem; color: #fff; }
  .nav-cta { font-size: 1rem; }
  .hamburger { display: flex; }
  .hamburger span { background: #fff; }

  .about-grid, .contact-grid, .booking-grid { grid-template-columns: 1fr; }
  .about-img-accent { bottom: -20px; }
  .about-badge { top: -18px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .contact-map { min-height: 320px; }
}
@media (max-width: 560px) {
  .services-grid, .gallery-grid, .pricing-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ig-profile { flex-wrap: wrap; justify-content: center; border-radius: 24px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .about-stats { gap: 24px; }
  .about-img-accent { display: none; }
  .about-img-main { width: 100%; }
}
