@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-left {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(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(120, 53, 15, 0.15);
  }
  50% {
    box-shadow: 0 0 24px 4px rgba(120, 53, 15, 0.12);
  }
}

.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-left {
  animation: slide-in-left 0.7s 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;
}

.is-visible {
  opacity: 1;
}

.stat-counter.is-counting {
  transition: color 0.3s ease;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(44, 35, 28, 0.82) 0%,
    rgba(44, 35, 28, 0.55) 50%,
    rgba(120, 53, 15, 0.45) 100%
  );
}

.swiper-button-prev,
.swiper-button-next {
  color: #78350f;
}

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

.swiper-pagination-bullet-active {
  background: #78350f;
}

.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-enter {
  animation: fade-in 0.25s ease-out forwards;
}

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

.nav-link:hover {
  color: #78350f;
}

.nav-link--active {
  color: #78350f;
  font-weight: 600;
}

.nav-link--active-mobile {
  color: #78350f;
  font-weight: 600;
  background-color: rgba(120, 53, 15, 0.07);
  border-radius: 0.5rem;
}

.fas,
.far,
.fal,
.fab {
  display: inline-block;
  font-style: normal;
  line-height: 1;
}

.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fal {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

i[class^="flaticon-"]:before,
i[class*=" flaticon-"]:before {
  display: inline-block;
  font-family: flaticon_qampin !important;
  font-style: normal;
  font-weight: normal !important;
}

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

.form-toast--hide {
  animation: toast-slide-out 0.3s ease-in forwards;
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toast-slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(1.5rem);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
