
section.hotels{
  padding-top: 35px;
  padding-bottom: 10px;
  background: var(--Detail-bg);
}

.hotel-listings {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.hotel-package-item-wrapper {
    width: 50%;
    padding: 0 10px 0px;
    box-sizing: border-box;
}

.hotel-wishlist-item-wrapper {
    width: 33%;
    padding: 0 10px 0px;
    box-sizing: border-box;
}

@media (max-width: 500px) {
  .hotel-package-item-wrapper {
    width: 100%;
    padding: 0 10px 0px;
      box-sizing: border-box;
  }

  .hotel-wishlist-item-wrapper {
      width: 100%;
      padding: 0 10px 0px;
      box-sizing: border-box;
  }
}

.hotel-package-item {
    display: flex;
    flex-direction: column;
}

.hotel-card.luxury {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: box-shadow 0.4s cubic-bezier(.4,2,.3,1), transform 0.4s cubic-bezier(.4,2,.3,1);
  position: relative;
  border: 1.5px solid #e7cfa3;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.hotel-card.luxury:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.hotel-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #eee;
}
.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,2,.3,1), opacity 0.4s;
  display: block;
}
.hotel-card.luxury:hover .hotel-image img {
  transform: scale(1.07);
  opacity: 0.92;
}
.hotel-gradient-overlay {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(60,42,30,0.01) 60%, rgba(60,42,30,0.38) 100%);
  z-index: 1;
  pointer-events: none;
}
.hotel-badge {
  position: absolute;
  top: 18px;
  left: 15px;
  background: linear-gradient(90deg, var(--color-light) 0%, #e7cfa3 100%);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 18px;
  padding: 6px 18px 6px 14px;
  box-shadow: 0 2px 8px #0002;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.5px;
}
.hotel-badge .fa-crown {
  color: #000;
  font-size: 120px;
  margin-right: 5px;
}
.hotel-sale-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-primary, #3C2A1E);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  padding: 7px 20px 7px 14px;
  box-shadow: 0 2px 8px #0002;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hotel-sale-tag .old-price {
  text-decoration: line-through;
  color: #fff9;
  font-size: 15px;
  margin-right: 6px;
}
.hotel-sale-tag .new-price {
  color: var(--color-accent, var(--color-light));
  font-weight: 800;
  font-size: 17px;
}

.hotel-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 75px;
}
.hotel-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
}
.hotel-title {
  font-size: 21px;
  font-family: var(--font-heading);
  color: var(--color-accent);
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 0 !important;
  margin-top: 0;
  letter-spacing: 0.2px;
}
.hotel-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.hotel-title a:hover {
  color: var(--color-accent, var(--color-light));
}
.hotel-location {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}
.hotel-flag {
  width: auto !important;
  height: 20px !important;
  border-radius: 3px;
  box-shadow: 0 1px 4px #0001;
  margin-right: 4px;
  border: 1px solid #eee;
}
.hotel-bottom-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--color-accent, var(--color-light)) 0%, #d4a95a 100%);
  padding: 8px 30px 10px 30px;
  border-radius: 0 0 20px 20px;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(185, 138, 61, 0.25);
  position: relative;
  overflow: hidden;
}

.hotel-bottom-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-bottom-section::before {
  transform: translateX(100%);
}

.hotel-rating-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-rating-section strong {
  font-size: 15px;
}

.hotel-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hotel-stars .fa-star,
.hotel-stars .fa-star-half-o,
.hotel-stars .fa-star-o {
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hotel-reviews {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.hotel-price-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-price-section .old-price {
  color: rgba(255,255,255,0.7);
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 400;
}

.hotel-price-section .new-price {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hotel-desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 0;
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 40px;
  font-weight: 500;
  flex-grow: 1;
}

#hotel_banner{
  position: relative;
  padding: 0;
  z-index: 3;
  margin-bottom: 30px;
}

#hotel_banner .kenburns_061_slide{width: 50%;}

.slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center; }

.slide-inner:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.2);
}

.hotel_banner_text{
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 12%;
}
.hotel_banner_text p{
  font-size: 20px;
  color: #fff;
}
.hotel_banner_text h2, .hotel_banner_text span, .hotel_banner_text a{
  color: #fff;
  background: var(--color-primary);
  padding: 5px 15px;
  font-size: 33px;
}
.hotel_banner_text h2{
  margin-bottom: 3px;
}
.hotel_banner_text span{
  background: #017ebb;
}
.hotel_banner_text a{
  background: #036d9f;
  margin-left: -5px;
  transition: all ease-in-out 0.3s;
}
.hotel_banner_text a:hover{
  color: #036d9f;
  background: #fff;
}
@media(max-width: 639px){
  #hotel_banner .kenburns_061_slide {
      width: 90%;
      text-align: center;
      margin: 0 auto;
  }
}

