/* ==========================================================================
   VARIABLES GLOBALES (Thème, Couleurs & Constantes)
   ========================================================================== */
:root {
  /* Arrière-plans & Surfaçage */
  --bg: #FFFFFF;
  --panel: #FAF8FE;
  --panel-2: #F3EEFC;
  --line: #E9E3F5;
  
  /* Couleurs de Texte */
  --text: #110C24;
  --muted: #5C5575;
  
  /* Palette Violet / Glamour (Brand Identity) */
  --violet-primary: #6C4CD8;
  --violet-deep: #3A1C93;
  --violet-glow: #8B5CF6;
  --glam-pink: #D946EF;
  
  /* Dégradés & Ombres réutilisables */
  --glam-gradient: linear-gradient(135deg, #7C3AED 0%, #D946EF 100%);
  --glam-shadow: 0 12px 30px -5px rgba(124, 58, 237, 0.45);
  
  /* Layout Constantes */
  --radius: 18px;
  --maxw: 1140px;
}

/* ==========================================================================
   RESET CSS & STYLES DE BASE
   ========================================================================== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; /* Animation fluide lors des clics sur les ancres (#) */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { 
  color: inherit; 
  text-decoration: none; 
}

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

/* Wrapper de centrage du contenu */
.wrap { 
  max-width: var(--maxw); 
  margin: 0 auto; 
  padding: 0 28px; 
}

/* ==========================================================================
   COMPOSANTS DE TYPOGRAPHIE & TITRES
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-primary);
  background: rgba(108, 76, 216, 0.08);
  backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(108, 76, 216, 0.2);
}

/* Point animé lumineux dans le badge eyebrow */
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--glam-pink);
  box-shadow: 0 0 10px var(--glam-pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(217, 70, 239, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 70, 239, 0); }
}

h1, h2, h3 { 
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text);
  position: relative;
  display: inline-block;
}

/* Texte avec effet dégradé */
.gradient-text {
  background: linear-gradient(135deg, #0F0A1C 20%, var(--violet-primary) 60%, var(--glam-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ligne décorative sous les titres */
.title-underline {
  position: relative;
  display: inline-block;
}
.title-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--glam-gradient);
  border-radius: 10px;
}

h3 { 
  font-size: 21px; 
  font-weight: 800; 
  color: var(--text); 
}

/* ==========================================================================
   NAVIGATION (HEADER)
   ========================================================================== */
header {
  position: sticky; 
  top: 0; 
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 78px; 
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 800; 
  font-size: 20px; 
}

.logo-mark {
  width: 38px; 
  height: 38px; 
  border-radius: 12px;
  background: var(--glam-gradient);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 17px; 
  color: #fff; 
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

#navList { 
  display: flex; 
  gap: 8px; 
  list-style: none; 
}

#navList a {
  font-size: 14.5px; 
  color: var(--text); 
  font-weight: 600;
  padding: 9px 16px; 
  border-radius: 100px; 
  transition: all 0.2s ease;
}

#navList a:hover { 
  background-color: var(--panel-2); 
  color: var(--violet-primary); 
}

/* ==========================================================================
   BOUTONS ET ACTIONS
   ========================================================================== */
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-weight: 700; 
  font-size: 14px;
  padding: 12px 24px; 
  border-radius: 100px; 
  border: 1px solid var(--violet-primary);
  color: var(--violet-primary); 
  background: transparent; 
  cursor: pointer; 
  transition: all .25s ease;
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px;
}

.btn:hover { 
  background: var(--panel-2); 
  color: var(--violet-primary); 
}

.btn-solid { 
  background: var(--violet-primary); 
  color: #fff; 
  border-color: var(--violet-primary); 
}

.btn-solid:hover { 
  background: var(--violet-deep); 
  border-color: var(--violet-deep); 
}

.btn-glam {
  background: var(--glam-gradient) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: var(--glam-shadow);
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 14px 28px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.btn-glam:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 36px -5px rgba(124, 58, 237, 0.6);
  color: #FFF !important;
}

.nav-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* Responsive Header (Mobile) */
@media (max-width: 768px) {
  #navList {
    position: fixed; top: 78px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 24px 28px; gap: 12px; transform: translateY(-150%); transition: transform .25s ease;
  }
  #navList.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .nav-actions .btn:not(.menu-toggle) { display: none; }
}

/* ==========================================================================
   SECTION HERO EN GRID (TEXTE + ENGAGEMENTS A COTE)
   ========================================================================== */
