.modal-content {
    border-radius: 12px;
  }

  .modal-header {
    border-bottom: 1px solid #eee;
  }

  .modal-body h5 {
    font-weight: 600;
  }

  @media (max-width: 767px) {
    .modal-body h5 {
      font-size: 1rem;
    }
  }




  /* Ratings */

.reviews-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.review-card {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem;
  margin-right: 2rem;
  min-width: 300px;
  max-width: 300px;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.review-stars {
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  color: #333;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .review-card {
    min-width: 250px;
    max-width: 250px;
  }
}


/* Resort Activity Section */

.activities-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 10px;
}

.activities-gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activities-gallery a:hover img {
  transform: scale(1.05);
}
