:root {
  --teal:    #00c8b0;
  --teal2:   #009e8e;
  --marine:  #0e2140;
  --blanc:   #ffffff;
  --fond:    #f5f9fb;
  --gris:    #6b7a8d;
  --gris2:   #e4edf2;
  --texte:   #1a2b3c;
  --font-titre: 'Cormorant Garamond', serif;
  --font-body:  'DM Sans', sans-serif;
  --ombre:   0 4px 24px rgba(14, 33, 64, 0.08);
  --ombre2:  0 8px 40px rgba(14, 33, 64, 0.12);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--fond);
  color: var(--texte);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-titre); font-weight: 700; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gris2);
  padding: 5px 20px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(14, 33, 64, 0.06);
}

.navbar-brand img { height: 100px; }

.nav-link {
  color: var(--texte) !important;
  font-size: 17px;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s;
  position:centrer;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(0, 200, 176, 0.1);
  color: var(--teal2) !important;
}

.btn-nav-contact {
  background: var(--teal);
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 24px !important;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn-nav-contact:hover {
  background: var(--teal2);
  color: #fff !important;
  transform: translateY(-1px);
}

.navbar-toggler { border-color: var(--gris2); }
.navbar-toggler:focus { box-shadow: none; }

.dropdown-item {
  color: var(--texte);
  font-size: 15px;
  padding: 8px 20px;
  transition: background 0.25s, color 0.25s;

}
.dropdown-item:hover {
  background: rgba(0, 200, 176, 0.1);
  color: var(--teal2);
 
}
/* ===== SECTIONS COMMUNES ===== */
.section { padding: 90px 0; }
.section-blanc { background: var(--blanc); }
.section-fond  { background: var(--fond); }

.titre-section {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--marine);
  margin-bottom: 14px;
}

.titre-section span { color: var(--teal2); }

.ligne-teal {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 20px;
}

.texte-gris { color: var(--gris); }

.badge-section {
  display: inline-block;
  background: rgba(0, 200, 176, 0.1);
  border: 1px solid rgba(0, 200, 176, 0.3);
  color: var(--teal2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

/* ===== BOUTONS ===== */
.btn-principal {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 34px;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-principal:hover {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 176, 0.35);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal2);
  background: transparent;
  border-radius: 50px;
  padding: 11px 32px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.55);
}

.hero-contenu {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  padding: 100px 0 80px;
}

.hero-cercle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 10;
}

.cercle-a {
  width: 400px;
  height: 400px;
  right: 5%;
  top: 10%;
  animation: tourner 20s linear infinite;
}

.cercle-b {
  width: 600px;
  height: 600px;
  right: 0%;
  top: -10%;
  animation: tourner 30s linear infinite reverse;
}

