/* Custom animations and additional styles */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f0fdf4;
}

::-webkit-scrollbar-thumb {
  background: #16a34a;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #15803d;
}

/* Form focus states */
input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* Button hover effects */
button,
a {
  transition: all 0.3s ease;
}

/* Loading state for form submission */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success message */
.success-message {
  background: #dcfce7;
  border: 2px solid #16a34a;
  color: #14532d;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

/* Mobile menu transition */
#mobileMenu {
  transition: all 0.3s ease;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}
