@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
.animation-delay-200 {
  animation-delay: 0.2s;
}
.hover-lift:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.bg-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.bg-overlay > * {
  position: relative;
  z-index: 1;
}
.rounded-xl {
  border-radius: 0.75rem;
}
#scroll-top {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
#scroll-top.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.text-center {
  text-align: center !important;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .wpforms-form {
    gap: 0.5rem;
  }
}
@media (max-width: 640px) {
  .nav-links {
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}