/* =============================================
   LME Theme – main.css (Bootstrap 5 override)
   ============================================= */

/* =============================================
   VIEW TRANSITIONS (fondu entre pages)
   ============================================= */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: lme-fade-out 0.18s ease-out both;
}

::view-transition-new(root) {
  animation: lme-fade-in 0.22s ease-out both;
}

@keyframes lme-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes lme-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

:root {
  --lme-blue:       #007acd;
  --lme-teal:       #23d2b5;
  --lme-dark:       #003e82;
  --lme-footer-bg:  #3d6693;
  --lme-footer-bot: #003e82;
  --lme-text:       #131313;
  --lme-muted:      #555;
  --lme-light-bg:   #f4f6f9;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--lme-text);
  background: #fff;
}

/* =============================================
   NAVBAR
   ============================================= */
.lme-navbar {
  background: #fff !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .3s;
}

img.custom-logo {
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
}
.lme-navbar .navbar-brand-text { font-size: 20px; font-weight: 800; color: var(--lme-blue); }

.lme-navbar .nav-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--lme-text) !important;
  padding: 8px 14px !important;
  transition: color .2s;
}
.lme-navbar .nav-link:hover,
.lme-navbar .nav-link.active { color: var(--lme-blue) !important; }

/* Dropdown */
.lme-navbar .dropdown-menu {
  border: none;
  border-top: 3px solid var(--lme-blue);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  border-radius: 0 0 8px 8px;
  padding: 0;
  min-width: 230px;
}
.lme-navbar .dropdown-item {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 11px 18px;
  color: var(--lme-text);
  transition: background .15s, color .15s;
}
.lme-navbar .dropdown-item:hover,
.lme-navbar .dropdown-item:focus { background: var(--lme-blue); color: #fff; }

/* Sous-sous-menus */
.dropdown-submenu { position: relative; }
.dropdown-submenu > .dropdown-menu,
.dropdown-submenu > .dropdown-submenu-menu {
  top: 0; left: 100%;
  margin-top: 0;
  display: none;
}
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:hover > .dropdown-submenu-menu { display: block; }

/* Bouton téléphone */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--lme-blue), var(--lme-teal));
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 50px;
  transition: opacity .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-phone:hover { opacity: .88; }
.btn-phone svg { width: 17px; height: 17px; fill: #fff; flex-shrink: 0; }

/* =============================================
   HERO
   ============================================= */
.lme-hero {
  min-height: 520px;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.lme-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,45,115,.80) 0%,
    rgba(0,45,115,.52) 52%,
    transparent 100%);
}
.lme-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.lme-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  max-width: 500px;
  margin-bottom: 32px;
}
.btn-eligibility {
  display: inline-block;
  background: var(--lme-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid var(--lme-dark);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-eligibility:hover { background: transparent; border-color: #fff; color: #fff; }

.gradient-bar { height: 6px; background: linear-gradient(90deg, var(--lme-blue), var(--lme-teal)); }

/* =============================================
   BADGES
   ============================================= */
.section-badges { padding: 64px 0; background: linear-gradient(135deg, #f7f7f7, #fff); }

.badge-card { text-align: center; padding: 10px 20px; }
.badge-icon {
  width: 70px; height: 70px;
  color: var(--lme-blue);
  margin: 0 auto 16px;
}
.badge-icon svg { width: 100%; height: 100%; }
.badge-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: var(--lme-text);
  margin: 0;
}

/* =============================================
   SECTIONS
   ============================================= */
.section-apropos,
.section-pac { padding: 72px 0; }

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--lme-blue);
  margin-bottom: 20px;
}
.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--lme-blue);
  text-align: center;
  margin-bottom: 40px;
}
.section-text { color: var(--lme-muted); line-height: 1.75; margin-bottom: 14px; }

