/* ==========================================================================
   LiveTelePro — Micro animations
   ========================================================================== */

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}
.floating { animation: float 6s ease-in-out infinite; }

@keyframes spin-slow {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes fade-in-up {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fade-in-up 600ms cubic-bezier(0.4, 0, 0.2, 1) both; }

@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 0 0 rgba(37, 99, 235, 0); }
	50% { box-shadow: var(--shadow-glow); }
}
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

.sms-bubble-delayed { animation: fade-in-up 600ms 400ms cubic-bezier(0.4, 0, 0.2, 1) both; }

@media (prefers-reduced-motion: reduce) {
	.floating, .fade-in-up, .pulse-glow, .hero-globe { animation: none !important; }
}