.hero { 
  padding: 60px 0 80px; 
  position: relative; 
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero h1 { 
  font-size: clamp(34px, 4.2vw, 52px); 
  font-weight: 900; 
  line-height: 1.12; 
  margin-bottom: 20px; 
}

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

.hero p.lede { 
  color: var(--muted); 
  font-size: 16px; 
  margin-bottom: 28px; 
  font-weight: 500; 
}

.hero-ctas { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
  justify-content: flex-start; 
  margin-bottom: 36px; 
}

.stat-row { 
  display: flex; 
  gap: 28px; 
  flex-wrap: wrap; 
  justify-content: flex-start; 
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.stat .num { font-size: 22px; font-weight: 900; color: var(--violet-deep); }
.stat .label { font-size: 12.5px; color: var(--muted); font-weight: 600; }

/* ==========================================================================
   STYLE FIN DU BLOC "NOS ENGAGEMENTS"
   ========================================================================== */
.engagements-dynamic-wrap {
  position: relative;
  background: linear-gradient(145deg, #18102A 0%, #0F0A1C 100%);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px -15px rgba(58, 28, 147, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.15);
  overflow: hidden;
}

.eng-title {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.eng-cards-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eng-card-ultra {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.eng-card-ultra:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(217, 70, 239, 0.4);
  transform: translateX(4px);
}

.eng-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet-primary) 0%, var(--glam-pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(108, 76, 216, 0.35);
}

.eng-icon-box svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

.eng-text-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px 0;
}

.eng-text-box p {
  font-size: 13px;
  color: #A3A1AB;
  margin: 0;
  font-weight: 500;
}

.eng-badge-pulse {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 6px;
  height: 6px;
  background: var(--glam-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--glam-pink);
}

/* ==========================================================================
   SECTIONS GÉNÉRIQUES ET CARTES DE MATIÈRES
   ========================================================================== */
section { padding: 80px 0; }
.section-head { max-width: 700px; margin-bottom: 52px; }
.divider { border: none; border-top: 1px solid var(--line); }

.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width:860px) { .cards3 { grid-template-columns: 1fr; } }

.card { 
  background: var(--panel); 
  border: 1px solid var(--line); 
  border-radius: var(--radius); 
  padding: 32px 26px; 
  transition: transform .25s, box-shadow .25s; 
}
.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 20px 40px -20px rgba(108,76,216,0.25); 
  border-color: rgba(108,76,216,0.3); 
}
.card .icon { 
  width: 46px; 
  height: 46px; 
  border-radius: 14px; 
  background: var(--panel-2); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 22px; 
  color: var(--violet-deep); 
  margin-bottom: 18px; 
}
.card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

.levels { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.level-chip { font-size: 13px; font-weight: 700; padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; color: var(--violet-deep); background: var(--panel); }

/* ==========================================================================
   SECTION À PROPOS
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 50px; align-items: start; }
@media (max-width:860px) { .about-grid { grid-template-columns: 1fr; } }

.photo-frame { aspect-ratio: 4/5; background: var(--panel-2); border: 1px solid var(--line); border-radius: 24px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13.5px; text-align: center; padding: 20px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.tag { font-size: 12.5px; font-weight: 700; color: var(--violet-deep); background: var(--panel-2); padding: 6px 14px; border-radius: 100px; }

/* ==========================================================================
   SECTION TARIFS
   ========================================================================== */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width:860px) { .price-wrap { grid-template-columns: 1fr; } }