/* Images rondes */
.img-circle {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  max-width: 420px;
  box-shadow: 22px 22px 0 #d6ebf8;
  display: block;
  margin: 0 auto;
}
.img-circle-left {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  max-width: 420px;
  box-shadow: -22px 22px 0 #d6ebf8;
  display: block;
  margin: 0 auto;
}
.img-circle-placeholder,
.img-circle-placeholder ~ .img-circle-left {
  border-radius: 50%;
  background: var(--lme-light-bg);
  aspect-ratio: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* Boutons */
.btn-lme {
  display: inline-block;
  background: var(--lme-blue);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 5px;
  transition: background .2s;
  text-decoration: none;
}
.btn-lme:hover { background: #005fa3; color: #fff; }

/* =============================================
   PAGE À PROPOS – intro
   ============================================= */
.about-intro {
  padding: 56px 0 48px;
  background: linear-gradient(135deg, #f7f7f7, #fff);
}

.about-intro__text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--lme-muted);
  margin: 0;
}

.about-intro__text strong {
  color: var(--lme-blue);
  font-weight: 800;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(100deg, var(--lme-blue), var(--lme-teal));
  padding: 44px 0;
}
.cta-banner h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0;
}
.btn-devis {
  display: inline-block;
  background: #fff;
  color: var(--lme-blue);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 14px 30px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-devis:hover { background: var(--lme-dark); color: #fff; }

/* =============================================
   QUALIFICATIONS
   ============================================= */
.section-qualifications { padding: 64px 0; background: var(--lme-light-bg); }

.qual-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0,0,0,.07);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qual-card img { max-height: 90px; object-fit: contain; margin: 0 auto; }

/* =============================================
   MARQUES – Carousel infini CSS
   ============================================= */
.section-brands { padding: 64px 0; }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
  padding: 10px 0;
}

.brands-grid img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .25s, transform .25s;
  user-select: none;
}
.brands-grid img:hover { filter: grayscale(0%); transform: scale(1.08); }

/* =============================================
   PAGE BANNER (pages internes)
   ============================================= */
.page-banner {
  background: linear-gradient(100deg, var(--lme-dark), var(--lme-blue));
  padding: 50px 0 40px;
}
.page-banner-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.lme-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.75);
}
.lme-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.lme-breadcrumb a:hover { color: #fff; }

/* =============================================
   CONTENU PAGES / ARTICLES
   ============================================= */
.lme-page-content .entry-content,
.lme-single-post .entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--lme-muted);
}
.lme-page-content .entry-content h2,
.lme-page-content .entry-content h3,
.lme-single-post .entry-content h2,
.lme-single-post .entry-content h3 {
  color: var(--lme-blue);
  font-weight: 800;
  margin-top: 30px;
  margin-bottom: 12px;
}
.lme-page-content .entry-content a,
.lme-single-post .entry-content a {
  color: var(--lme-blue);
  text-decoration: underline;
}
.lme-page-content .entry-content img,
.lme-single-post .entry-content img { border-radius: 8px; max-width: 100%; height: auto; }

/* Pagination */
.lme-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 6px;
  color: var(--lme-text);
  font-weight: 700;
  margin: 0 2px;
  transition: background .2s, color .2s;
}
.lme-pagination .page-numbers:hover,
.lme-pagination .page-numbers.current {
  background: var(--lme-blue);
  color: #fff;
}

