/* =====================================================
   BASE & RESET
   ===================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #1f2933;
  line-height: 1.7;
}

/* =====================================================
   VARIABLES DESIGN – BLANC DOMINANT
   ===================================================== */
:root {
  --blue: #0b67b2;
  --blue-dark: #062b4d;
  --blue-soft: #e9f1fa;

  --bg-main: #ffffff;
  --bg-soft: #f7f9fc;

  --text-main: #1f2933;
  --text-muted: #6b7280;

  --radius: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,.08);
  --shadow-strong: 0 20px 50px rgba(0,0,0,.12);

  --transition: all .35s ease;
}

/* =====================================================
   CONTAINER
   ===================================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
  background: var(--bg-main);
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 56px;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  color: var(--text-main);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-item:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

/* CTA RDV */
.nav-item.btn {
  background: var(--blue);
  color: #ffffff;
  padding: 12px 22px;
  font-weight: 600;
}

.nav-item.btn:hover {
  background: var(--blue-dark);
}

/* =====================================================
   DROPDOWN MENU
   ===================================================== */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  width: 520px;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  z-index: 9999;
}

.has-dropdown:hover .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

/* =====================================================
   HERO
   ===================================================== */
.home-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomSlow 18s linear infinite;
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6,43,77,.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 5%;
  color: #ffffff;
}

.hero-clinic {
  background: var(--blue);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ffffff;
  color: var(--blue-dark);
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

/* =====================================================
   FORMULAIRES – DESIGN UNIQUE
   ===================================================== */
form {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dbe3ef;
  margin-bottom: 18px;
  font-size: 14px;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

button {
  background: var(--blue);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

button:hover {
  background: var(--blue-dark);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg-soft);
  padding: 70px 0;
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer a {
  color: var(--blue);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* =====================================================
   TRINIBOT – DESIGN PREMIUM (STABLE)
   ===================================================== */
#trinibot-launcher {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  border-radius: 50%;
  box-shadow: var(--shadow-strong);
  cursor: pointer;
  z-index: 2147483647;
}

#trinibot-launcher:hover {
  transform: translateY(-4px);
}




/* =====================================================
   IMAGES – ANIMATION SUBTILE
   ===================================================== */
img {
  transition: transform .6s ease, box-shadow .6s ease;
}

img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-soft);
}

/* =====================================================
   FIX DÉFINITIF DES CLICS (INDEX)
   ===================================================== */

/* Le hero ne bloque PLUS après scroll */
.home-hero {
  position: relative;
  z-index: 1;
}

/* Slider décoratif inactif */
.hero-slider,
.hero-slide,
.hero-slide img {
  pointer-events: none;
}

/* Contenu du hero actif */
.hero-content,
.hero-content * {
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

/* Sections suivantes toujours au-dessus du hero */
.home-services,
.home-stats,
.home-map,
.home-contact,
.footer {
  position: relative;
  z-index: 3;
}

/* Chatbot au-dessus de TOUT */
#trinibot-launcher,
#trinibot-box {
  position: fixed !important;
  z-index: 2147483647 !important;
  pointer-events: auto !important;
}

/* Google Maps neutralisé par défaut */
.home-map iframe {
  pointer-events: none;
}



/* =====================================================
   LOGO – VERSION TRÈS IMPOSANTE
   ===================================================== */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 62px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  transition: transform .3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}
/* =====================================================
   SECTIONS – SÉPARATION VISUELLE CLAIRE
   ===================================================== */

.home-services,
.home-stats,
.home-map,
.home-contact {
  background: var(--bg-soft);
  padding: 90px 0;
  margin-top: 40px;
}

/* Titre de section */
.home-services h2,
.home-stats h2,
.home-contact h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--text-muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.satisfaction-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.satisfaction-group label {
  margin: 0;
  cursor: pointer;
}

.satisfaction-group input[type="radio"] {
  transform: scale(1.2);
  cursor: pointer;
}
/* Sécurité : si classe manquante */
#trinibot-messages > div {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 85%;
}

#trinibot-messages > div:not(.user) {
  background: var(--blue-soft);
  color: var(--text-main);
}