/* Tour Features Heading with Dotted Line */
.hotel-features-heading {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hotel-features-heading h3 {
    font-size: 22px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
}
.hotel-features-heading .heading-line {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}
.hotel-overview-content{
    margin-bottom: 20px;
}
.hotel-overview-content p{
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-black);
}

/*search box*/
.search-hotel-box {
    right: 10%;
    padding: 20px;
    position: absolute;
    width: 24%;
    bottom: 10%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-soft);
    box-shadow: 0 0 20px #ccc;
}
.search-hotel-box h3{
    background: var(--color-primary);
    padding: 10px;
    border-radius: var(--radius-soft);
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 30px !important;
}

.table_item_hotel .form-group{
  position: relative;
  margin: 0px;
  margin-top: -15px;
}

.table_item_hotel .search{
  margin-top: 10px;
}

.table_item_hotel .form-group i{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
}
.table_item_hotel .input-group-addon i{
  position: relative;
  top: 1px;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  left: 0;
}

.search-hotel-ad{  background: var(--color-primary);
  position: relative;
  padding: 26px 20px;
}
.search-hotel-ad p{
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}
.search-hotel-ad p span{
  display: block;
  font-size: 50px;
  font-weight: 600;
}
.search-hotel-ad [class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after{
  font-size: 50px;
  color: #fff;
}
.search-hotel-ad i{
  position: absolute;
  top: 10px;
  right: 30px;
}
.search-hotel-form{
  padding: 20px;
}

.search-hotel-content.table_item_hotel a.btn-red {
    width: 100%;
    text-align: center;
}

.table_item_hotel .bootstrap-select>.dropdown-toggle{
  padding: 11px 40px;
  border-radius: 0px;
  border: 1px solid #eceaea;
  background: #fff;
  font-size: 14px;
  font-weight: 300;
  color: #444;
}

.table_item_hotel .bootstrap-select .dropdown-menu{border-radius: 0px;}

.table_item_hotel .bootstrap-select .dropdown-menu li{margin-bottom: 5px;}

.table-item-slider{
  padding-right: 30px;
}
.table_item_hotel input[type=text], 
.table_item_hotel input[type=email], 
.table_item_hotel input[type=number], 
.table_item_hotel input[type=search], 
.table_item_hotel input[type=password],
.table_item_hotel input[type=tel], 
.table_item_hotel input[type=date],
.table_item_hotel textarea, 
.table_item_hotel select,
.table_item_hotel .form-control{
  padding: 11px 40px;
   }
input[type=date].form-control, 
input[type=time].form-control,
 input[type=datetime-local].form-control,
  input[type=month].form-control{
  line-height: 1.42857143;
  padding: 9px 32px;
}
.date .form-control{
  padding: 10px 40px !important;
}
.table_item_hotel a.btn-blue{
  width: 100%;
  text-align: center;
  padding: 9px 25px 8px;
  font-weight: 600;
}
.table_item_hotel .input-group-addon{
  border-radius: 0;
  border-left: 1px solid #ccc;
}
td.day{
  cursor: default;
}

@media(max-width: 991px){
  .search-hotel-box{padding: 20px; width: 32%;}
}

@media(max-width:811px){
  .search-hotel-box{width: 36%; right: 5%;}
}

@media(max-width: 767px){
  .search-hotel-box{width: 96%; position: inherit; bottom: inherit; right: inherit; margin: 30px auto 0;}
}


/* ====================== */
/*    Room Type Cards     */
/* ====================== */

.room-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.room-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0c38b;
}

.room-item .col-md-4 {
    padding: 0;
    overflow: hidden;
}

.room-item img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.room-item:hover img {
    transform: scale(1.05);
}