/* Tags */
.post-tags a {
  display: inline-block;
  background: var(--lme-light-bg);
  color: var(--lme-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin: 2px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.post-tags a:hover { background: var(--lme-blue); color: #fff; }

/* =============================================
   SIDEBAR
   ============================================= */
.lme-sidebar .widget {
  margin-bottom: 30px;
  background: var(--lme-light-bg);
  border-radius: 10px;
  padding: 24px;
}
.lme-sidebar .widget-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--lme-blue);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lme-blue);
}
.lme-sidebar .widget ul { padding: 0; list-style: none; margin: 0; }
.lme-sidebar .widget ul li { padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.lme-sidebar .widget ul li a { color: var(--lme-muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.lme-sidebar .widget ul li a:hover { color: var(--lme-blue); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--lme-footer-bg);
  color: #fff;
  padding: 60px 0 0;
}
.footer-heading {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.footer-text strong { color: #fff; }
.footer-link { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: #fff; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { font-size: 13.5px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.footer-links li a:hover { color: #fff; }
.footer-links .sub-links { padding-left: 14px; list-style: none; margin-top: 6px; }
.footer-links .sub-links li a { font-size: 13px; }

/* Sociaux */
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .2s;
  text-decoration: none;
}
.footer-socials a:hover { opacity: .8; }
.social-fb { background: #1877f2; }
.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer-socials svg { width: 19px; height: 19px; fill: #fff; }

.footer-phone {
  font-size: 18px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: .5px;
}
.btn-footer-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 9px 18px;
  background: var(--lme-teal);
  color: #fff !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-footer-cta:hover { opacity: .85; }

.footer-bottom {
  background: var(--lme-footer-bot);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-top: 50px;
}

/* =============================================
   WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 1050;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  transition: transform .2s;
  color: #fff;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* =============================================
   COOKIE BANNER
   ============================================= */
.lme-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1c1d1b;
  color: #fff;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2000;
  flex-wrap: wrap;
  font-size: 14px;
}
.lme-cookie-banner p { flex: 1; margin: 0; color: rgba(255,255,255,.82); }
.btn-cookie {
  background: var(--lme-blue);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.btn-cookie:hover { background: var(--lme-dark); }

/* =============================================
   TUBELIGHT NAV INDICATOR (desktop uniquement)
   ============================================= */
@media (min-width: 992px) {

  /* ① Grande pilule : conteneur de tout le menu */
  .lme-navbar .navbar-nav {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 50px;
    padding: 4px 12px;
    overflow: visible; /* la barre doit dépasser au-dessus */
  }

  /* Les nav-items restent au-dessus de la petite pilule */
  .lme-navbar .navbar-nav > .nav-item {
    position: relative;
    z-index: 1;
  }

  /* ② Petite pilule bleue : fond de l'item actif */
  .nav-tubelight-pill {
    position: absolute;
    top: 4px;           /* inset identique au padding de la grande pilule */
    bottom: 4px;
    left: 0;
    width: 80px;
    background: rgba(0, 122, 205, 0.10);
    border-radius: 50px;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
  }

  /* Transition spring activée après le positionnement initial */
  .nav-tubelight-pill.is-ready {
    transition:
      left    0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
      width   0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 0.25s ease;
    opacity: 1;
  }

  /* ③ Barre lumineuse : dépasse AU-DESSUS de la grande pilule
        top: -8px par rapport à la petite pilule
        = 4px (inset petite pilule) − 8px = −4px par rapport à la grande pilule */
  .nav-tubelight-lamp {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 4px;
    background: var(--lme-blue);
    border-radius: 4px 4px 0 0;
  }

  /* ④ Halo large — rayonne vers le haut, au-dessus de la barre */
  .nav-tubelight-lamp::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 24px;
    background: rgba(0, 122, 205, 0.22);
    border-radius: 50%;
    filter: blur(6px);
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }

  /* ④ Halo concentré — juste au-dessus de la barre */
  .nav-tubelight-lamp::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 16px;
    background: rgba(0, 122, 205, 0.40);
    border-radius: 50%;
    filter: blur(3px);
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
}

/* =============================================
   MOBILE HEADER (< 992px)
   ============================================= */
@media (max-width: 991.98px) {

  /* Masquer le collapse Bootstrap — le drawer prend le relais */
  #navPrimary { display: none !important; }

  /* Logo plus petit */
  img.custom-logo {
    max-height: 35px;
    width: auto;
    height: auto;
  }

  /* Bouton téléphone dans le header mobile — compact */
  .btn-phone-mobile {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(90deg, var(--lme-blue), var(--lme-teal));
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s;
  }
  .btn-phone-mobile:hover { opacity: .88; }
  .btn-phone-mobile svg { width: 13px; height: 13px; fill: #fff; flex-shrink: 0; }
}

/* =============================================
   HAMBURGER BUTTON
   ============================================= */
.lme-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .lme-burger { display: flex; }
}

.lme-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lme-text);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.3s ease;
}

/* Animation → croix quand ouvert */
.lme-burger.is-open .lme-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lme-burger.is-open .lme-burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.lme-burger.is-open .lme-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   DRAWER (panneau latéral mobile)
   ============================================= */
.lme-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

.lme-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

/* Fond sombre */
.lme-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 50, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.lme-drawer.is-open .lme-drawer__backdrop {
  opacity: 1;
}

/* Panneau latéral droit */
.lme-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 82vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.14);
}

.lme-drawer.is-open .lme-drawer__panel {
  transform: translateX(0);
}

/* En-tête du drawer */
.lme-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.lme-drawer__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--lme-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Bouton fermeture */
.lme-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--lme-light-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--lme-text);
  transition: background 0.2s;
  flex-shrink: 0;
}
.lme-drawer__close:hover { background: #e3e8ef; }
.lme-drawer__close svg { width: 16px; height: 16px; stroke: currentColor; }

/* Menu du drawer */
.lme-drawer__menu {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  flex: 1;
}

.lme-drawer__menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.lme-drawer__menu li:first-child {
  border-top: none;
}

.lme-drawer__menu a {
  display: flex;
  align-items: center;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lme-text);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.lme-drawer__menu a:hover {
  color: var(--lme-blue);
  background: rgba(0, 122, 205, 0.04);
}

/* Item actif dans le drawer */
.lme-drawer__menu .current-menu-item > a,
.lme-drawer__menu .current_page_item > a,
.lme-drawer__menu li.lme-active > a {
  color: var(--lme-blue);
  background: rgba(0, 122, 205, 0.06);
}

/* Trait coloré à gauche pour l'item actif */
.lme-drawer__menu .current-menu-item > a::before,
.lme-drawer__menu .current_page_item > a::before,
.lme-drawer__menu li.lme-active > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--lme-blue);
  border-radius: 0 3px 3px 0;
}

