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

.hero-content, .service-card, .profile-card, .about-card, .contact-card, .booking-form-card, .auth-card {
  animation: fadeUp 0.7s ease both;
}

.service-card:hover, .profile-card:hover, .btn:hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