@keyframes tourner {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 200, 176, 0.15);
  border: 1px solid rgba(0, 200, 176, 0.4);
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero-titre {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-titre span { color: var(--teal); }

.hero-sous-titre {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.stat-nombre {
  font-family: var(--font-titre);
  font-size: 2.4rem;
  color: var(--teal);
  line-height: 1;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.carousel-indicators {
  z-index: 11;
  bottom: 60px;
}

.carousel-indicators button {
  width: 10px;
  height: 4px;
  border-radius: 0;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s;
  opacity: 1;
}
.carousel-control-prev,
.carousel-control-next {
  z-index: 20;
  width: 60px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 36px;
  height: 36px;
  transition: background-color 0.3s;
}

.hero-onde {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 11;
  line-height: 0;
}


.hero-tag {
  display: inline-block;
  background: rgba(0, 200, 176, 0.18);
  border: 1px solid rgba(0, 200, 176, 0.45);
  color: #fff;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 0.04em;
}

/* ===== ABOUT ===== */
.about-img-cadre {
  position: relative;
  height: 500px;
  width: 100%;
  padding: 20px;
  background: var(--blanc);
  border-radius: 500px 500px  0 0;
  box-shadow: var(--ombre2);
}

.about-img-cadre::before {
  content: '';
  position: absolute;
  top: -10px; right: -10px;
  height: 500px;
  width: 100%; 
   border: 2px solid var(--teal);
  border-radius: 500px 500px  0 0;
  z-index: -1;
  opacity: 0.3;
}

.about-img-cadre img {
  height: 100%;
  width: 100%;
  border-radius: 500px 500px  0 0;
  background: var(--fond);
  padding: 30px;
}

.tag-about {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--fond);
  border-left: 3px solid var(--teal);
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--texte);
  transition: box-shadow 0.25s;
}

.tag-about:hover { box-shadow: var(--ombre); }

.tag-about i { color: var(--teal); font-size: 18px; }

/* ===== MISSION / VISION / VALEURS ===== */
.mvv-card {
  background: var(--blanc);
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: var(--ombre);
  border-top: 4px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.mvv-card.mission { border-top-color: var(--teal); }
.mvv-card.vision  { border-top-color: #3a86f5; }
.mvv-card.valeurs { border-top-color: #f5a623; }

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre2);
}

.mvv-icon {
  width: 58px; 
  height: 58px;
  border-radius: 14px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.mission .mvv-icon { background: rgba(0, 200, 176, 0.1); color: var(--teal2); }
.vision  .mvv-icon { background: rgba(58, 134, 245, 0.1); color: #3a86f5; }
.valeurs .mvv-icon { background: rgba(245, 166, 35, 0.1); color: #e09518; }

.mvv-card h3 { font-size: 1.6rem; color: var(--marine); margin-bottom: 12px; }

.mvv-card p { font-size: 15px; color: var(--gris); }

.valeur-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gris);
}

.valeur-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.card-service {
  background: var(--blanc);
  border: 1px solid var(--gris2);
  border-radius: 14px;
  padding: 32px 26px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.card-service::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--teal);
  border-radius: 0 0 14px 14px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.card-service:hover {
  border-color: rgba(0, 200, 176, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--ombre2);
}

.card-service:hover::after { transform: scaleX(1); }

.icone-service {
  width: 52px; height: 52px;
  background: rgba(0, 200, 176, 0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--teal2);
  margin-bottom: 20px;
}

.card-service h4 { font-size: 1.25rem; color: var(--marine); margin-bottom: 8px; }
.card-service p  { font-size: 14px; color: var(--gris); }

/* ===== APPROCHE ===== */
.etape {
  display: flex;
  gap: 22px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.etape-num {
  font-family: var(--font-titre);
  font-size: 3rem;
  color: rgba(0, 200, 176, 0.25);
  line-height: 1;
  min-width: 52px;
  font-weight: 700;
}

.etape-contenu h4 { font-size: 1.1rem; color: var(--marine); margin-bottom: 5px; }
.etape-contenu p  { font-size: 14px; color: var(--gris); }

/* ===== CONTACT PAGE ===== */

.c-section {
  background: #f5f9fb;
  padding: 70px 0;
}

.c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 40px 150px;
}

@media (max-width: 900px) {
  .c-grid { grid-template-columns: 1fr; }
}

.c-card:first-child {/* Infos contact + réseaux sociaux */
  background: transparent;
  padding: 50px 48px;
  box-shadow: none;
}

.c-card:last-child { /* Formulaire */
  background: #fff;
  padding: 50px 48px;
  box-shadow: 0 4px 24px rgba(14,33,64,0.08);
}


.c-card-titre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #0e2140;
  margin-bottom: 6px;
}
.c-card-titre span { color: #00c8b0; }

.c-card-sous {
  font-size: 17px;
  color: #6b7a8d;
  margin-bottom: 28px;
  line-height: 1.6;
}

.c-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  animation: fadeSlide 0.5s ease both;
}

.c-info:nth-child(1) { animation-delay: 0.2s; }
.c-info:nth-child(2) { animation-delay: 0.3s; }
.c-info:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

.c-info-icone {
  width: 42px;
  height: 42px;
  background: rgba(0,200,176,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009e8e;
  font-size: 17px;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}

.c-info:hover .c-info-icone {
  background: #00c8b0;
  color: #fff;
  transform: scale(1.1);
}

.c-info-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7a8d;
  margin-bottom: 2px;
}

.c-info-valeur {
  font-size: 17px;
  color: #1a2b3c;
  margin: 0;
}

.c-info-valeur a {
  color: #009e8e;
  text-decoration: none;
}

.c-hr {
  border: none;
  border-top: 1px solid #e4edf2;
  margin: 22px 0;
}

.c-lien-reseau {
  width:85%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid #e4edf2;
  border-radius: 10px;
  background: #fff;
  color: #1a2b3c;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.c-lien-reseau:hover {
  border-color: #00c8b0;
  background: rgba(0,200,176,0.04);
  color: #1a2b3c;
  transform: translateX(4px);
}

.c-lien-reseau i:first-child { font-size: 17px; }

.c-form-titre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #0e2140;
  margin-bottom: 4px;
}

.c-form-sous {
  font-size: 15px;
  color: #6b7a8d;
  margin-bottom: 24px;
}

.c-form-sous span { color: #e53e3e; }


.c-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 500px) {
  .c-row { grid-template-columns: 1fr; }
}


.c-groupe {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}


.c-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a8d;
  margin-bottom: 6px;
}

