/* ===================================================
   ANIMATIONS
=================================================== */

.hero-content {
  animation: fadeUp 0.9s ease both;
}

.hero-visual {
  animation: fadeIn 1s ease 0.15s both;
}

.section-label {
  animation: fadeUp 0.7s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.service-card.reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.service-card.reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.service-card.reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.floating-card {
  animation: floatSoft 4.5s ease-in-out infinite;
}

.location-card {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}