/* ==========================================================================
   GO GOA CAR BOOKING - ANIMATIONS & TRANSITIONS
   Subtle, performant CSS transitions and reduced motion support
   ========================================================================== */

@keyframes pulseSubtle {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  }
}

.floating-cta-whatsapp {
  animation: pulseSubtle 3s infinite ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-element {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Accessibility: Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .floating-cta-whatsapp {
    animation: none;
  }
}