.room-content {
    padding: 10px 5px;
    position: relative;
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-details {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-details i {
    margin-left: 5px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.btn-view-details:hover {
    color: var(--color-accent);
}

.btn-view-details:hover i {
    transform: translateX(4px);
}

.btn-book-now {
    background: var(--color-primary);
    color: white !important;
    border: none;
    border-radius: 4px;
    padding: 8px 20px !important;
    font-size: 13px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 140px;
}

.btn-book-now:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.room-content h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    font-family: var(--font-heading);
}

.room-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.room-content h3 a:hover {
    color: var(--color-accent);
}

.room-content p {
    margin-bottom: 10px;
    color: var(--color-black);
    font-size: 14px;
    line-height: 1.6;
}

.room-content p strong {
    color: var(--color-primary);
    font-weight: 700;
}

.fw-price {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
        background: var(--color-bg-light);
    border-left: 1px solid var(--color-border);
}

.fw-price p {
    margin: 0;
    color: var(--color-black);
    font-size: 14px;
}

.fw-price .bold {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 5px;
    line-height: 1.2;
}

.room-btn .btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.room-btn .btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .room-item .col-md-4 {
        height: 250px;
    }
    
    .room-content {
        padding: 20px 15px;
    }
    
    .fw-price {
        border-left: none;
        border-top: 1px solid #e9ecef;
    }
}

/* ====================== */
/*    Popular Package     */
/* ====================== */

section.hotel-packages{
   margin-top: 20px;
}

.hotel-packages .hotel-item{
  background: #fff;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
  margin-bottom: 5px;
}

.hotel-item
{
  margin-top: 40px;
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.hotel-packages .section-title{margin-bottom: 15px;}

.hotel-packages {
  padding:5px 10px;
  text-align: center;
}
.hotel-packages h3
{
  margin-bottom: 0px !important;
}
.hotel-packages h3 a{
  display: inline-block;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.hotel-packages h3 a:hover{
  color: var(--color-accent);
}

.hotel-packages p{
  font-size: 14px;
  display: block;
  font-weight: 400;
  color: var(--color-black);
  margin-top: 0px;
  text-align: center;
}

.hotel-packages p{margin-bottom: 0;}

.hotel-packages .hotel-image{
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  cursor: default;
  background: linear-gradient(45deg, var(--color-accent) 0%,#046b8c 100%) ;
  margin-bottom: 22px;
}
.hotel-packages .hotel-image img{
  display: block;
  position: relative;
  max-width: none;
  width: calc(100% + 60px) !important;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-40px,0,0);
  transform: translate3d(-40px,0,0);
}
.hotel-packages .hotel-item:hover{
  transition: all ease-in-out 0.3s;
  transform: translateY(-5px);
}
.hotel-packages .hotel-item:hover img{
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

section.hotel-packages .slick-prev, section.hotel-packages .slick-next{
  left: -20px;
  background: var(--color-primary);
  height: 50px;
  width: 50px;
  margin-top: -30px;
  border-color: #fbfbfb;
}
section.hotel-packages .slick-next{
  right: -20px;
  margin-top: -30px;
  left: inherit;
}

section.hotel-packages .slick-prev:before, section.hotel-packages .slick-next:before{
  color: #fbfbfb;
}

/*innerpage*/

.hotel-packages .hotel-inner .section-title{margin-bottom: 35px;}

.hotel-packages .room-item {
    border: 1px solid #f1f1f1;
    padding: 0px;
    transition: all ease-in-out 0.3s;
    box-shadow: 0px 0px 10px #cccccc67;
}

.room-item img 
{
  height: 140px;
  width: 100%;
}


.hotel-packages .fw-price span.bold {
    display: block;
    font-size: 25px;
    padding-bottom: 10px;
    color: var(--color-accent);
    font-weight: 700;
    text-align: center;
}

.room-btn p
{
  padding-top: 10px;
  text-align: center;
}

.fw-btns
{
  height: 152px;
}

.btn-room
{
    padding: 5px 10px;
    display: inline-block;
    background: var(--color-accent);
    color: #fbfbfb;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
    font-family: var(--font-btn);
}

.btn-room:hover
{
    background: var(--color-primary);
    color: #fbfbfb;
}

.hotel-packages .fw-btns{
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 10px 0;
}

.property
{
  color:#f1f1f1;
  font-family: var(--font-btn) !important;
  font-weight: 200;
  font-size: 18px;
}

.room-content h3
{
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
}


@media(max-width: 991px){
  .room-content{padding: 20px 0}
}

section.hotel-section{
  background: url(../../images/bg/hotel-detail.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 53px;
}

.info-hotel span
{
  font-weight: 400;
  color: var(--color-primary);
  display: inline;
  margin-right: 5px;
  font-size: 11px;
}

@media (max-width:992px) {
  .room-btn p
{  padding-top: 10px;
  text-align: center;}
.fw-btns
{  height: 140px;}
}

@media (max-width:768px) {
  .room-btn p
{  padding-top: 10px;
  text-align: center;}
.fw-btns
{  height: 130px;}
}
@media (max-width:400px) {
  .room-btn p
{  padding-top: 0px;
  text-align: center;}
.fw-btns
{  height: 125px;}
}





@media (max-width:992px) {
  .room-item img 
{
  height: 140px;
  width: 100%;
}
}

@media (max-width:768px) {
  .room-item img 
{
  height: 170px;
  width: 100%;
}
}
@media (max-width:400px) {
  .room-item img 
{
  height: 190px;
  width: 100%;
}
}