#trinibot-messages > div.user {
  background: var(--blue);
  color: #fff;
  margin-left: auto;
}
#trinibot-messages {
  display: flex;
  flex-direction: column;
}
#trinibot-box {
  right: 30px;        /* au lieu de 20px */
  bottom: 110px;      /* remonte légèrement */
}
#trinibot-box {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  border: 1px solid #e6edf5;
}
.message {
  display: flex;
  margin-bottom: 12px;
}

.message.bot {
  justify-content: flex-start;
}

.message.user {
  justify-content: flex-end;
}

.bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 34px;
  line-height: 1.4;
}

/* Bot */
.message.bot .bubble {
  background: #ffffff;
  color: #1f2933;
  border-top-left-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* User */
.message.user .bubble {
  background: linear-gradient(135deg, #0b67b2, #062b4d);
  color: #ffffff;
  border-top-right-radius: 4px;
}

/* =========================
   LIGHTBOX IMAGES
   ========================= */

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: zoomIn .35s ease;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Curseur zoom */
img {
  cursor: zoom-in;
}
/* =====================================================
   SECTION SERVICES – CORRECTION DÉFINITIVE
   ===================================================== */

.home-services {
  background: var(--bg-soft);
  padding: 90px 0;
  position: relative;
  z-index: 4;
}

.home-services h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.home-services .section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== GRILLE DES SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== CARTE SERVICE ===== */
.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  text-align: center;
}

/* Hover élégant */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

/* Image service */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Titre service */
.service-card h3 {
  padding: 22px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   STATISTIQUES – DESIGN PREMIUM
   ===================================================== */

.home-stats {
  background: var(--bg-soft);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

/* Le chiffre */
.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

/* Le texte */
.stat-box p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =====================================================
   HARMONISATION TOTALE – PAGES SERVICES
   ===================================================== */

/* En-tête du service */
.service-header {
  background: linear-gradient(135deg, var(--blue-soft), #ffffff);
  padding: 80px 0 50px;
  border-bottom: 1px solid #e5ecf5;
}

.service-header h1 {
  font-size: 36px;
  color: var(--blue-dark);
  text-align: center;
  font-weight: 700;
}

/* Contenu principal */
.service-content {
  background: var(--bg-main);
  padding: 70px 0;
}

.service-box {
  max-width: 820px;
  margin: auto;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Image / icône du service */
.service-box img,
.service-icon {
  display: block;
  margin: 0 auto 30px;
  max-width: 220px;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

/* Paragraphes */
.service-box p {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 18px;
  text-align: justify;
}

/* Titres internes */
.service-box h3 {
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 600;
}

/* Listes */
.service-box ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.service-box ul li {
  margin-bottom: 10px;
  color: var(--text-main);
  position: relative;
}

.service-box ul li::marker {
  color: var(--blue);
}

/* Bouton action */
.service-actions {
  margin-top: 40px;
  text-align: center;
}

.service-actions a {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.service-actions a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

/* Galerie interne des services (si utilisée) */
.service-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 35px 0;
}

.service-gallery img {
  max-width: 200px;
  border-radius: 14px;
  transition: transform .4s ease, box-shadow .4s ease;
}

.service-gallery img:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-strong);
}

/* Responsive */
@media (max-width: 768px) {
  .service-box {
    padding: 35px 25px;
  }

  .service-header h1 {
    font-size: 28px;
  }
}
/* =====================================================
   ÉQUIPE MÉDICALE – HARMONISATION COMPLÈTE
   ===================================================== */

/* ===== HERO ÉQUIPE ===== */
.team-hero {
  background: linear-gradient(135deg, var(--blue-soft), #ffffff);
  padding: 90px 0 70px;
  text-align: center;
  border-bottom: 1px solid #e6edf6;
}

.team-hero h1 {
  font-size: 40px;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.team-hero p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== DIRECTION MÉDICALE ===== */
.team-director {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}

.director-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-strong);
  display: block;
  margin: auto;
}

.director-info h2 {
  font-size: 28px;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.director-info .name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.director-info .role {
  font-size: 15px;
  color: var(--blue);
  margin-bottom: 12px;
  font-weight: 600;
}

.director-info .desc {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
  max-width: 650px;
}

/* ===== SECTION ÉQUIPE ===== */
.team-section {
  padding: 90px 0;
  background: var(--bg-main);
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: var(--blue-dark);
  margin-bottom: 50px;
  font-weight: 700;
}

/* ===== GRILLE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

/* ===== CARTE ===== */
.team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

/* Image */
.team-img img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  transition: transform .4s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.06);
}

/* Titre spécialité */
.team-card h3 {
  font-size: 16px;
  color: var(--blue-dark);
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .team-director {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .director-info {
    text-align: center;
  }

  .team-hero h1 {
    font-size: 30px;
  }

  .section-title {
    font-size: 26px;
  }
}
/* ===============================
   FIX RADIOS SATISFACTION
   =============================== */

.survey-question {
  margin-bottom: 35px;
}

.survey-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.survey-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}

/* 🔥 FIX PRINCIPAL */
.survey-option input[type="radio"] {
  width: auto !important;
  margin: 0;
  flex-shrink: 0;
}

/* Texte cliquable */
.survey-option span {
  cursor: pointer;
}
/* =====================================================
   RESPONSIVE MOBILE – OPTIMISATION GLOBALE
   ===================================================== */

@media (max-width: 768px) {

  /* =====================
     CONTAINER
     ===================== */
  .container {
    width: 94%;
  }

  /* =====================
     HEADER & MENU
     ===================== */
  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  .logo img {
    height: 62px;
    margin-bottom: 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-item {
    font-size: 14px;
    padding: 8px 12px;
  }

  .nav-item.btn {
    width: 100%;
    text-align: center;
  }

  /* =====================
     HERO
     ===================== */
  .home-hero {
    height: auto;
    min-height: 70vh;
  }

  .hero-content {
    top: auto;
    transform: none;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  /* =====================
     SERVICES
     ===================== */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card img {
    height: 200px;
    object-fit: cover;
  }

  /* =====================
     STATISTIQUES
     ===================== */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  /* =====================
     IMAGES GÉNÉRALES
     ===================== */
  img {
    max-width: 100%;
    height: auto;
  }

  /* =====================
     FORMULAIRES
     ===================== */
  form {
    padding: 25px 20px;
  }

  input,
  select,
  textarea {
    font-size: 16px; /* évite le zoom auto sur mobile */
  }

  button {
    width: 100%;
    font-size: 16px;
  }

  /* =====================
     QUESTIONNAIRE SATISFACTION
     ===================== */
  .survey-question {
    margin-bottom: 25px;
  }

  .survey-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 15px;
  }

  .survey-option input[type="radio"] {
    transform: scale(1.2);
  }

  /* =====================
     BLOG & ARTICLES
     ===================== */
  .service-box img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    border-radius: 14px;
  }

  /* =====================
     FOOTER
     ===================== */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul {
    padding-left: 0;
  }

  /* =====================
     TRINIBOT MOBILE
     ===================== */

  #trinibot-launcher {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;

  padding: 0 !important;
  margin: 0 !important;

  font-size: 14px !important;
  line-height: 1 !important;

  border-radius: 50% !important;

  right: 10px !important;
  bottom: 10px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: hidden !important;
}
/* =====================================================
   GALERIE – GRID + MOBILE
   ===================================================== */

.gallery-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.gallery-section h1 {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-soft);
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 180px;
  }
}
/* =====================================================
   LIGHTBOX – ZOOM IMAGE
   ===================================================== */

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
}

#lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 14px;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}
.nav-item-white{
  color: #fff !important;
}
/* Boutons dropdown (Services / Carrière) : mêmes styles que les liens du menu */
.nav .dropdown-toggle{
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;

  color: inherit;          /* prend la couleur du menu */
  font: inherit;           /* même police */
  cursor: pointer;

  padding: 0;              /* important : enlève style bouton */
  margin: 0;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Supprime le bleu du focus (quand on clique) */
.nav .dropdown-toggle:focus{
  outline: none;
}

/* Optionnel : si ton navigateur ajoute encore du style */
.nav .dropdown-toggle::-moz-focus-inner{
  border: 0;
}
