/* ═══════════════════════════════════════════════════════
   STATUS MEDICAL CENTER — ANIMATIONS
   All @keyframes in one place; no duplicates.
═══════════════════════════════════════════════════════ */

/* ── Page entrance ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Shimmer (gold buttons) ── */
/* Canonical definition: travels along the X axis */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── CRM success pulse ── */
@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

/* ── CRM modal slide-up ── */
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── Loading spinner ── */
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── WhatsApp button pulse ── */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ── Floating header booking-dot ── */
@keyframes fhDot {
  0%, 100% { opacity: 0.35; transform: scale(1);    }
  50%       { opacity: 1;    transform: scale(1.45); }
}

/* ══════════════════════════════════════════════════════
   UTILITY CLASSES that apply animations
══════════════════════════════════════════════════════ */

.fade-in {
  animation: fadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Performance: disable heavy animations on mobile ── */
@media (max-width: 768px) {
  .fade-in {
    animation: none;
    opacity: 1;
  }

  .gold-gradient {
    animation: none;
  }
}

/* ── Equipment ticker ── */
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.equipment-ticker-track {
  animation: tickerScroll 28s linear infinite;
}
.equipment-ticker-track:hover {
  animation-play-state: paused;
}
