/* ===========================================
    CTA MOBILE FIXE
    =========================================== */

.cta-mobile {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  padding: 0 20px;
  width: fit-content;
  max-width: 400px;
}

.cta-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 20px 20px;
  background: #3da03d;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  animation: pulse-cta 2s infinite;
}

.cta-mobile-btn:active {
  transform: scale(0.95);
}

.cta-mobile-btn svg {
  width: 24px;
  height: 24px;
}

/* Animation de pulsation/clignotement */
@keyframes pulse-cta {
  0% {
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 0 0 0 #3da03d;
  }
  50% {
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 0 0 15px rgba(140, 0, 0, 0);
  }
  100% {
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(140, 0, 0, 0);
  }
}

/* Affichage mobile uniquement */
@media (max-width: 1024px) {
  .cta-mobile {
    display: block;
  }
}

/* Masquer si le menu mobile est ouvert */
.nav-mobile.is-active ~ .cta-mobile {
  display: none;
}
