body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
/* Modal Animation */
#enquiryModal, #successModal {
  transition: opacity 0.3s ease;
}

/* Form Input Focus */
#enquiryForm input:focus, 
#enquiryForm textarea:focus {
  outline: none;
  border-color: #f7931e;
  box-shadow: 0 0 0 2px rgba(247, 147, 30, 0.2);
}

/* Reviews Section Enhancements */
#reviewsSlider .flex > div {
  transition: transform 0.5s ease-in-out;
}

.review-dot {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.review-dot:hover {
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  #reviewsSlider .flex > div {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  #prevReview, #nextReview {
    display: none;
  }
}