.elementor-1608 .elementor-element.elementor-element-ae3f24e{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* =========================================================
   NG HEADER — Premium Immobilier (CLEAN + COMPLET)
   Couleur principale : #2F6A8B
   Base HTML : .ngh / .ngh__*
   ========================================================= */

.ngh{
  --ng-primary:#2F6A8B;
  --ng-primary-dark:#244f67;

  --ng-bg:#ffffff;
  --ng-text:#0f172a;
  --ng-muted:#64748b;

  --ng-radius:14px;
  --ng-shadow:0 14px 40px rgba(15,23,42,.10);

  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ng-bg);
  box-shadow: var(--ng-shadow);
}

/* =========================
   Layout
   ========================= */
.ngh__wrap{
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

/* =========================
   Brand
   ========================= */
.ngh__brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ng-text);
  flex-shrink: 0;
  max-width: 360px;
}

.ngh__logo{
  height: 30px;
  max-height: 30px;
  width: auto;
}

.ngh__brandText{ line-height: 1.05; }

.ngh__brandSub{
  font-size: 12px;
  color: var(--ng-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

/* =========================
   Desktop nav
   ========================= */
.ngh__nav{
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.ngh__menu{
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ngh__item{ position: relative; }

.ngh__link{
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 0 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  color: var(--ng-text);
  text-decoration: none;

  border-radius: 10px;
  transition: all .2s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* Hover / focus */
.ngh__link:hover,
.ngh__link:focus-visible{
  color: var(--ng-primary);
  background: rgba(47,106,139,.08);
}

/* Actif */
.ngh__link.is-active{
  color: #fff;
  background: var(--ng-primary);
}

/* CTA */
.ngh__link.is-cta{
  color: #fff;
  background: var(--ng-primary);
  padding: 0 16px;
}
.ngh__link.is-cta:hover{
  background: var(--ng-primary-dark);
  color:#fff;
}

/* Chevron desktop */
.ngh__chev{
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  margin-top: 1px;
}

/* =========================
   Dropdown (desktop)
   ========================= */
.ngh__drop{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: var(--ng-radius);
  box-shadow: var(--ng-shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 50;
}

.ngh__item:hover > .ngh__drop{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ngh__sub{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ng-text);
  text-decoration: none;
  transition: all .15s ease;
}
.ngh__sub:hover{
  background: rgba(47,106,139,.08);
  color: var(--ng-primary);
}

/* =========================
   Mega (desktop)
   ========================= */
.ngh__mega{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(220px,1fr));
  gap: 20px;

  padding: 20px;
  background: #fff;
  border-radius: var(--ng-radius);
  box-shadow: var(--ng-shadow);

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 50;
}

.ngh__item.has-mega:hover > .ngh__mega{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ngh__megaTitle{
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ng-primary);
}

/* =========================
   Burger
   ========================= */
.ngh__burger{
  margin-left: auto;
  display: none;
  background: rgba(47,106,139,.06);
  border: 1px solid rgba(15,23,42,.10);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.ngh__burger:hover{
  background: rgba(47,106,139,.10);
  border-color: rgba(47,106,139,.25);
}

.ngh__burgerLines,
.ngh__burgerLines::before,
.ngh__burgerLines::after{
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ng-text);
  position: relative;
}
.ngh__burgerLines::before{ top: -7px; position: absolute; }
.ngh__burgerLines::after{ top:  7px; position: absolute; }

/* =========================
   Mobile overlay + drawer
   ========================= */
.ngh__mobile{ display:none; }

/* =========================
   Responsive
   ========================= */
@media (max-width:1024px){

  /* Header bar */
  .ngh__wrap{
    justify-content: space-between;
    gap: 16px;
  }

  .ngh__nav{ display:none; }
  .ngh__burger{ display:inline-flex; }

  /* Baseline souvent trop longue sur mobile */
  .ngh__brandSub{ display:none; }

  /* Overlay */
  .ngh__mobile{
    display:block;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15,23,42,.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }

  /* Drawer */
  .ngh__mobileNav{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(92vw, 420px);
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.30);
    transform: translateX(18px);
    transition: transform .2s ease;
    padding: 18px;
    overflow: auto;
  }

  /* Open state */
  .ngh.is-open .ngh__mobile{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .ngh.is-open .ngh__mobileNav{
    transform: translateX(0);
  }

  /* =========================
     Mobile UI (menu)
     ========================= */

  .ngh__mobile *{ box-sizing:border-box; }

  .ngh__mobile a{
    color: var(--ng-text) !important;
    text-decoration: none !important;
  }
  .ngh__mobile a:visited{ color: var(--ng-text) !important; }
  .ngh__mobile a:hover{ color: var(--ng-primary) !important; }

  /* Bandeau Menu + X (FIXE) */
  .ngh__mobileHead{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;

    padding: 14px 16px;
    margin: -18px -18px 16px;  /* colle au bord du drawer */
    background:#fff;
    border-bottom: 1px solid rgba(15,23,42,.08);

    position: sticky;
    top: 0;
    z-index: 2;
  }

  .ngh__mobileTitle{
    font-weight: 800;
    font-size: 15px;
  }

  .ngh__close{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(47,106,139,.06);
    cursor: pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .ngh__close:hover{
    background: rgba(47,106,139,.10);
    border-color: rgba(47,106,139,.25);
  }

  /* Aération après le bandeau (ton besoin “descendre”) */
  .ngh__mobileNav{
    padding-top: 26px; /* espace global, stable */
  }

  /* Liens simples */
  .ngh__mLink{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding: 12px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;

    background: rgba(15,23,42,.03);
    border: 1px solid rgba(15,23,42,.06);
    margin-bottom: 10px;
  }

  .ngh__mLink.is-active{
    background: rgba(47,106,139,.10);
    border-color: rgba(47,106,139,.20);
    color: var(--ng-primary) !important;
  }

  .ngh__mLink.is-cta{
    justify-content:center;
    background: var(--ng-primary);
    border-color: transparent;
    color:#fff !important;
    padding: 14px 12px;
    margin-top: 8px;
  }
  .ngh__mLink.is-cta:hover{
    background: var(--ng-primary-dark);
    color:#fff !important;
  }

  /* Accordéons */
  .ngh__mGroup{
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    overflow: hidden;
    margin: 10px 0;
    background:#fff;
  }

  .ngh__mGroup > summary{ list-style:none; }
  .ngh__mGroup > summary::-webkit-details-marker{ display:none; }

  .ngh__mSummary{
    cursor:pointer;
    padding: 14px 12px;
    font-weight: 800;
    font-size: 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    background: rgba(15,23,42,.02);
  }

  .ngh__mSummary::after{
    content:"▾";
    font-size: 12px;
    color: rgba(15,23,42,.60);
    transition: transform .18s ease;
  }
  .ngh__mGroup[open] .ngh__mSummary::after{ transform: rotate(180deg); }

  .ngh__mPanel{
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(15,23,42,.08);
  }

  .ngh__mSub{
    display:block;
    padding: 10px 10px;
    border-radius: 12px;
    font-weight: 650;
    font-size: 14px;
    color: rgba(15,23,42,.85) !important;
    background: rgba(47,106,139,.04);
    border: 1px solid rgba(47,106,139,.10);
  }
  .ngh__mSub + .ngh__mSub{ margin-top: 8px; }

  .ngh__mSub:hover{
    background: rgba(47,106,139,.08);
    border-color: rgba(47,106,139,.18);
    color: var(--ng-primary) !important;
  }

  .ngh__mLabel{
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(15,23,42,.55);
    margin: 6px 2px 8px;
  }
}
/* =========================================================
   FIX — Descendre tout le tiroir mobile (visuel)
   ========================================================= */
@media (max-width:1024px){

  /* Descend le drawer */
  .ngh__mobileNav{
    top: 56px !important;                /* ajuste : 40 / 56 / 72 */
    height: calc(100% - 56px) !important;
    border-top-left-radius: 18px;
  }

  /* L’en-tête reste collé au haut DU drawer */
  .ngh__mobileHead{
    margin: -18px -18px 14px !important;
    top: 0 !important;
  }
}
/* =========================================================
   FIX (DESKTOP) — Menu proche du logo, CTA à droite
   ========================================================= */
@media (min-width:1025px){

  /* On évite le "trou" : le menu part à gauche */
  .ngh__nav{
    flex: 1;
    display: flex;
    justify-content: flex-start;   /* au lieu de center */
    min-width: 0;
  }

  /* Le header ne disperse pas les blocs */
  .ngh__wrap{
    justify-content: flex-start;   /* au lieu de space-between */
    gap: 18px;                     /* espace maîtrisé logo -> menu */
  }

  /* Resserre un peu les items */
  .ngh__menu{
    gap: 4px;
  }

  /* IMPORTANT : pousse UNIQUEMENT le bouton Contact à droite */
  .ngh__menu > .ngh__item:last-child{
    margin-left: auto;
  }
}
/* =========================================================
   AÉRATION HEADER — Desktop
   ========================================================= */
@media (min-width:1025px){

  /* Header plus respirant */
  .ngh__wrap{
    padding-top: 14px;     /* AVANT ~10px */
    padding-bottom: 14px;
    gap: 24px;             /* espace logo → menu */
  }

  /* Menu plus aéré */
  .ngh__menu{
    gap: 10px;             /* AVANT 4–6px */
  }

  /* Boutons plus “premium” */
  .ngh__link{
    height: 44px;          /* AVANT 40px */
    padding: 0 14px;       /* AVANT 10–12px */
  }

  /* CTA Contact encore plus lisible */
  .ngh__link.is-cta{
    padding: 0 20px;
    margin-left: auto;
  }

  /* Baseline légèrement plus respirante */
  .ngh__brandSub{
    margin-top: 2px;
    letter-spacing: .02em;
  }
}/* End custom CSS */