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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes counterUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-pulse-custom {
  animation: pulse 2s ease-in-out infinite;
}

.animate-counter-up {
  animation: counterUp 0.5s ease-out forwards;
}

.opacity-0 {
  opacity: 0;
}

.nav-link--active {
  color: rgb(220 38 38);
  font-weight: 600;
  border-bottom: 2px solid rgb(220 38 38);
}

.reviews-swiper {
  overflow: hidden;
  width: 100%;
}

.reviews-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.reviews-swiper .swiper-slide {
  width: 100%;
  box-sizing: border-box;
  height: auto;
}

.faq-item--open .faq-icon {
  transform: rotate(180deg);
}

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  min-height: 240px;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .map-container {
    min-height: 320px;
  }
}

@media (max-width: 1023px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding: 1rem;
    margin-top: 0;
  }
}
