body {
  background-color: #f4f6f9;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.swiper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: zoom-in;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%; /* Perfect circle */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  transition: all 0.3s ease;
  z-index: 10;
  border: none; /* Remove debug */
}

/* Reset & Style the Arrows */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px; /* Adjust size */
  font-weight: bold;
  color: inherit;
  line-height: 1;
  display: block;
  margin: 0;
  transform: scale(1);
}

/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.0);
}



/* Responsive Swiper Slide Image */
@media (max-width: 768px) {
  .swiper-slide img {
    height: auto;
    max-height: 300px;
  }
  .thumbs {
    display: none;
  }

}

/* Thumbnails */
.thumbs {
  width: 100%;
  height: 90px;
}

.thumbs .swiper-slide {
  opacity: 0.6;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  padding: 2px;
}

.thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.thumbs .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 80px;
  border-radius: 8px;
  border: 2px solid #fff;
  transition: transform 0.3s ease;
}

.thumbs .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Booking Card */
.booking-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.price-highlight {
  font-size: 1.6rem;
  color: #dc3545;
  font-weight: 700;
}

/* Specification Boxes */
.spec-box {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.2s;
}

.spec-box:hover {
  transform: translateY(-3px);
}

.spec-box i {
  font-size: 1.8rem;
  color: #0d6efd;
  margin-right: 15px;
}

/* Form Controls */
.form-control {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.2);
}

/* Glightbox Zoom Controls */
.glightbox-zoom-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.glightbox-zoom-controls button {
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  line-height: 1;
}

.glightbox-zoom-controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.glightbox-zoom-controls.hidden {
  display: none;
}
     .rating-stars i {
      font-size: 1.5rem;
    }
    .rating-box {
      background-color: #fff;
      border-radius: 1rem;
      padding: 1rem 2rem;
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }
	.swiper-slide .card {
  height: 100%;
  min-height: 360px;
  max-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.swiper-slide .card p {
  overflow-y: auto;
  max-height: 120px;
  margin-bottom: 0;
}
.swiper-slide .card img {
   width: 80px; 
   height: 80px;
}
 .rental-card {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    background-color: #fff;
  }
  .rental-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
    padding: 20px 10px;
    background-color: #f8f9fa;
    transition: background-color 0.2s ease-in-out;
  }
  .rental-item:hover {
    background-color: #e9ecef;
  }
  .rental-item i {
    color: #0d6efd;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .rental-item .fw-semibold {
    font-size: 1rem;
  }

  /* Mobile improvements */
  @media (max-width: 576px) {
    .rental-items {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 0px;
    }
    .rental-item {
      flex: 0 0 300px;
      scroll-snap-align: start;
      padding: 25px 15px;
    }
    .rental-item i {
      font-size: 2.2rem;
    }
    .rental-item .fw-semibold {
      font-size: 1.1rem;
    }
  }