/* Bouton téléphone en bas du drawer */
.lme-drawer__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 16px 20px max(env(safe-area-inset-bottom, 0px), 20px);
  background: linear-gradient(90deg, var(--lme-blue), var(--lme-teal));
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.lme-drawer__phone:hover { opacity: 0.88; }
.lme-drawer__phone svg { width: 17px; height: 17px; fill: #fff; flex-shrink: 0; }

/* =============================================
   PAGE BANNIÈRE (pages internes)
   ============================================= */
.page-banner {
  background: linear-gradient(135deg, var(--lme-dark) 0%, #1a3e6e 100%);
  padding: 60px 0 44px;
  color: #fff;
}
.page-banner-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}
.lme-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.lme-breadcrumb a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .2s;
}
.lme-breadcrumb a:hover { color: #fff; }
.lme-breadcrumb span   { color: rgba(255,255,255,.55); }

/* =============================================
   PAGES PRODUIT – SECTIONS
   ============================================= */
.section-content {
  padding: 72px 0;
}
.section-content.bg-light { background: #f8fafc; }
.product-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,51,102,.10);
}
.product-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.product-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--lme-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}
.product-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--lme-blue), var(--lme-teal));
  border-radius: 2px;
  margin-top: 12px;
}

/* =============================================
   PAC LANDING – cartes sous-types
   ============================================= */
.section-pac-sub {
  padding: 80px 0;
  background: #fff;
}
.pac-sub-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  border-radius: 16px;
  border: 2px solid #e8eef6;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  height: 100%;
}
.pac-sub-card:hover {
  border-color: var(--lme-blue);
  box-shadow: 0 8px 32px rgba(0,122,205,.12);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}
.pac-sub-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f3fd, #d5eaf9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lme-blue);
}
.pac-sub-card__body { flex: 1; }
.pac-sub-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lme-dark);
  margin-bottom: 8px;
}
.pac-sub-card__desc {
  font-size: 14px;
  color: #556;
  margin-bottom: 14px;
  line-height: 1.6;
}
.pac-sub-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--lme-blue);
}

/* =============================================
   ISOLATION – landing et carte featured
   ============================================= */
.section-isolation-sub {
  padding: 80px 0;
  background: #fff;
}
.isolation-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 28px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.isolation-card--featured {
  background: linear-gradient(135deg, #e8f3fd 0%, #ddf0fa 100%);
  border: 2px solid var(--lme-blue);
  box-shadow: 0 4px 24px rgba(0,122,205,.12);
}
.isolation-card--featured:hover {
  box-shadow: 0 12px 40px rgba(0,122,205,.18);
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}
.isolation-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg, var(--lme-blue), var(--lme-teal));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.isolation-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lme-blue);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.isolation-card__body { flex: 1; }
.isolation-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--lme-dark);
  margin-bottom: 10px;
}
.isolation-card__desc {
  font-size: 15px;
  color: #556;
  line-height: 1.65;
  margin-bottom: 18px;
}
.isolation-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.isolation-card__highlights li {
  font-size: 14px;
  font-weight: 500;
  color: var(--lme-dark);
}
.isolation-card__cta {
  font-size: 15px;
  font-weight: 700;
  color: var(--lme-blue);
  align-self: flex-start;
}

