/* Animations CSS - Elite HVAC & Plumbers */
/* Override any AOS hiding */
[data-aos] { opacity: 1 !important; transform: none !important; }
/* Hero animations */
@keyframes heroFadeUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}
.hero-badge { animation: heroFadeUp .6s ease both; animation-delay:.1s; }
.hero-title { animation: heroFadeUp .6s ease both; animation-delay:.2s; }
.hero-subtitle { animation: heroFadeUp .6s ease both; animation-delay:.3s; }
.hero-badges { animation: heroFadeUp .6s ease both; animation-delay:.4s; }
.hero-cta { animation: heroFadeUp .6s ease both; animation-delay:.5s; }
.hero-stats { animation: heroFadeUp .6s ease both; animation-delay:.6s; }
.hero-form-card { animation: heroFadeUp .7s ease both; animation-delay:.3s; }
/* Sticky nav offset for admin bar */
body.admin-bar .navbar { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar .navbar { top: 46px !important; }
}