@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-in-right {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-accent {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
}

@keyframes count-pop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

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

.animate-pulse-accent {
  animation: pulse-accent 2.5s ease-in-out infinite;
}

.animate-count-pop {
  animation: count-pop 0.5s ease-out forwards;
}

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

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

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

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

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

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(13, 18, 16, 0.92) 0%,
    rgba(13, 18, 16, 0.78) 50%,
    rgba(13, 18, 16, 0.88) 100%
  );
}

.stat-counter.is-visible .stat-number {
  animation: count-pop 0.6s ease-out forwards;
}

.swiper-button-prev,
.swiper-button-next {
  color: #22c55e !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.25rem !important;
}

.swiper-pagination-bullet {
  background: #98a5a0 !important;
  opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
  background: #22c55e !important;
  opacity: 1 !important;
}

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

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

.burger-open .burger-line-middle {
  opacity: 0;
}

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

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

.mobile-nav-panel.is-closed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.mobile-nav-panel.is-open {
  max-height: 480px;
  opacity: 1;
}

.nav-link--active {
  color: #22c55e;
  font-weight: 600;
}

.nav-link--active-mobile {
  color: #22c55e;
  font-weight: 600;
  background-color: rgba(34, 197, 94, 0.12);
}

.site-logo__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f1f5f3;
  line-height: 1.2;
}

.form-input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input--error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #ef4444;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-error--visible {
  opacity: 1;
}

.form-toast {
  position: fixed;
  top: 5.5rem;
  right: 1rem;
  z-index: 60;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  background-color: #161d19;
  border: 1px solid #22c55e;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.form-toast--visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

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

.faq-answer--open {
  max-height: 20rem;
}

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

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

.map-frame {
  filter: grayscale(20%) contrast(1.05);
}