/* =============================================
   NOS AUTRES SERVICES – cartes
   ============================================= */
.section-related-services {
  padding: 80px 0;
  background: #f0f6fc;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 28px 24px 22px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 16px rgba(0,51,102,.06);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  height: 100%;
}
.service-card:hover {
  border-color: var(--lme-blue);
  box-shadow: 0 8px 32px rgba(0,122,205,.13);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f3fd, #d5eaf9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lme-blue);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.service-card__body { flex: 1; }
.service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lme-dark);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 13px;
  color: #667;
  line-height: 1.6;
  margin-bottom: 0;
}
.service-card__arrow {
  font-size: 18px;
  color: var(--lme-blue);
  font-weight: 700;
  margin-top: 16px;
  align-self: flex-end;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .lme-hero-content h1  { font-size: 32px; }
  .section-title        { font-size: 26px; }
  .cta-banner h3        { font-size: 22px; margin-bottom: 20px; }
}
@media (max-width: 767.98px) {
  /* Plus d'espace sur les côtés */
  .container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .lme-hero             { min-height: 380px; }
  .lme-hero-content h1  { font-size: 26px; }
  .lme-hero-content     { padding: 55px 0; }
  .img-circle,
  .img-circle-left      { max-width: 300px; }
}

/* =============================================
   PAGE CONTACT
   ============================================= */
.contact-section {
  padding: 72px 0 80px;
}

/* Titre du formulaire */
.contact-form-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--lme-dark);
  margin-bottom: 6px;
}
.contact-form-subtitle {
  color: #667;
  margin-bottom: 32px;
  font-size: 15px;
}

/* Alertes succès / erreur */
.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.contact-alert--success {
  background: #e6f7ee;
  color: #1a6b3a;
  border: 1px solid #a3d9b7;
}
.contact-alert--success svg { color: #28a745; flex-shrink: 0; margin-top: 1px; }
.contact-alert--error {
  background: #fff3f3;
  color: #8b1a1a;
  border: 1px solid #f5c6c6;
}
.contact-alert--error svg { color: #dc3545; flex-shrink: 0; margin-top: 1px; }

/* Formulaire masqué après succès */
.contact-form--hidden { display: none; }

/* Layout du formulaire */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 575.98px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field--full {
  margin-bottom: 16px;
}

/* Labels */
.contact-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--lme-dark);
}
.contact-form__field .req {
  color: var(--lme-blue);
  margin-left: 2px;
}

/* Inputs, selects, textareas */
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1dce9;
  border-radius: 10px;
  font-size: 15px;
  color: var(--lme-dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}
.contact-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23667'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--lme-blue);
  box-shadow: 0 0 0 3px rgba(0,122,205,.12);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #aab;
}
.contact-form__field textarea { resize: vertical; min-height: 140px; }

/* Footer du formulaire */
.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-form__rgpd {
  font-size: 12px;
  color: #889;
  line-height: 1.5;
  flex: 1;
  margin: 0;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--lme-blue), var(--lme-teal));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.contact-form__submit:hover { opacity: .88; transform: translateY(-1px); }

/* ── Colonne droite : coordonnées ── */
.contact-info {
  background: #f5f9fe;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid #e0ebf8;
}
.contact-info__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--lme-dark);
  margin-bottom: 28px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info__item:last-of-type { margin-bottom: 0; }
.contact-info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #d5e7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lme-blue);
}
.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #889;
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 15px;
  color: var(--lme-dark);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.contact-info__value--link {
  color: var(--lme-blue);
  text-decoration: none;
  transition: opacity .2s;
}
.contact-info__value--link:hover { opacity: .75; }

/* Carte */
.contact-map {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5e7f8;
}

@media (max-width: 767.98px) {
  .contact-form__footer { flex-direction: column; align-items: flex-start; }
  .contact-info { padding: 28px 20px; }
}

