.bisharacottages-rooms-area1 {
  overflow: hidden;
}

/* Main Room Image Styles */
.main-room-image-container {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background-color: #000;
}

.main-room-img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.main-room-title {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(106, 78, 78, 0.75);
  color: white;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: right;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideInFromRight 0.6s ease-out;
  z-index: 2;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Grid Image Styles */
.grid-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
  border: 3px solid #fff;
  background-color: #f0f0f0;
}

.grid-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.grid-image-wrapper:hover .grid-image-img {
  transform: scale(1.1);
}

/* Room Content */
.room-content-section {
  background-color: #f8f9fa;
}

.room-feature li {
  font-size: 16px;
  padding: 8px 0;
}

.room-feature li span:first-child {
  font-weight: 600;
  min-width: 120px;
  display: inline-block;
}

/* Owl Carousel Custom Styling */
.bisharacottages-rooms-area1 .owl-nav {
  display: none;
}

.bisharacottages-rooms-area1 .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.bisharacottages-rooms-area1 .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd !important;
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.bisharacottages-rooms-area1 .owl-dot.active {
  background: #333 !important;
  width: 30px;
  border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .main-room-image-container,
  .main-room-img {
    min-height: 400px !important;
  }

  .grid-image-wrapper {
    height: 200px !important;
  }

  .main-room-title {
    font-size: 1.8rem;
    padding: 15px 30px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .main-room-image-container,
  .main-room-img {
    min-height: 300px !important;
  }

  .grid-image-wrapper {
    height: 150px !important;
  }

  .main-room-title {
    font-size: 1.4rem;
    padding: 12px 20px;
    bottom: 15px;
    right: 15px;
  }
}
