
    body {
  background-color: #f9f9f9;
  
}

.hotel-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hotel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

 .badge-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.4rem;
    font-size: 0.75rem;
    text-align: center;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

.position-relative {
  position: relative;
}

.card-content {
  padding: 1rem;
}
.hotel-img-cover {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 0.375rem;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.features span {
  background: #f3f3f3;
  padding: 4px 8px;
  border-radius: 5px;
}

.price-box {
  border-top: 1px solid #e0e0e0;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.price-box .price {
  font-size: 1.6rem;
  color: #15803d;
  font-weight: bold;
}

.btn-book {
  background-color: #15803d;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  border: none;
  width: 100%;
  max-width: 200px;
}

.mobile-filter-toggle {
  display: none;
}

@media (max-width: 768px) {
.hotel-img-cover {
    height: 220px;
    }

  .features {
    display: flex;
    align-items: flex-start;
  }

  .price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
	margin-top: 1.5rem;
  }

  .btn-book {
    width: 100% !important;
  }

  .mobile-filter-toggle {
    display: block !important;
  }

  .hotel-img {
    height: auto;
    max-height: 250px;
  }
  .badge-overlay {
      font-size: 0.85rem;
      padding: 0.5rem;
    }



    /* css for booking INDEX page - sticky booking btn */
    .mobile-sticky-booking-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        background-color: #fff;
        padding: 0.75rem 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
      }

      .mobile-sticky-booking-btn .btn {
        width: 100%;
        font-size: 1.6rem;
        font-weight: 600;
        padding: 0.75rem;
      }

}


/* css for footer-secondary page */
 footer {
    background-color: #111;
    color: #ccc;
    font-size: 14px;
  }
  footer a {
    color: #aaa;
    transition: all 0.3s ease;
  }
  footer a:hover {
    color: #fff;
    text-decoration: none;
  }
  footer h5 {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
  }
       

  /* css for MODAL in hotel-list page */
        .hotel-img-cover {
          width: 100%;
          height: 180px;
          object-fit: cover;
          border-radius: 0.375rem;
          cursor: pointer;
        }
        .image-modal {
          position: fixed;
          top: 0;
          left: 0;
          width: 100vw;
          height: 100vh;
          background: rgba(0, 0, 0, 0.8);
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 9999;
          display: none;
        }
        .image-modal img {
          max-width: 90vw;
          max-height: 90vh;
          border-radius: 10px;
        }
        .image-modal .close-btn {
          position: absolute;
          top: 20px;
          right: 20px;
          font-size: 2rem;
          color: white;
          cursor: pointer;
          background: rgba(0,0,0,0.5);
          padding: 5px 10px;
          border-radius: 5px;
        }
       
     
/* css for hotel-detail page */
  
    body {
      
      background-color: #f8f9fa;
    }

    .hotel-title {
      font-size: 1.8rem;
      font-weight: bold;
    }

    .star-rating i {
      color: #ffc107;
    }

    .hotel-gallery img {
      border-radius: 6px;
      object-fit: cover;
    }

    .main-image {
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 6px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 6px;
    }

    .section-title {
      color: #b48c4a;
      font-weight: bold;
    }

    

    .desc-box {
      background: #fff;
      border-radius: 6px;
      padding: 1.5rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
  
       

/* css for hotel-detail room section */
   
    body {
      background-color: #f8f9fa;
      
    }
    .room-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      margin-bottom: 2rem;
      overflow: hidden;
      transition: box-shadow 0.3s;
    }
    .room-card:hover {
      box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    }
    .room-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
    }
    .total-box {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    }
    .non-refundable {
      background-color: #fff3cd;
      color: #856404;
      font-size: 0.85rem;
      padding: 8px 10px;
      border-radius: 6px;
      text-align: center;
      margin-top: 8px;
    }
    .price-text {
      font-size: 1.3rem;
      font-weight: bold;
      color: #198754;
    }
    .btn-qty {
      width: 36px;
      height: 36px;
      line-height: 1;
      padding: 0;
      font-size: 1.3rem;
      border-radius: 50%;
    }
    .room-controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .room-card h5 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #343a40;
    }
    .text-muted {
      font-size: 0.92rem;
    }
    .btn-success {
      font-weight: 600;
      font-size: 1.45rem;
      padding: 0.4rem 0.75rem;
    }
    @media (max-width: 767.98px) {
      .sticky-mobile-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        border-radius: 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        padding: 0.75rem 1rem;
        font-size: 1rem;
      }
      .btn-success {
      font-weight: 600;
      font-size: 1.4rem;
      padding: 0.4rem 0.75rem;
    }
      .sticky-mobile-bottom h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }
      .sticky-mobile-bottom h5,
      .sticky-mobile-bottom p {
        margin-bottom: 0.25rem;
      }
    }
 