/* =============================================
   HERO – sous-titre (slogan)
   ============================================= */
.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,.88);
  margin: -4px 0 28px;
  line-height: 1.45;
  max-width: 560px;
}

/* =============================================
   SECTION AVIS – HOMEPAGE
   ============================================= */
.home-avis {
  padding: 70px 0 60px;
  background: var(--lme-light-bg);
}
.home-avis__header {
  text-align: center;
  margin-bottom: 40px;
}
.home-avis__score-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.home-avis__stars .dc-etoiles-precise { font-size: 22px; letter-spacing: 2px; }
.home-avis__meta { display: flex; align-items: baseline; gap: 5px; }
.home-avis__note { font-size: 22px; font-weight: 900; color: var(--lme-dark); }
.home-avis__note .dc-note-seule { font-size: 22px; font-weight: 900; color: var(--lme-dark); }
.home-avis__sep  { font-size: 15px; color: var(--lme-muted); }
.home-avis__count { font-size: 14px; color: var(--lme-muted); }
.home-avis__count .dc-nombre-seul { font-size: 14px; }
.home-avis__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--lme-dark);
  margin-bottom: 6px;
}
.home-avis__sub {
  font-size: 14px;
  color: var(--lme-muted);
}

/* Grille homepage 4 avis */
.lme-home-avis-grid.dc-avis-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) { .lme-home-avis-grid.dc-avis-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .lme-home-avis-grid.dc-avis-container { grid-template-columns: 1fr; } }

.lme-home-avis-grid .dc-avis-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 2px 10px rgba(0,62,130,.06);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lme-home-avis-grid .dc-avis-item:hover {
  box-shadow: 0 6px 22px rgba(0,62,130,.12);
  transform: translateY(-2px);
}
.lme-home-avis-grid .dc-avis-stars   { color: #f5a623; font-size: 15px; letter-spacing: 1px; }
.lme-home-avis-grid .dc-avis-author  { font-weight: 700; font-size: 13.5px; color: var(--lme-dark); }
.lme-home-avis-grid .dc-avis-date    { font-size: 11.5px; color: var(--lme-muted); }
.lme-home-avis-grid .dc-avis-content {
  font-size: 13px;
  line-height: 1.65;
  color: #444;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pied de section */
.home-avis__footer {
  text-align: center;
  margin-top: 36px;
}
.home-avis__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lme-blue);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  padding-bottom: 2px;
}
.home-avis__link:hover {
  color: var(--lme-dark);
  border-color: var(--lme-dark);
}

/* =============================================
   PAGE AVIS CLIENTS
   ============================================= */

