/* ===== Sticky CTA Container ===== */
.bottom-cta-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  background: #ffffff;
  padding: 10px 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  text-align: center;
}

.bottom-cta-container.visible {
  transform: translateY(0);
}

/* ===== CTA Button ===== */
.cta-button {
  background: #76bf06;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 97%;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 6px 25px rgba(118, 191, 6, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: ctaPulse 2s infinite;
}

/* Icon */
.cta-icon {
  font-size: 17px;
}

/* Text */
.cta-text {
  font-family: system-ui, -apple-system, sans-serif;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

/* ===== Animation ===== */
@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(118, 191, 6, 0.45);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 8px 30px rgba(118, 191, 6, 0.65);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(118, 191, 6, 0.45);
  }
}

/* ===== Hide on Desktop ===== */
@media (min-width: 769px) {
  .bottom-cta-container {
    display: none !important;
  }
}

/* ===== Extra small mobiles ===== */
@media (max-width: 480px) {
  .cta-button {
    font-size: 15px;
    padding: 14px 18px;
  }
}
