/* Custom Pricing Page Add-on styles */

@keyframes confettiDrop {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(400px) rotate(720deg);
    opacity: 0;
  }
}

.pulse-glow {
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(0, 105, 72, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(0, 105, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 105, 72, 0); }
}

/* Ensure smooth transition in height for accordion */
.faq-card div {
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card button span.material-symbols-outlined {
  transition: transform 0.3s ease;
}
.faq-card.open button span.material-symbols-outlined {
  transform: rotate(180deg);
}