/* ---- Héros score global ---- */
.avis-hero {
  background: linear-gradient(135deg, var(--lme-dark) 0%, var(--lme-blue) 100%);
  padding: 60px 0;
  color: #fff;
}
.avis-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.avis-hero__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.avis-hero__logo {
  display: block;
}
.avis-hero__logo img {
  width: 130px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.avis-hero__logo-text {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .5px;
}
.avis-hero__badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.avis-hero__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.avis-hero__note {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.avis-hero__note .dc-note-seule {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.avis-hero__sur {
  font-size: 22px;
  opacity: .7;
  font-weight: 600;
}
.avis-hero__stars .dc-etoiles-precise,
.avis-hero__stars .dc-etoiles-arrondie {
  font-size: 28px;
  letter-spacing: 2px;
  filter: brightness(0) invert(1);
}
.avis-hero__count {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.avis-hero__count .dc-nombre-seul { display: inline; font-weight: 900; font-size: 15px; color: #fff; }
.avis-hero__desc {
  flex: 1;
  min-width: 220px;
}
.avis-hero__desc p {
  font-size: 15px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 16px;
}
.avis-hero__certif {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  opacity: .7;
}
.avis-hero__certif svg { flex-shrink: 0; }

/* ---- Sections génériques avis ---- */
.avis-section { padding: 70px 0; }
.avis-section--recent { background: var(--lme-light-bg); }
.avis-section--stats  { background: #fff; }
.avis-section--all    { background: var(--lme-light-bg); }

.avis-section__header {
  text-align: center;
  margin-bottom: 44px;
}
.avis-section__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--lme-dark);
  margin-bottom: 8px;
}
.avis-section__region {
  display: inline-block;
  margin-left: 10px;
  background: var(--lme-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  vertical-align: middle;
}
.avis-section__sub {
  font-size: 15px;
  color: var(--lme-muted);
}

/* ---- Grille override avis-vérifiés ---- */
.lme-avis-grid.dc-avis-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 991px) { .lme-avis-grid.dc-avis-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .lme-avis-grid.dc-avis-container { grid-template-columns: 1fr; } }

.lme-avis-grid .dc-avis-item {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(0,62,130,.07);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.avis-section--all .lme-avis-grid .dc-avis-item {
  background: var(--lme-light-bg);
}
.lme-avis-grid .dc-avis-item:hover {
  box-shadow: 0 6px 24px rgba(0,62,130,.13);
  transform: translateY(-2px);
}
.lme-avis-grid .dc-avis-stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; }
.lme-avis-grid .dc-avis-author { font-weight: 700; font-size: 14px; color: var(--lme-dark); }
.lme-avis-grid .dc-avis-date   { font-size: 12px; color: var(--lme-muted); }
.lme-avis-grid .dc-avis-content {
  font-size: 13.5px;
  line-height: 1.7;
  color: #444;
  flex: 1;
}

/* ---- Distribution des notes ---- */
.avis-distrib {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.avis-distrib__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avis-distrib__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--lme-dark);
  min-width: 34px;
  text-align: right;
}
.avis-distrib__bar-wrap {
  flex: 1;
  height: 10px;
  background: #e8eef4;
  border-radius: 20px;
  overflow: hidden;
}
.avis-distrib__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--lme-blue), var(--lme-teal));
  border-radius: 20px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.avis-distrib__count {
  font-size: 12px;
  font-weight: 700;
  color: var(--lme-muted);
  min-width: 28px;
}
.avis-distrib__count .dc-nombre-seul { font-size: 12px; font-weight: 700; }

/* ---- Points forts qualitatifs ---- */
.avis-strengths { display: flex; flex-direction: column; gap: 22px; }
.avis-strength-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--lme-light-bg);
  border-radius: 10px;
  padding: 18px 20px;
}
.avis-strength-item__icon {
  width: 48px;
  height: 48px;
  background: var(--lme-blue);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avis-strength-item__body h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--lme-dark);
  margin-bottom: 5px;
}
.avis-strength-item__body p {
  font-size: 13.5px;
  color: var(--lme-muted);
  line-height: 1.65;
  margin: 0;
}

/* ---- Section région ---- */
.avis-region {
  background: #fff;
  padding: 80px 0;
}
.avis-region__header {
  text-align: center;
  margin-bottom: 50px;
}
.avis-region__tag {
  display: inline-block;
  background: rgba(0,122,205,.1);
  color: var(--lme-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.avis-region__title {
  font-size: 30px;
  font-weight: 900;
  color: var(--lme-dark);
  margin-bottom: 0;
}
.avis-region__text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--lme-muted);
  margin-bottom: 20px;
}
.avis-region__climate {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,122,205,.06), rgba(35,210,181,.06));
  border: 1px solid rgba(0,122,205,.15);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 28px;
}
.avis-region__climate-icon {
  color: var(--lme-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.avis-region__climate-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--lme-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.avis-region__climate-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--lme-muted);
  margin: 0;
}
.avis-region__box {
  background: var(--lme-light-bg);
  border-radius: 12px;
  padding: 22px 24px;
}
.avis-region__box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--lme-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.avis-region__box-title svg { color: var(--lme-blue); flex-shrink: 0; }
.avis-region__dept-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
}
.avis-region__dept-list li {
  font-size: 13.5px;
  color: var(--lme-text);
  padding-left: 14px;
  position: relative;
}
.avis-region__dept-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--lme-blue);
  font-weight: 900;
}
.avis-region__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.avis-region__city-tag {
  background: #fff;
  border: 1px solid rgba(0,122,205,.2);
  color: var(--lme-blue);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.avis-region__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--lme-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.avis-region__cta:hover {
  background: var(--lme-dark);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 576px) {
  .avis-hero__inner { flex-direction: column; text-align: center; gap: 28px; }
  .avis-hero__note .dc-note-seule { font-size: 48px; }
  .avis-region__dept-list { grid-template-columns: 1fr; }
  .avis-section__title { font-size: 22px; }
  .avis-region__title { font-size: 24px; }
}

/* =============================================
   PAGE MENTIONS LÉGALES
   ============================================= */
.ml-section {
  padding: 60px 0 80px;
  background: #fff;
}
.ml-intro {
  background: var(--lme-light-bg);
  border-left: 4px solid var(--lme-blue);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 14.5px;
  color: var(--lme-muted);
}
.ml-block {
  margin-bottom: 48px;
}
.ml-heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--lme-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lme-light-bg);
}
.ml-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.ml-table th,
.ml-table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #eef0f4;
}
.ml-table th {
  width: 220px;
  font-weight: 700;
  color: var(--lme-dark);
  background: var(--lme-light-bg);
}
.ml-table td {
  color: var(--lme-text);
}
.ml-table a { color: var(--lme-blue); text-decoration: none; }
.ml-table a:hover { text-decoration: underline; }
.ml-block p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--lme-muted);
  margin-bottom: 14px;
}
.ml-block p a { color: var(--lme-blue); text-decoration: none; }
.ml-block p a:hover { text-decoration: underline; }
.ml-list {
  font-size: 14.5px;
  color: var(--lme-muted);
  line-height: 1.8;
  padding-left: 22px;
  margin-bottom: 14px;
}
.ml-list li { margin-bottom: 6px; }
@media (max-width: 576px) {
  .ml-table th { width: 120px; font-size: 13px; }
  .ml-table td { font-size: 13px; }
}

