/* ============================================================
   BB RELOCATION — Style Principal
   Palette : Violet #7C3FA8 · Rose/Magenta #D4148A
   ============================================================ */

:root {
  --purple:       #7C3FA8;
  --pink:         #D4148A;
  --purple-light: #9B5EC4;
  --pink-light:   #E84AAF;
  --gradient:     linear-gradient(135deg, #7C3FA8 0%, #D4148A 100%);
  --gradient-rev: linear-gradient(135deg, #D4148A 0%, #7C3FA8 100%);
  --bg:           #F8F6FA;
  --bg-alt:       #FFFFFF;
  --text:         #2D2D2D;
  --text-light:   #6B6B6B;
  --border:       #E8DFF0;
  --shadow:       0 4px 24px rgba(124, 63, 168, 0.10);
  --shadow-hover: 0 8px 40px rgba(124, 63, 168, 0.20);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BILINGUAL ===== */
body.lang-fr .en-only { display: none !important; }
body.lang-en .fr-only { display: none !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 20, 138, 0.35);
  opacity: 0.92;
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: transparent;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124,63,168,0.12), rgba(212,20,138,0.12));
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-header p { color: var(--text-light); font-size: 17px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(124,63,168,0.12); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }

/* Logo fallback : hidden by default, shown via onerror when image fails */
.logo-fallback {
  display: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.logo-fallback span { display: block; font-weight: 400; letter-spacing: 4px; font-size: 11px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--purple); background: rgba(124,63,168,0.07); }

/* Espace Client : même gradient que btn-primary */
.btn-client {
  background: var(--gradient) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  white-space: nowrap;
}
.btn-client:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(212,20,138,0.35) !important;
  opacity: 0.92 !important;
  color: #fff !important;
  background: var(--gradient) !important;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 3px 4px;
  background: var(--bg);
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--gradient);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--purple); border-radius: 2px; transition: var(--transition); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, rgba(124,63,168,0.05), rgba(212,20,138,0.05));
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-tag { margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== HERO (homepage) ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.badge i { color: var(--pink); }

.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.hero-card i {
  font-size: 36px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}
.hero-card p { font-size: 14px; font-weight: 600; color: var(--text); }

/* ===== PROCESS ===== */
.process-section { background: linear-gradient(135deg, rgba(124,63,168,0.04), rgba(212,20,138,0.04)); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.process-step { flex: 1; max-width: 240px; text-align: center; padding: 24px; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.process-arrow { display: flex; align-items: center; padding: 0 8px; padding-top: 36px; color: var(--pink); font-size: 20px; opacity: 0.4; }

/* ===== SERVICES TEASER (homepage) ===== */
.services-teaser-section { background: var(--bg-alt); }
.teaser-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.teaser-icon-big {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(124,63,168,0.1), rgba(212,20,138,0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.teaser-icon-big i {
  font-size: 32px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.teaser-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.teaser-left p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }
.teaser-checklist { display: flex; flex-direction: column; gap: 12px; }
.teaser-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.teaser-checklist li i { color: var(--pink); font-size: 16px; flex-shrink: 0; }

.tarif-highlight {
  background: linear-gradient(135deg, rgba(124,63,168,0.06), rgba(212,20,138,0.06));
  border: 1px solid rgba(212,20,138,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.tarif-highlight .tarif-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}
.tarif-big {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
}
.tarif-big span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tarif-acompte {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  border: 1px solid var(--border);
}
.tarif-acompte strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 4px; }

/* ===== SERVICES PAGE ===== */
.services-section { background: var(--bg-alt); }
.pack-bloc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
}
.pack-header {
  background: var(--gradient);
  padding: 40px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
}
.pack-header-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.pack-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}
.pack-header p { opacity: 0.85; font-size: 15px; }

.pack-body { padding: 48px; }
.pack-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(124,63,168,0.25); }
.module-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(124,63,168,0.1), rgba(212,20,138,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.module-icon i { font-size: 20px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.module-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.module-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.module-list { display: flex; flex-direction: column; gap: 7px; }
.module-list li { font-size: 12px; color: var(--text-light); padding-left: 16px; position: relative; }
.module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient);
}

/* Pricing block */
.pricing-bloc {
  background: linear-gradient(135deg, rgba(124,63,168,0.04), rgba(212,20,138,0.04));
  border: 1.5px solid rgba(212,20,138,0.2);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  margin-bottom: 40px;
}
.pricing-bloc h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-bloc > p { font-size: 16px; color: var(--text-light); margin-bottom: 40px; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto 32px; }
.pricing-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.pricing-item.main { border-color: var(--pink); }
.pricing-item .pi-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}
.pricing-item .pi-amount {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.pricing-item .pi-amount span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-item .pi-note { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.pricing-mention { font-size: 14px; color: var(--text-light); margin-bottom: 36px; font-style: italic; }

/* Accordion FAQ */
.accordion { margin-bottom: 40px; }
.accordion-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}
.accordion-btn i { color: var(--pink); transition: var(--transition); flex-shrink: 0; }
.accordion-btn.open i { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body-inner { padding: 0 24px 20px; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== ABOUT ===== */
.about-section { background: var(--bg-alt); }
.about-container { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 520px;
  background: linear-gradient(135deg, rgba(124,63,168,0.06), rgba(212,20,138,0.06));
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder { text-align: center; color: var(--text-light); padding: 24px; }
.about-photo-placeholder i {
  font-size: 80px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}
.about-photo-placeholder p { font-size: 14px; font-weight: 500; }

.about-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 28px;
}
.about-lead { font-size: 17px; color: var(--text); font-weight: 500; line-height: 1.75; margin-bottom: 20px; }
.about-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }

.certif-cards { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.certif-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.certif-card i { font-size: 22px; color: var(--pink); flex-shrink: 0; }
.certif-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.certif-card small { font-size: 12px; color: var(--text-light); }

.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.value-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(124,63,168,0.08), rgba(212,20,138,0.08));
  color: var(--purple);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.value-item i { color: var(--pink); }

.about-langs { display: flex; gap: 16px; }
.about-langs span { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--text-light); }
.about-langs i { color: var(--purple); }

/* ===== TESTIMONIALS ===== */
.temoignages-section { background: var(--bg); }
.temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.temoignage-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.temoignage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: #FFB800; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.temoignage-card p { font-size: 15px; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 24px; }
.temoignage-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.temoignage-author strong { font-size: 14px; }
.temoignage-author small { font-size: 12px; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-banner p { font-size: 17px; opacity: 0.85; max-width: 540px; margin: 0 auto 36px; line-height: 1.65; }
.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
}
.cta-banner .btn-outline:hover { background: #fff; color: var(--purple); border-color: #fff; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--bg-alt); }
.contact-container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-info > p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(124,63,168,0.1), rgba(212,20,138,0.1));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { font-size: 20px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-item div strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.contact-item div a, .contact-item div span { font-size: 15px; font-weight: 500; color: var(--text); }
.contact-item div a:hover { color: var(--pink); }

.contact-cta-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* Form */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,63,168,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ===== MULTI-STEP FORM ===== */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.step-indicator {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: block;
}
.step-heading {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.step-subtext { font-size: 14px; color: var(--text-light); margin-bottom: 28px; line-height: 1.5; }

.form-progress-bar {
  background: var(--border);
  border-radius: 50px;
  height: 4px;
  margin-bottom: 32px;
  overflow: hidden;
}
.form-progress-fill {
  background: var(--gradient);
  height: 100%;
  border-radius: 50px;
  transition: width 0.4s ease;
}

/* Pill buttons */
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-btn {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.pill-btn:hover { border-color: var(--purple); color: var(--purple); }
.pill-btn.active {
  background: linear-gradient(135deg, rgba(124,63,168,0.1), rgba(212,20,138,0.08));
  border-color: var(--purple);
  color: var(--purple);
  font-weight: 700;
}
.pill-btn.active .pill-check { display: inline; }
.pill-check { display: none; font-size: 11px; }

/* Budget slider */
.budget-display {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin: 12px 0 14px;
}
input[type="range"].budget-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 50px;
  outline: none;
  cursor: pointer;
  background: var(--border);
}
input[type="range"].budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(124,63,168,0.35);
  cursor: pointer;
  transition: var(--transition);
}
input[type="range"].budget-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.budget-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-light); margin-top: 8px; }
.budget-hint { font-size: 12px; color: var(--text-light); margin-top: 6px; }

/* Criteria */
.criteria-item { margin-bottom: 20px; }
.criteria-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.criteria-note { font-size: 11px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-light); }
.criteria-divider { height: 1px; background: var(--border); margin: 8px 0 24px; }

