/* === CTA Menu Mobile — "Nous contacter" === */
.menu-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0;

  background: linear-gradient(120deg, #B47CFD 0%, #FF7FC2 100%);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-decoration: none;

  box-shadow: 0 4px 20px rgba(180, 124, 253, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-cta-mobile > a:hover,
.menu-cta-mobile > a:active {
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(180, 124, 253, 0.5);
  color: #FFFFFF !important;
}