/* Global animations and enhancements */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-in-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Mobile menu button animations */
.mobile-menu-button {
  transition: all 0.3s ease;
}

/* Testimonial carousel animation */
.testimonial-carousel-container {
  transition: transform 0.5s ease-in-out;
}

/* Inquiry form status message styling */
.form-status {
  display: none;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 500;
  margin-top: 1rem;
}

.form-status.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-status.error {
  display: block;
  background-color: #fee2e2;
  color: #7f1d1d;
  border: 1px solid #fca5a5;
}

/* Cookie banner styling */
#cookie-banner {
  display: flex;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #84c441;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6ba032;
}

/* Ensure images scale properly */
img {
  max-width: 100%;
  height: auto;
}

/* Testimonial dots animation */
.testimonial-dot {
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: #84c441;
  transform: scale(1.2);
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #84c441;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  #cookie-banner,
  .mobile-menu-button {
    display: none !important;
  }
}