.c-label span { color: #e53e3e; }


.c-input,
.c-select,
.c-textarea {
  background: #f5f9fb;
  border: 1px solid #e4edf2;
  color: #1a2b3c;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.c-input:focus,
.c-select:focus,
.c-textarea:focus {
  border-color: #00c8b0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,200,176,0.1);
}

.c-input.erreur,
.c-select.erreur,
.c-textarea.erreur {
  border-color: #e53e3e;
  background: #fff8f8;
}

.c-textarea {
  resize: none;
  height: 140px;
}

.c-erreur-msg {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  align-items: center;
  gap: 4px;
}

.c-erreur-msg.visible { display: flex; }


.c-btn {
  background: #00c8b0;
  color: #fff;
  border: none;
  padding: 14px ;
  font-size: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border-radius: 20px;
  margin: 10px  auto ;
  width: auto;
}

.c-btn:hover {
  background: #009e8e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,200,176,0.3);
}

.c-btn:active { transform: translateY(0); }


.c-succes {
  text-align: center;
  padding: 60px 20px;
  animation: carteEntree 0.5s ease both;
}

.c-succes i {
  font-size: 64px;
  color: #00c8b0;
  display: block;
  margin-bottom: 18px;
  animation: popIn 0.4s ease both;
  animation-delay: 0.2s;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

.c-succes h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #0e2140;
  margin-bottom: 10px;
}

.c-succes p {
  color: #6b7a8d;
  font-size: 15px;
  max-width: 320px;
  margin: 0 auto 28px;
}

.c-btn-retour {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00c8b0;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  border-radius: 0;
}
.c-btn-retour i { 
  display:flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: rgb(255, 255, 255);
  
}

.c-btn-retour:hover {
  background: #009e8e;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .c-card:first-child,
  .c-card:last-child { padding: 28px 20px; }
}


/* ===== PAGE CONTACT HERO ===== */
.page-hero {
      background: linear-gradient(135deg, var(--marine) 0%, #1a3a5c 100%);
      padding: 90px 0 70px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.04);
      top: -150px; right: -100px;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      border: 1px solid rgba(0,200,176,0.12);
      bottom: -80px; left: -60px;
    }
 
    .badge-section {
      display: inline-block;
      background: rgba(0,200,176,0.15);
      border: 1px solid rgba(0,200,176,0.35);
      color: var(--teal);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 5px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
      font-family: var(--font-body);
    }
 
    .page-hero h1 {
      font-size: clamp(2.4rem, 4.5vw, 3.5rem);
      color: #fff;
      margin-bottom: 12px;
    }
    .page-hero h1 span { color: var(--teal); }
    .page-hero p { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 420px; margin: 0 auto 20px; }
 
    .breadcrumb { background: none; padding: 0; margin: 0; justify-content: center; }
    .breadcrumb-item { font-size: 13px; color: rgba(255,255,255,0.45); }
    .breadcrumb-item a { color: var(--teal); }
    .breadcrumb-item.active { color: rgba(255,255,255,0.65); }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }
 
    .page-hero {
      background: linear-gradient(135deg, var(--marine) 0%, #1a3a5c 100%);
      padding: 90px 0 70px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.04);
      top: -150px; right: -100px;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      border: 1px solid rgba(0,200,176,0.12);
      bottom: -80px; left: -60px;
    }
 
    .badge-section {
      display: inline-block;
      background: rgba(0,200,176,0.15);
      border: 1px solid rgba(0,200,176,0.35);
      color: var(--teal);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 5px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
      font-family: var(--font-body);
    }
 
    .page-hero h1 {
      font-size: clamp(2.4rem, 4.5vw, 3.5rem);
      color: #fff;
      margin-bottom: 12px;
    }
    .page-hero h1 span { color: var(--teal); }
    .page-hero p { 
      font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin-bottom: 36px;}
 
    .breadcrumb { background: none; padding: 0; margin: 0; justify-content: center; }
    .breadcrumb-item { font-size: 15px; color: rgba(255,255,255,0.45); }
    .breadcrumb-item a { color: var(--teal); }
    .breadcrumb-item.active { color: rgba(255,255,255,0.65); }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }
 
    /* ===== ONDE SÉPARATRICE ===== */
    .hero-onde { 
      line-height: 0; 
      position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 11;
  line-height: 0;
    }
    

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-bounce);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}
/* ===== FOOTER ===== */
footer {
  background: var(--marine);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 28px;
}

.footer-logo img {
   height: 100px;

 }
.footer-desc { 
    font-size: 15px; 
    color: rgba(255,255,255,0.5); 
    max-width: 260px; }

.footer-titre {
  font-family: var(--font-body);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 16px;
}

.footer-lien {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  transition: color 0.25s;
}

.footer-lien:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 22px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS FADEÍN ===== */
.fadeIn {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fadeIn.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { padding: 28px 18px; }
  .hero-stats { gap: 24px; }
  .wa-btn { bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== DROPDOWN MOBILE : toujours visible dans le menu ouvert ===== */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    display: block !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 0 16px !important;
  }

  .navbar-nav .dropdown-toggle::after {
    display: none !important;
  }
}