/* =============================================
   PAGE AGENCES – intro
   ============================================= */
.agences-intro {
  padding: 60px 0 10px;
}

/* =============================================
   CARTE LEAFLET
   ============================================= */
.agences-map-section {
  padding: 40px 0 80px;
}

#agences-map {
  height: 500px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,62,130,.14);
  border: 1px solid #d0e5f5;
}

/* Note d'aide sous la carte */
.agences-map-hint {
  font-size: 12px;
  color: var(--lme-muted);
  margin-top: 10px;
  margin-bottom: 0;
}

/* ---- Pins LME ---- */
.lme-map-pin {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lme-map-pin__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lme-blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,62,130,.45);
  z-index: 2;
  transition: transform .2s, background .2s;
}


.leaflet-marker-icon:hover .lme-map-pin__dot {
  background: var(--lme-dark);
  transform: scale(1.35);
}

/* ---- Overrides Leaflet ---- */

/* Tooltip Leaflet personnalisé */
.lme-map-tooltip.leaflet-tooltip {
  background: var(--lme-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  white-space: nowrap;
  pointer-events: none;
}

.lme-map-tooltip.leaflet-tooltip::before {
  display: none;
}

/* Cacher l'attribution Leaflet (trop voyante) */
.leaflet-control-attribution {
  font-size: 10px !important;
  opacity: .6;
}

/* Boutons zoom */
.leaflet-control-zoom a {
  font-size: 18px !important;
  line-height: 28px !important;
  width: 30px !important;
  height: 30px !important;
}

@media (max-width: 767.98px) {
  #agences-map { height: 360px; }
}

/* =============================================
   LISTE DES RÉGIONS (colonne droite)
   ============================================= */
.agences-list {
  background: #fff;
  border: 1px solid #e0edf8;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,122,205,.07);
}

.agences-list__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--lme-dark);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e0edf8;
}

.agences-list__ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.agences-list__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--lme-text);
  transition: background .15s, color .15s;
}

.agences-list__link:hover {
  background: #e8f4fd;
  color: var(--lme-blue);
  text-decoration: none;
}

.agences-list__icon {
  color: var(--lme-blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.agences-list__name {
  font-size: 14px;
  font-weight: 700;
  flex: 1;
}

.agences-list__domain {
  font-size: 11px;
  color: var(--lme-muted);
  font-weight: 500;
}

.agences-list__arrow {
  color: var(--lme-blue);
  opacity: 0;
  transition: opacity .15s, transform .15s;
  flex-shrink: 0;
}

.agences-list__link:hover .agences-list__arrow {
  opacity: 1;
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .agences-list { margin-top: 8px; }
}