.price-card { 
  background: linear-gradient(160deg, #1A1230, #0F0A1C); 
  border-radius: 24px; 
  padding: 44px; 
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}
.price-tag { font-size: 54px; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.04em; }
.price-tag span { font-size: 16px; font-weight: 500; opacity: 0.8; }
.price-list { list-style: none; margin: 24px 0 32px; }
.price-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14.5px; color: #E2E8F0; }
.price-list li::before { content: '✓'; color: var(--glam-pink); font-weight: 800; }

/* ==========================================================================
   SECTION AVIS & REDIRECTION FORMULAIRE EXTERNE
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
@media (max-width:860px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14.5px; color: var(--muted); font-style: italic; margin-bottom: 20px; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar-initial {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--glam-gradient); color: #fff;
  font-weight: 800; display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.author-info h4 { font-size: 15px; font-weight: 700; color: var(--text); margin: 0; }
.author-info span { font-size: 12px; color: var(--muted); font-weight: 600; }

/* Bloc Call To Action pour laisser un avis sur Google Form / Tally */
.leave-review-cta {
  background: linear-gradient(135deg, var(--panel-2) 0%, #EAE2FB 100%);
  border: 1px solid rgba(108, 76, 216, 0.25);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.leave-review-cta h3 { font-size: 22px; margin-bottom: 8px; }
.leave-review-cta p { color: var(--muted); font-size: 14.5px; max-width: 520px; margin: 0 auto 22px; }


/* ==========================================================================
   SECTION CONTACT CENTRÉE (SANS PHOTO)
   ========================================================================== */

.contact-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* Fond blanc pur */
}

.contact-container-centered {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* En-tête : Titre centré */
.contact-header {
  text-align: center;
  margin-bottom: 36px;
  width: 100%;
}

.contact-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.contact-header h2 span {
  background: var(--glam-gradient, linear-gradient(135deg, #7C3AED, #D946EF));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Formulaire */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 700;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background-color: #FAFAFC;
  font-size: 14.5px;
  color: #1F2937;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background-color: #FFFFFF;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
}

/* ==========================================================================
   FOOTER EXACTEMENT IDENTIQUE À L'IMAGE D'ORIGINE
   ========================================================================== */
footer.exact-footer {
  background-color: #12091F; /* Fond très sombre violet/noir */
  color: #FFFFFF;
  padding: 60px 0 30px;
  position: relative;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 860px) {
  .footer-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid-4 { grid-template-columns: 1fr; }
}

.footer-brand-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-brand-sub {
  color: #A3A1AB;
  font-size: 14px;
  font-weight: 500;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A855F7;
  margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a, .footer-links p {
  color: #E2E8F0;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #D946EF; }

/* Icônes sociales rondes du footer */
.social-circle-list { display: flex; gap: 12px; }
.social-circle {
  width: 40px; 
  height: 40px; 
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #FFF; 
  transition: background 0.2s, transform 0.2s;
}
.social-circle:hover {
  background: var(--violet-primary);
  transform: translateY(-2px);
}
.social-circle svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8B859E;
  font-size: 13px;
}

/* ==========================================================================
   BOUTON FLOATTANT WHATSAPP (Pilule verte en bas à droite)
   ========================================================================== */
.whatsapp-exact-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #00E676;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
  z-index: 99;
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-exact-pill:hover { transform: scale(1.05); }
.whatsapp-exact-pill svg { width: 22px; height: 22px; fill: #FFFFFF; }

/* ==========================================================================
   BOUTON AVIS FLOATTANT (Visibilité uniquement dans la section #avis)
   ========================================================================== */
.floating-review-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.floating-review-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-review-btn .btn-glam {
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
  padding: 12px 22px !important;
  font-size: 14px !important;
}

/* ==========================================================================
   1. GESTION BOUTONS FLOTTANTS (WHATSAPP & AVIS DU MÊME CÔTÉ)
   ========================================================================== */

/* Bouton WhatsApp (Masquage dynamique lors de la classe .is-hidden) */
#whatsappBtn {
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

#whatsappBtn.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(0.8) translateY(10px) !important;
  pointer-events: none;
}

/* Bouton Avis (Aligné à droite comme WhatsApp) */
.floating-review-btn {
  position: fixed;
  bottom: 30px;
  right: 30px; /* Même positionnement que WhatsApp */
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s;
}

.floating-review-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   SECTION "NOS ENGAGEMENTS" — DESIGN PURÉ & PREMIUM
   ========================================================================== */

.engagements-dynamic-wrap {
  position: relative;
  background: linear-gradient(145deg, #18102A 0%, #0F0A1C 100%);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px -15px rgba(58, 28, 147, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.15);
  overflow: hidden;
}

/* Titre de la section */
.eng-title {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.eng-cards-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Cartes individuelles d'engagement */
.eng-card-ultra {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.eng-card-ultra:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(217, 70, 239, 0.4);
  transform: translateX(4px);
}

/* Boîtier d'icônes avec le violet de votre charte */
.eng-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet-primary) 0%, var(--glam-pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(108, 76, 216, 0.35);
}

.eng-icon-box svg {
  width: 22px;
  height: 22px;
  fill: #FFFFFF;
}

/* Textes dans les cartes */
.eng-text-box h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px 0;
}

.eng-text-box p {
  font-size: 13.5px;
  color: #A3A1AB;
  margin: 0;
  font-weight: 500;
}

/* Puce lumineuse au coin supérieur droit */
.eng-badge-pulse {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 6px;
  height: 6px;
  background: var(--glam-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--glam-pink);
}

/* Halo lumineux en mouvement continu à l'arrière-plan */
.engagements-bg-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(192, 132, 252, 0.05) 40%, transparent 70%);
  animation: rotateGlow 12s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.eng-title {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.eng-cards-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Carte effet Glassmorphism avec animation */
.eng-card-ultra {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Effet au survol des cartes */
.eng-card-ultra:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(192, 132, 252, 0.5);
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
}

/* Témoin lumineux qui pulsa au bord de la carte */
.eng-badge-pulse {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  background: #c084fc;
  border-radius: 50%;
  box-shadow: 0 0 10px #c084fc;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Boîtier d'icône vectorielle avec effet de brillance */
.eng-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #c084fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
  transition: transform 0.3s ease;
}

.eng-card-ultra:hover .eng-icon-box {
  transform: rotate(6deg) scale(1.1);
}

.eng-icon-box svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.eng-text-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.eng-text-box p {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
  font-weight: 500;
}

/* Bouton Avis qui garde la couleur violette */
.review-violet-pill {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4) !important;
}

.review-violet-pill:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%) !important;
  transform: translateY(-2px);
}

/* Style de base et masquage par défaut du bouton Avis */
.review-violet-pill {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Affichage dynamique lorsque la classe is-visible est ajoutée par le JS */
.review-violet-pill.is-visible {
  opacity: 1;
  visibility: visible;
}

#reserver .section-head {
  text-align: center;
  margin-bottom: 32px;
}

.container-cal {
  max-width: 900px;
  margin: 0 auto;
}

.photo-container-apropos {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}

.profile-img-apropos {
  width: 100%;
  height: auto;
  border-radius: 20px; /* Conserve les angles arrondis de votre maquette */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Ombre douce */
  display: block;
}

.photo-caption {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 10px;
}