.elementor-15 .elementor-element.elementor-element-b395417{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* ===== RESET ===== */
  .de-header-wrap *, .de-topbar * {
    margin: 0; padding: 0; box-sizing: border-box;
  }

  /* ===== TOP BAR ===== */
  .de-topbar {
    background: #0D615D;
    padding: 7px 0;
    font-family: 'Nunito', sans-serif;
  }
  .de-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .de-topbar-left {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .de-topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
  }
  .de-topbar-item i {
    color: #F9C127;
    font-size: 12px;
  }
  .de-topbar-item:hover {
    color: #F9C127;
  }
  .de-topbar-right {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .de-topbar-social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .de-topbar-social:hover {
    background: #F9C127;
    color: #0D615D;
    border-color: #F9C127;
    transform: translateY(-1px);
  }

  /* ===== HEADER PRINCIPAL ===== */
  .de-header-wrap {
    background: #fff;
    box-shadow: 0 2px 20px rgba(11,94,79,0.08);
    position: sticky;
    top: 0;
    z-index: 99999;
    transition: all 0.35s ease;
    font-family: 'Nunito', sans-serif;
  }
  .de-header-wrap.de-scrolled {
    box-shadow: 0 4px 30px rgba(11,94,79,0.12);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .de-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* ===== LOGO ===== */
  .de-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .de-logo img {
    height: 52px;
    width: auto;
    transition: height 0.3s ease;
  }
  .de-header-wrap.de-scrolled .de-logo img {
    height: 42px;
  }

  /* ===== NAV ===== */
  .de-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .de-nav-item {
    position: relative;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0D615D;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 12px 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .de-nav-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2AA83E, #F9C127);
    border-radius: 3px;
    transition: width 0.3s ease;
  }
  .de-nav-item:hover {
    color: #2AA83E;
  }
  .de-nav-item:hover::after,
  .de-nav-item.active::after {
    width: 55%;
  }
  .de-nav-item.active {
    color: #2AA83E;
  }

  /* ===== DROPDOWN ===== */
  .de-nav-dropdown {
    position: relative;
  }
  .de-nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .de-nav-dropdown-toggle .de-chevron {
    font-size: 10px;
    transition: transform 0.3s ease;
  }
  .de-nav-dropdown:hover .de-chevron {
    transform: rotate(180deg);
  }

  /* PONT INVISIBLE qui comble le gap entre le bouton et le menu */
  .de-nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
  }

  .de-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(11,94,79,0.14);
    min-width: 210px;
    padding: 8px 0;
    z-index: 100;
    /* opacity/visibility au lieu de display:none pour garder le hover */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(5px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }
  .de-nav-dropdown:hover .de-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .de-nav-dropdown-menu a {
    display: block;
    padding: 11px 22px;
    color: #0D615D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
  }
  .de-nav-dropdown-menu a:hover {
    background: #FDF9F3;
    color: #2AA83E;
    padding-left: 26px;
  }

  /* ===== CTA BOUTON ===== */
  .de-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #F9C127, #F9C127);
    color: #074039;
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245,183,49,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .de-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245,183,49,0.45);
    color: #074039;
  }
  .de-header-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.5s ease;
  }
  .de-header-cta:hover::before {
    left: 100%;
  }

  /* ===== HAMBURGER ===== */
  .de-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: 2px solid #0D615D;
    border-radius: 8px;
    background: none;
    transition: all 0.3s ease;
    z-index: 100001;
  }
  .de-hamburger:hover {
    background: #0D615D;
  }
  .de-hamburger:hover .de-hamburger-line {
    background: #fff;
  }
  .de-hamburger-line {
    width: 22px;
    height: 2.5px;
    background: #0D615D;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .de-hamburger.open {
    background: #0D615D;
    border-color: #0D615D;
  }
  .de-hamburger.open .de-hamburger-line {
    background: #fff;
  }
  .de-hamburger.open .de-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .de-hamburger.open .de-hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .de-hamburger.open .de-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* ===== MOBILE NAV ===== */

.de-mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 99999;
  opacity: 0;
  pointer-events: none; /* ← LA CLÉ : invisible ET non cliquable par défaut */
  transition: opacity 0.3s ease;
}
 
.de-mobile-overlay.show {
  opacity: 1;
  pointer-events: all; /* ← Seulement actif quand le menu est ouvert */
}
 
/* Supprime le display:block de la media query qui causait le bug */
@media (max-width: 1024px) {
  .de-mobile-overlay {
    display: block; /* reste en block mais pointer-events: none le neutralise */
  }
}

  .de-mobile-nav {
    display: none;
    position: fixed;
    top: 0; right: -300px;
    width: 290px; height: 100vh;
    background: #fff;
    z-index: 100000;
    padding: 80px 0 30px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }
  .de-mobile-nav.open {
    right: 0;
  }
  .de-mobile-nav a {
    display: block;
    padding: 15px 28px;
    color: #0D615D;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(11,94,79,0.06);
    transition: all 0.2s ease;
  }
  .de-mobile-nav a:hover {
    background: #FDF9F3;
    color: #2AA83E;
    padding-left: 34px;
  }
  .de-mobile-nav a.de-mobile-sub {
    padding-left: 44px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(11,94,79,0.75);
  }
  .de-mobile-nav a.de-mobile-sub:hover {
    padding-left: 50px;
    color: #2AA83E;
  }
  .de-mobile-nav-cta {
    padding: 20px 28px;
  }
  .de-mobile-nav-cta a {
    display: block;
    background: linear-gradient(135deg, #F9C127, #E5A520);
    color: #074039 !important;
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 14px 24px !important;
    border-radius: 50px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(245,183,49,0.3);
  }
  .de-mobile-nav-cta a:hover {
    background: linear-gradient(135deg, #E5A520, #D4941A) !important;
    padding-left: 24px !important;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .de-nav, .de-header-cta {
      display: none;
    }
    .de-hamburger {
      display: flex;
    }
    .de-mobile-nav, .de-mobile-overlay {
      display: block;
    }
    .de-header {
      padding: 10px 20px;
    }
  }

  @media (max-width: 767px) {
    .de-topbar {
      display: none;
    }
    .de-logo img {
      height: 44px;
    }
  }/* End custom CSS */