/* Date picker conditional */
.date-picker-extra { margin-top: 14px; display: none; }
.date-picker-extra.visible { display: block; }

/* Step navigation */
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }
.btn-back {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-back:hover { border-color: var(--purple); color: var(--purple); }

/* Summary step */
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.summary-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.summary-item .s-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.summary-item .s-value { font-size: 14px; font-weight: 600; color: var(--text); }

/* Horaires */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table tr td { font-size: 13px; padding: 3px 0; }
.hours-table tr td:first-child { color: var(--text); font-weight: 600; padding-right: 16px; white-space: nowrap; }
.hours-table tr td:last-child { color: var(--text-light); }
.hours-table tr.closed td { color: var(--text-light); opacity: 0.55; }

.footer-hours { margin-top: 10px; }
.footer-hours p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ===== FOOTER ===== */
.footer { background: #1A1025; color: rgba(255,255,255,0.75); }
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer-logo { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--pink); color: #fff; }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 20px;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-services li { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links li a:hover { color: var(--pink-light); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-contact a:hover { color: var(--pink-light); }
.footer-lang-toggle { display: flex; align-items: center; gap: 6px; margin-top: 16px; }
.footer-lang-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.footer-lang-btn.active { background: var(--gradient); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--pink-light); }

/* Logo fallback dans footer */
.footer-logo-text {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo-text span { display: block; font-weight: 400; letter-spacing: 4px; font-size: 11px; opacity: 0.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 60px; text-align: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { grid-template-columns: repeat(3, 1fr); max-width: 560px; margin: 0 auto; }
  .teaser-card { grid-template-columns: 1fr; }
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-frame { max-height: 360px; aspect-ratio: auto; position: static; }
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pack-modules { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-wrap: wrap; justify-content: center; }
  .process-arrow { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; border-radius: 8px; }
  .lang-switcher { margin: 4px 0; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .pack-modules { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pack-body { padding: 28px 24px; }
  .pricing-bloc { padding: 36px 24px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stat-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding: 110px 20px 48px; }
  .hero-visual { grid-template-columns: 1fr; max-width: 280px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .pack-header { flex-direction: column; text-align: center; }
  .about-stat-row { grid-template-columns: 1fr; }
}
