@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes stat-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.25);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(13, 148, 136, 0);
  }
}

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

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

.animate-slide-up {
  animation: slide-up 0.45s ease-out forwards;
}

.animate-pulse-soft {
  animation: pulse-soft 3s ease-in-out infinite;
}

.animate-stat-glow {
  animation: stat-glow 2.5s ease-in-out infinite;
}

.animate-delay-100 {
  animation-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.opacity-0-start {
  opacity: 0;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 34, 48, 0.82) 0%,
    rgba(13, 148, 136, 0.55) 100%
  );
}

.stat-number.is-visible {
  transition: color 0.3s ease;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  transform: scale(1.05);
}

.burger-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5b6675;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #0d9488;
}

.nav-link--active {
  color: #0d9488;
  font-weight: 600;
}

.nav-link--active-mobile {
  background-color: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  font-weight: 600;
}

.form-field--error {
  border-color: #dc2626 !important;
}

.form-field--error:focus {
  outline-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-error-message {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #dc2626;
}

.form-checkbox--error {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.form-toast {
  animation: toast-in 0.35s ease-out forwards;
}

.form-toast.is-hiding {
  animation: toast-out 0.35s ease-in forwards;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 24rem;
  opacity: 1;
}

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

.faq-icon {
  transition: transform 0.3s ease;
}
