/* ✅ CORRIGÉ : Dégradés sur le conteneur parent */
.hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #031634 0%,
    rgba(3, 22, 52, 0.85) 1%,
    rgba(3, 22, 52, 0.60) 2%,
    rgba(3, 22, 52, 0.30) 5%,
    rgba(3, 22, 52, 0.05) 90%,
    transparent 100%
  );
  pointer-events: none;
}

/* ✅ CORRIGÉ : Dégradés sur le conteneur parent */
.hero-contact::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    #031634 0%,
    rgba(3, 22, 52, 0.85) 5%,
    rgba(3, 22, 52, 0.50) 25%,
    rgba(3, 22, 52, 0.10) 33%,
    transparent 35%
  );
  -webkit-mask: linear-gradient(
    to right,
    black 10%,
    black 20%,
    transparent 100%
  );
  mask: linear-gradient(
    to right,
    black 10%,
    black 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* ✅ CORRIGÉ : Contenu texte en enfant direct du conteneur */
.hero-contact .hero-contact-content {
  position: relative;
  z-index: 2;
  padding: 25vh 5vw 0;
  width: 100%;
  text-align: left;
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 640px) {
  .hero-contact .hero-contact-content {
    max-width: 85%;
    padding: 2vh 5vw 0;
    z-index: 100;
  }

  /* ✅ CORRIGÉ : Dégradés sur le conteneur */
  .hero-contact::before {
    background: linear-gradient(
      to right,
      #031634 0%,
      rgba(3, 22, 52, 0.85) 30%,
      rgba(3, 22, 52, 0.50) 60%,
      transparent 100%
    );
  }

  .hero-contact::after {
    background: linear-gradient(
      to bottom,
      #031634 0%,
      rgba(3, 22, 52, 0.85) 15%,
      rgba(3, 22, 52, 0.30) 40%,
      transparent 60%
    );
    -webkit-mask: linear-gradient(to right, black 0%, transparent 80%);
    mask: linear-gradient(to right, black 0%, transparent 80%);
  }

}



/* ─── RESET & BASE ─── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #031634;
}

/* ─── HERO (fond bleu foncé) ─── */
.hero {
    background: #102847;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 52px 3vw 48px;
}

.hero-inner {
    position: relative;
    z-index: 2;
}
.tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -.04em;
    text-transform: none;
    color: #0AAA66;
    display: block;
    margin-bottom: 3rem;
}
.hero p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    letter-spacing: .02em;
    font-weight: 800;
}
.hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #0AAA66;
    color: #fff;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s;
}
.btn-primary:hover {
    background: #0AAA66;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: background .2s;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, .15);
}

/* ─── GRILLE : FAQ (gauche) + AGENCES (droite) ─── */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}
.grid-2col .faq-wrap {
    padding-right: 2.5vw;
    display: flex;
    flex-direction: column;
}
.grid-2col .section.alt {
    padding-left: 2.5vw;
    display: flex;
    flex-direction: column;
}
.grid-2col .section.alt .inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ─── SECTION AGENCES ─── */
.section {
    padding: 60px 5vw;
    background: #fff;
}
.section.alt {
    background: #f3f8f5;
}
.inner {
    max-width: 900px;
    margin: 0 auto;
}

