/* ============================================================
   Sree Datta Tours & Travels — Animations
   ============================================================ */

@keyframes fabPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

.fab-whatsapp {
  animation: fabPulse 2.5s ease-in-out infinite;
}

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

.page-shell-inner {
  animation: fadeInUp 0.6s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