/* ─── CARTE ─── */
.carte-wrap {
    position: relative;
    background: #f3f8f5;
    border-radius: 20px;
    max-width: 420px;
    overflow: hidden;
    flex-shrink: 0;
}
.carte-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}
.carte-zoom-group {
    transform-origin: 312.1px 122.1px;
    transform: scale(1);
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}
.carte-wrap:hover .carte-zoom-group {
    transform: scale(1.669) translate(-46.8px, 42.6px);
}
.carte-ile {
    fill: #102847;
    stroke: none;
}
.agence-point {
    cursor: pointer;
}
.agence-point circle.point-base {
    fill: #ffffff;
    stroke: #102847;
    stroke-width: 2;
    transition: r .2s ease;
}
.agence-point.is-hq circle.point-base {
    fill: #0AAA66;
}
.agence-point:hover circle.point-base {
    r: 7;
}
.agence-point text.label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    fill: #ffffff;
    cursor: pointer;
}
.agence-point.label-on-light text.label {
    fill: #031634;
}
.agence-point.label-on-blue-dark text.label {
    fill: #031634;
}
.agence-point text.label-hq-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    fill: #0AAA66;
    letter-spacing: .04em;
    text-transform: uppercase;
    pointer-events: none;
}
.agence-bulle {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}
.agence-point:hover .agence-bulle,
.agence-point:focus .agence-bulle {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.bulle-inner {
    background: #031634;
    border-radius: 10px;
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 20px rgba(3, 22, 52, .35);
    white-space: nowrap;
}
.bulle-inner span {
    font-family: 'Courier New', monospace;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    user-select: all;
}
.bulle-inner button {
    background: rgba(255, 255, 255, .14);
    border: none;
    border-radius: 6px;
    padding: 4px 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: background .2s;
}
.bulle-inner button:hover {
    background: #0AAA66;
}
.bulle-inner button svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}
.bulle-inner a.bulle-maps {
    background: rgba(255, 255, 255, .14);
    border: none;
    border-radius: 6px;
    padding: 4px 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: background .2s;
}
.bulle-inner a.bulle-maps:hover {
    background: #0AAA66;
}
.bulle-inner a.bulle-maps svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}
.point-square {
    fill: #ffffff;
    stroke: #102847;
    stroke-width: 2;
}
.label-capitale {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    fill: #ffffff;
    pointer-events: none;
}
.capitale-point {
    transition: opacity .25s ease;
}
.carte-wrap:hover .capitale-point {
    opacity: 0;
}

.copy-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #031634;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 50;
}
.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ─── FAQ (fond clair) ─── */
.faq-wrap {
    background: #f3f8f5;
    padding: 60px 5vw;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.faq-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.faq-wrap .tag {
    color: #0AAA66;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(3, 22, 52, .09);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-top: .5rem;
}
.faq-item:hover {
    background: #f8faf9;
    border-color: rgba(3, 22, 52, .2);
}
.faq-item.open {
    border-color: rgba(10, 184, 106, .5);
    background: #f0fdf7;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.3rem;
    gap: 1rem;
    flex-shrink: 0;
    user-select: none;
}
.faq-q span {
    font-size: .95rem;
    font-weight: 700;
    color: #031634;
    transition: color .2s ease;
    line-height: 1.4;
}
.faq-item:hover .faq-q span {
    color: #0AAA66;
}

.faq-q svg {
    flex-shrink: 0;
    stroke: #0AAA66;
    fill: none;
    stroke-width: 2.5;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
    width: 20px;
    height: 20px;
    background: rgba(10, 184, 106, .1);
    border-radius: 50%;
    padding: 3px;
}
.faq-item.open .faq-q svg {
    transform: rotate(45deg);
    background: rgba(10, 184, 106, .25);
}

.faq-a {
    font-size: .92rem;
    color: #031634;
    line-height: 1.8;
    padding: 0 1.3rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.25, .46, .45, .94), 
                padding 0.4s ease,
                opacity 0.3s ease;
    opacity: 0;
}
.faq-item.open .faq-a {
    max-height: 2000px;
    padding: 0 1.3rem 1.3rem;
    opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }
    .grid-2col .faq-wrap {
        padding-right: 5vw;
        padding-bottom: 30px;
    }
    .grid-2col .section.alt {
        padding-left: 5vw;
    }
    .hero p {
        white-space: normal;
        overflow-x: visible;
    }
    .faq-q span {
        font-size: .88rem;
    }
    .faq-a {
        font-size: .85rem;
    }
}

/* ---===========Offre==========---*/
.nr-offers-wrap {
  width: 100%;
  max-width: 100vw;
  height:auto;
  inset: 0;
  display: flex;
  box-sizing: border-box;
  padding: 52px 5vw 2px; 
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: visible !important;
}

    
.nr-offers-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: auto !important; /* Force la hauteur à s'adapter au contenu */
}

/* en-tête + filtres */
.nr-offers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  /* margin-top: 0rem; */
  padding-top: 0px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.nr-offers-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #031634;
  margin: 0;
}
.nr-offers-header h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: #0AAA66;
  border-radius: 2px;
  margin-top: 18px;
}

.nr-offers-header h2 em { font-style: normal; color: #0AAA66; }

/* filtres */
.nr-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.nr-filter {
  padding: 7px 16px;
  border: 1.5px solid rgba(3,22,52,.12);
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #53657a;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
}
.nr-filter:hover, .nr-filter.active {
  background: #031634;
  border-color: #031634;
  color: #fff;
}
.nr-filter[data-type="VIE"].active { background: #355d89; border-color: #355d89; }
.nr-filter[data-type="Stage"].active { background: #0AAA66; border-color: #0AAA66; }
.nr-filter[data-type="CDI"].active { background: #031634; border-color: #031634; }
.nr-filter[data-type="CDD"].active { background: #102847; border-color: #102847; }

/* grille offres */
.nr-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1rem;
}

/* card offre */
.nr-offer {
  border: 1px solid rgba(3,22,52,.09);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
.nr-offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(3,22,52,.1);
  border-color: rgba(10,184,106,.2);
}
/* barre couleur par type */
.nr-offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.nr-offer[data-type="CDI"]::before  { background: #031634; }
.nr-offer[data-type="CDD"]::before  { background: #355d89; }
.nr-offer[data-type="VIE"]::before  { background: #1a6db5; }
.nr-offer[data-type="Stage"]::before{ background: #0ab86a; }

/* badge type */
.nr-offer-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
}
.nr-offer[data-type="CDI"]  .nr-offer-badge { background: rgba(3,22,52,.08);  color: #031634; }
.nr-offer[data-type="CDD"]  .nr-offer-badge { background: rgba(53,93,137,.1); color: #355d89; }
.nr-offer[data-type="VIE"]  .nr-offer-badge { background: rgba(26,109,181,.1); color: #1a6db5; }
.nr-offer[data-type="Stage"].nr-offer-badge { background: #e7fbf2; color: #0AAA66; }
.nr-offer[data-type="Stage"] .nr-offer-badge { background: #e7fbf2; color: #0AAA66; }

.nr-offer h3 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.05rem;
  font-weight: 800;
  color: #031634;
  margin: 0;
  letter-spacing: -.03em;
  line-height: 1.3;
}
.nr-offer-meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.nr-offer-meta span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 12.5px;
  color: #7a92a8;
  font-weight: 600;
}
.nr-offer-meta svg { width: 13px; height: 13px; stroke: #b4b2a9; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.nr-offer-desc {
  font-size: 13px;
  color: #53657a;
  line-height: 1.7;
  margin: .2rem 0 .4rem;
  flex-grow: 1;
}
.nr-offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid rgba(3,22,52,.07);
  margin: auto;
}
.nr-offer-date {
  font-size: 11px;
  color: #b4b2a9;
  font-weight: 600;
}
.nr-offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #0AAA66;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nr-offer-btn svg { width: 12px; height: 12px; stroke: #0AAA66; fill: none; stroke-width: 2.5; transition: transform .2s; }
.nr-offer:hover .nr-offer-btn svg { transform: translateX(3px); }

/* aucune offre visible après filtre */
.nr-no-result {
  grid-column: span 3;
  text-align: center;
  padding: 3rem;
  border: 1px dashed rgba(3,22,52,.13);
  border-radius: 18px;
  display: none;
}
.nr-no-result.visible { display: block; }
.nr-no-result p { font-size: .9rem; color: #7a92a8; margin: 0; }

/* compteur offres */
.nr-offers-count {
  font-size: 12px;
  color: #7a92a8;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.nr-offers-count strong { color: #031634; }

/* MODALE offre */
.nr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3,22,52,.55);
  backdrop-filter: blur(6px);
  z-index: 9999 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.nr-modal-overlay.open { display: flex; }
.nr-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(3,22,52,.25);
}
.nr-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(3,22,52,.12);
  background: #f3f8f5;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #53657a;
  transition: background .2s;
}
.nr-modal-close:hover { background: #e7fbf2; color: #0AAA66; }
.nr-modal-badge {
  display: inline-flex;
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 1rem;
}
.nr-modal h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.04em;
  color: #031634; margin: 0 0 .5rem;
}
.nr-modal-meta {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(3,22,52,.08);
}
.nr-modal-meta span {
  display: flex; align-items: center; gap: .4rem;
  font-size: 13px; color: #7a92a8; font-weight: 600;
}
.nr-modal-meta svg { width: 14px; height: 14px; stroke: #b4b2a9; fill: none; stroke-width: 1.8; }
.nr-modal-section { margin-bottom: 1.5rem; }
.nr-modal-section h4 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: .85rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: #031634; margin: 0 0 .75rem;
}
.nr-modal-section p, .nr-modal-section li {
  font-size: .92rem; color: #53657a; line-height: 1.78; margin: 0 0 .4rem;
}
.nr-modal-section ul { padding-left: 1.1rem; margin: 0; }
.nr-modal-apply {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #0AAA66; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .97rem; font-weight: 700;
  padding: 14px 24px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 8px 22px rgba(10,184,106,.28);
  transition: background .2s, transform .2s;
  text-decoration: none; margin-top: .5rem;
}
.nr-modal-apply:hover { background: #0AAA66; transform: translateY(-1px); }

@media (max-width: 1024px) { .nr-offers-grid { grid-template-columns: 1fr 1fr !important; } .nr-no-result { grid-column: span 2 !important; } }
@media (max-width: 640px) { .nr-offers-grid { grid-template-columns: 1fr !important; } .nr-no-result { grid-column: span 1 !important; } 
.nr-offers-wrap { padding: 56px 5vw 64px; } .nr-modal { padding: 1.75rem 1.5rem; border-radius: 18px; } }

.nr-spontaneous-container {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Centrage vertical */
  align-items: center;     /* Centrage horizontal */
  gap: 1.4rem;
  padding: 1.5rem;
  text-align: center;      /* Pour centrer le texte à l'intérieur */
  margin: top 0;
}

.nr-spontaneous-container h2{
    margin: 0;
    font-size:clamp(1.6rem,2.5vw,2.2rem);
    line-height: 1.05;
    color: #031535;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif ;
    letter-spacing: -.03em ;
}

.nr-spontaneous-container h2 span{
    color: #088a50;
}

.nr-spontaneous-container p {
    margin: 0;
    color: #475569;
    font-size: clamp(1rem, 1.3vw, 1.05rem);
    line-height: 1.85;
    text-align: justify; /* Justification pour un rendu plus propre */
}

/* ============================================================
   CONTACT DROPDOWN - NOUVEAU STYLE
   ============================================================ */

/* Conteneur du dropdown contact */
.contact-dropdown {
    position: relative;
}

/* Lien Contact principal */
.contact-dropdown > a {
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
    position: relative;
}

.contact-dropdown > a:hover,
.contact-dropdown > a.active {
    color: #ffffff;
    background-color: #0AAA66;
    box-shadow: 0 8px 20px rgba(10, 184, 106, 0.3);
}

/* Bouton toggle du dropdown contact */
.contact-dropdown-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.contact-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.contact-dropdown-toggle:hover {
    color: #0AAA66;
}

/* Menu déroulant contact */
.contact-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background-color: #0a2040;
    border-radius: 12px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 50;
    overflow: hidden;
}

.contact-dropdown-menu.open {
    display: block;
    animation: dropDown 0.25s ease forwards;
}

.contact-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    transition: all 0.2s ease;
    text-align: left;
    white-space: nowrap;
}

.contact-dropdown-menu li a:hover {
    background-color: rgba(10, 184, 106, 0.15);
    color: #0AAA66;
}

.contact-dropdown-menu li a.contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   RESPONSIVE - MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
    /* ... garder le code existant ... */

    /* Ajustement du dropdown contact en mobile */
    .contact-dropdown {
        width: 100%;
    }

    .contact-dropdown > a {
        display: inline-block;
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
        width: auto;
    }

    .contact-dropdown-toggle {
        padding: 12px 8px;
        font-size: 12px;
    }

    .contact-dropdown-menu {
        position: static;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0 0 4px 0;
        min-width: unset;
    }

    .contact-dropdown-menu li a {
        padding: 10px 16px 10px 32px;
        font-size: 14px;
        border-radius: 8px;
        margin: 2px 0;
    }

    .contact-dropdown-menu li a:hover {
        background-color: rgba(10, 184, 106, 0.2);
    }
}