/* =====================
   BASE
===================== */
body {
  font-family: 'Lato', sans-serif;
 
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
/* =====================
   HEADER
===================== */
.main-header{
  background:#fff;
 
  width:100%;
}

.header {
  padding: 0px 0px;
  background: #fff;
  width: 100%;
  transition: all 0.4s ease;
}

.header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: slideDown 0.4s ease forwards;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Slide from top animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.logo{
  letter-spacing:2px;
  font-weight:bold;
}

.main-header nav a{
  text-decoration:none;
  color:#222;
  font-size: 16px;
  font-family: sans-serif;
}

/* BUTTON */
.btn-enquire{
  background:#fe6300;
  color:#fff;
  padding:10px 22px;
  font-weight: 500;
}

.btn-enquire:hover{
      background: #e8be7a;
      color: #222;
      font-weight: 500;

}

/* MOBILE TOGGLE */
.mobile-toggle{
  font-size:28px;
  border:none;
  background:none;
}

/* =====================
   DESKTOP DROPDOWN
===================== */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fe6300;
  min-width: 200px;
 
}

.dropdown-submenu a{
 color: #fff!important;
}

.submenu{
  background-color: #db3c01!important;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* Submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 200px;
}

.dropdown-submenu:hover .submenu {
  display: block;
}

/* Optional styling */
.dropdown-menu a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}

.dropdown-menu a:hover {
  background: #db3c01;
}

.submenu a:hover{
  background-color: #1c1c1c;
}
/* =====================
   MOBILE MENU
===================== */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:280px;
  height:100%;
  background:#db3c01;
  padding:30px;
  transition:0.4s ease;
  z-index:2000;
}

.mobile-menu.open{
  right:0;
}

.mobile-menu a{
  display:block;
  margin-bottom:15px;
  text-decoration:none;
  color:#ffffff;
}

.mobile-close{
  position:absolute;
  top:15px;
  right:15px;
  font-size:30px;
  border:none;
  background:none;
  color: #fff;
}

/* MOBILE DROPDOWN */
.mobile-drop-toggle {
    cursor: pointer;
    padding: 0px 0 10px;
    display: flex;
    justify-content: space-between;
    /* font-weight: 600; */
    color: #fff;
}

.mobile-drop-menu {
  display: none;
}

.mobile-dropdown.active .mobile-drop-menu {
  display: block;
}

.submenu-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: #fff;
}

.submenu-items {
  display: none;
  padding-left: 15px;
  
}

.submenu-items a:hover{
  background-color: #222;
}

.submenu-items a {
  display: block;
  text-decoration: none;
  color: #ffffff;
}
/* =====================
   HERO SECTION
===================== */
.hero-section{
  /* margin-top:80px; fixed header offset */
  position:relative;
}

.carousel-item{
  height:70vh;
  background-size:cover;
  background-position:center;
}
@media screen and (max-width:767px) {
  .carousel-item{
  height:50vh;
  background-size:cover;
  background-position:center;
}
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#ffffff;
  z-index:2;
}

.hero-content h1{
  font-size:3.5rem;
  text-shadow: 1px 1px 12px #000;
}

/* =====================
   BOOKING BOX
===================== */
.booking-box{
  background:#f8f6f2;
  padding:25px;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
  margin-top:-60px;
  position:relative;
  z-index:10;
}

.btn-ava-check{
  background:#fe6300;
  color:#fff;
  height:58px;
}

.btn-ava-check:hover{
  background-color: #e8be7a;
  color: #000;
}
/* =====================
   RESPONSIVE
===================== */
@media(max-width:768px){
  .hero-content h1{
    font-size:2.2rem;
  }

  .booking-box{
    margin-top:20px;
  }
}

.guest-wrapper{
  position:relative;
}

.guest-input{
  cursor:pointer;
}

.guest-dropdown{
  position:absolute;
  top:100%;
  left:0;
  width:280px;
  background:#fdfaf6;
  border:1px solid #d8c3a5;
  padding:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
  display:none;
  z-index:9999;
}

.guest-dropdown.show{
  display:block;
}

.guest-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.counter{
  display:flex;
  align-items:center;
  gap:12px;
}

.counter button{
  width:28px;
  height:28px;
  border:1px solid #aaa;
  background:#fff;
  cursor:pointer;
}


.about-hotel {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 70px 0px 40px;
}

/* IMAGE STYLE */
.about-img-wrap {
  position: relative;
  width: 100%;
}

.main-img {
  border-radius: 18px;
  height: 380px;
  width: 80%;
  object-fit: cover;
}

@media screen and (max-width:768px) {
  .main-img {
  border-radius: 18px;
  height: auto;
  width: 100%;
  object-fit: cover;
}
.overlay-img{
  display: none;
}
}

.overlay-img {
  position: absolute;
  bottom: -60px;
  right: 0px;
  width: 50%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* CONTENT */
.about-subtitle {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #fe6300;
  margin-bottom: 12px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

/* RESPONSIVE FIX */
@media (max-width: 991px) {
  .overlay-img {
    position: relative;
    width: 100%;
    height: 220px;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    
  }

  .about-title {
    font-size: 32px;
  }
}

.read-more-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fe6300;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}



/* hover effect */
.read-more-btn:hover{
  color: #fe6300;
}

.read-more-btn:hover::after{
  width: 100%;
}

.read-more-btn span{
  transition: transform 0.3s ease;
}

.read-more-btn:hover span{
  transform: translateX(5px);
}


.hotel-glass-card{
  background: #d8c3a5;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.35);
  transition:.5s;
}

.hotel-glass-card:hover{
  transform:translateY(-10px) scale(1.01);
}

/* IMAGE */
.hotel-media{
  width:100%;
  position:relative;
}

.hotel-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Overlay on image */
.hotel-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.65),
    transparent 55%
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:16px;
}

.hotel-overlay h4{
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin:0;
}

.hotel-overlay .stars{
  color:#e8be7a;
  font-size:14px;
}

/* CONTENT */
.hotel-content{
  width:100%;
  padding:22px;
  color:#fff;
}

.location{
  font-size:14px;
  opacity:.85;
  margin-bottom:14px;
}

/* Amenities */
.amenities-row{
  display:flex;
  gap:12px;
  margin-bottom:18px;
}

.amenities-row span{
  width:40px;
  height:40px;
  border-radius:12px;
  background:rgba(232,190,122,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#e8be7a;
  font-size:16px;
}

/* PRICE */
.price-box{
  font-size:26px;
  font-weight:800;
  color:#e8be7a;
  margin-bottom:18px;
}

.price-box small{
  font-size:14px;
  font-weight:400;
  color:#fff;
}

/* CTA BUTTON */
.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:14px;
  background:#e8be7a;
  color:#2f3b34;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.cta-btn:hover{
  background:#fff;
  transform:translateX(4px);
}


.hotel-banner-card{
  position:relative;
  height:360px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.1);
}

.hotel-banner-card a{
  text-decoration: none;
}

.hotel-banner-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Overlay */
.hotel-overlay-content{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,0.1),
    transparent
  );
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Stars strip */
.top-strip{
  background:#e8be7a;
  color:#000000;
  padding:6px 14px;
  border-radius:10px;
  width:fit-content;
  font-size:14px;
  letter-spacing:2px;
  font-weight:700;
}

/* Bottom row */
.content-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

/* Left info */
.hotel-name{
  color:#fff;
  font-size:20px;
  font-weight:800;
  margin:0 0 6px;
}

.destination{
  color:#eaeaea;
  font-size:15px;
  margin:0;
}

.destination i{
  color:#e8be7a;
}

/* Read more */
.read-link{
  color:#e8be7a;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
  transition:.3s;
}

.read-link:hover{
  transform:translateX(6px);
}
.hotel-banner-card img{
  transition: all ease 0.3s;
}

.hotel-banner-card:hover img{
  transform: scale(1.1);
}

.hotel-facilities {
  background-color: #ffffff;
}

.facility-card {

  padding: 20px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  height: 100%;
}

.facility-icon{
  display: flex;
  justify-content: center;
}

.facility-icon span{
  width: 70px;
  height: 70px;
  background-color: #fe6300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.facility-icon i {
  font-size: 28px;
  color: #ffffff;
}

.facility-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.facility-content p {
  margin-bottom: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.hotel-facilities {
  background-color: #f8f6f2;
}

.heading h2{
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}

.heading {
  margin-bottom: 40px;
}

.facility-card span{
  transition: all ease 0.4s;
}

.facility-card:hover span{
  transform: rotate(360deg);
  background-color: #2f3b34;
}

.mobile-toggle span{
  display: flex;
  width: 20px;
  height: 2px;
  background-color: #2f3b34;
  margin-bottom: 5px;
}


/* Section Background */
.lux-testimonial-area{
    position:relative;
    padding:100px 0;
    background:url('https://images.unsplash.com/photo-1618220179428-22790b461013?q=80&w=1920') center/cover no-repeat;
}

.lux-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

/* Heading */
.lux-title h2{
    font-size:48px;
    font-weight:600;
}
.lux-subtitle{
    letter-spacing:3px;
    font-size:13px;
    opacity:.8;
}

/* Card */
.lux-testi-card{
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.4s;
}

/* default card */
.lux-testi-card{
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:all .45s ease;
    transform:scale(.92);
    opacity:.6;
}

/* CENTER CARD EFFECT (MAIN MAGIC) */
.lux-testimonial-slider .owl-item.center .lux-testi-card{
    background:#fe6300;
    color:#fff;
    transform:scale(1.12);
    opacity:1;
}

/* star color when active */
.lux-testimonial-slider .owl-item.center .lux-stars{
    color:#fff;
}

/* text color fix */
.lux-testimonial-slider .owl-item.center small{
    color:#f1f1f1;
}

/* quote icon */
.lux-quote{
    position:absolute;
    top:20px;
    right:25px;
    font-size:40px;
    opacity:.18;
}


/* Client */
.lux-client{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.lux-client img{
    width:55px!important;
    height:55px!important;
    border-radius:50%;
    object-fit:cover;
}

.lux-client h5{
    margin:0;
    font-weight:600;
}

.lux-client small{
    opacity:.7;
}

/* Stars */
.lux-stars{
    color:#ff9f43;
    margin-top:15px;
}

.active-card .lux-stars{
    color:#fff;
}

/* Quote icon */
.lux-quote{
    position:absolute;
    top:20px;
    right:25px;
    font-size:40px;
    opacity:.15;
}

/* Owl spacing */
.lux-testimonial-slider .owl-stage-outer{
    padding:40px 0;
}

/* arrows position */
.lux-nav-btns{
    position:absolute;
    right:0;
    top:40px;
    display:flex;
    gap:12px;
    z-index:5;
}

@media screen and (max-width:768px) {
  .lux-nav-btns {
    position: absolute;
    right: 13px;
    top: 146px;
    display: flex;
    gap: 12px;
    z-index: 5;
}
.lux-testimonial-slider .owl-item.center .lux-testi-card{
    background:#fe6300;
    color:#fff;
    transform:scale(1);
    opacity:1;
}
}

.lux-nav-btns button{
    width:50px;
    height:50px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,.2);
    color:#fff;
    backdrop-filter:blur(5px);
    transition:.3s;
}

.lux-nav-btns button:hover{
    background:#fe6300;
}

/* Section */
.hrx-rooms-section{
    padding:70px 0;
    background:#fff;
}

/* Heading */
.hrx-subtitle{
    letter-spacing:3px;
    color:#fe6300;
    font-size:13px;
}
.hrx-room-heading h2{
    font-size:44px;
    font-weight:600;
}
.hrx-room-heading h2 span{
    color:#fe6300;
}

/* Card */
.hrx-room-card{
    position:relative;
    overflow:hidden;
    border-radius:8px;
}

.hrx-room-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.hrx-room-card:hover img{
    transform:scale(1.1);
}

/* Price badge */
.hrx-price{
    position:absolute;
    top:20px;
    right:20px;
    background:#fff;
    padding:6px 14px;
    font-weight:600;
    border-radius:4px;
    font-size:14px;
}

/* Gradient overlay */
.hrx-room-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,1.7), transparent);
}

.hrx-room-overlay h4{
    font-size:26px;
    margin-bottom:10px;
}

/* info */
.hrx-room-info{
    font-size:14px;
    margin-bottom:10px;
}
.hrx-room-info span{
    margin-right:15px;
}

/* icons */
.hrx-room-icons i{
    margin-right:12px;
    opacity:.9;
}

/* Button */
.hrx-view-btn{
    display:inline-block;
    padding:14px 32px;
    border:1px solid #fe6300;
    color:#fe6300;
    text-decoration:none;
    transition:.3s;
}
.hrx-view-btn:hover{
    background:#fe6300;
    color:#fff;
}

.readmore a{
  text-align: right;
  display: block;
  text-decoration: none;
  color: #fe6300;
  font-weight: 600;
}

/* Footer main */
.dlx-footer{
    background:#f5f6f8;
    padding:70px 0 0;
    color:#444;
    font-size:15px;
}

/* About text */
.dlx-footer-about p{
    line-height:1.9;
    color:#666;
}

/* Titles */
.dlx-footer-title{
    font-size:22px;
    margin-bottom:20px;
    font-weight:600;
    color:#222;
}

/* Links */
.dlx-footer-links{
    list-style:none;
    padding:0;
    margin:0;
}
.dlx-footer-links li{
    margin-bottom:10px;
}
.dlx-footer-links a{
    text-decoration:none;
    color:#555;
    transition:.3s;
}
.dlx-footer-links a:hover{
    color:#c89b6d;
    padding-left:6px;
}

/* contact */
.dlx-contact{
    list-style:none;
    padding:0;
}
.dlx-contact li{
    margin-bottom:12px;
    line-height:1.7;
}
.dlx-contact i{
    color:#c89b6d;
    margin-right:10px;
}

/* policy */
.dlx-policy{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid #ddd;
    text-align:left;
}
.dlx-policy a{
    color:#666;
    text-decoration:none;
}
.dlx-policy a:hover{
    color:#c89b6d;
}

/* copyright */
.dlx-copy{
    background:#e9eaed;
    text-align:center;
    padding:18px;
    margin-top:25px;
    font-size:14px;
}

.readmore a:hover{
  color: #fff;
}

.hlx-topbar {
  background: linear-gradient(90deg, #1f1f2e, #fe6300);
  color: #fff;
  font-size: 14px;
}

.hlx-topbar-info {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 10px 0;
  margin: 0;
  flex-wrap: wrap;
}

.hlx-topbar-info li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hlx-topbar-info i {
  color: #f5c78a;
}

.hlx-topbar-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.hlx-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hlx-time i {
  color: #f5c78a;
}

.hlx-social a {
  color: #fff;
  margin-left: 10px;
  transition: 0.3s;
}

.hlx-social a:hover {
  color: #1da1f2;
}

/* Responsive fix */
@media (max-width: 991px) {
  .hlx-topbar-right {
    justify-content: start;
  }
}


.room-hero {
  position: relative;
  /* background: url('../img/page-header-bg.jpg') center center / cover no-repeat; */
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.room-hero-overlay {
  position: absolute;
  inset: 0;
  background:#fe6300;
}

.room-hero .container {
  position: relative;
  z-index: 2;
}

/* Title */
.room-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Breadcrumb */
.room-breadcrumb {
  font-size: 16px;
  font-weight: 500;
}

.room-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
}

.room-breadcrumb span {
  margin: 0 6px;
  opacity: 0.7;
}

.room-breadcrumb .active {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .room-hero {
    height: 300px;
  }

  .room-hero-title {
    font-size: 36px;
  }
}


.hotel-details-section {
  background: #f8f8f8;
}

/* LEFT CONTENT */
.hotel-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hotel-location {
  color: #777;
  margin-bottom: 10px;
}

.hotel-location i {
  color: #fe6300;
  margin-right: 5px;
}

.hotel-rating i {
  color: #f5c78a;
}

.hotel-rating span {
  color: #777;
  margin-left: 5px;
}

.hotel-desc {
  margin: 20px 0;
  line-height: 1.7;
  color: #000000;
  text-align: justify;
}

.hotel-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.hotel-features li {
  margin-bottom: 10px;
  color: #333;
}

.hotel-features i {
  color: #fe6300;
  margin-right: 8px;
}

.hotel-btn {
  background: #fe6300;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
}

.hotel-btn:hover {
  background: #e8be7a;
  color: #222;
}

/* RIGHT GALLERY */
.hotel-gallery {
  border-radius: 5px;
  overflow: hidden;
}

.hotel-gallery .carousel-item{
  height: auto!important;
}



/* Responsive */
@media (max-width: 768px) {
  .hotel-img {
    height: 280px;
  }
}


.hotel-img {
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.hotel-thumbs {
  overflow-x: auto;
  padding-bottom: 5px;
}

.thumb-track {
  display: flex;
  gap: 12px;
}

.thumb {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumb:hover {
  opacity: 1;
}

.thumb.active {
  opacity: 1;
  border-color: #ff6f00; /* brand highlight */
}

/* Hide ugly scrollbar */
.hotel-thumbs::-webkit-scrollbar {
  height: 0;
}



.luxury-rooms {
  background: linear-gradient(135deg, #f8f9fa, #eef1f5);
}

.room-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.room-img {
  overflow: hidden;
  height: 230px;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.1);
}

.room-body {
  padding: 25px;
}

.amenities li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.amenities i {
  margin-right: 8px;
  color: #d4af37;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.price span {
  font-size: 13px;
  color: #424242;
}
.hotel-more-details h2{
  font-size: 18px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}
.popular {
  border: 2px solid #ffc107;
}


.hotel-thumbs {
  overflow-x: auto;
}

.thumb-track {
  display: flex;
  gap: 10px;
}

.thumb {
  position: relative;
  width: 80px;
  height: 80px;
  cursor: pointer;
  flex: 0 0 auto;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Overlay Styling */
.view-more-thumb {
  position: relative;
}

.view-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.view-more-overlay:hover {
  background: rgba(0,0,0,0.8);
}

.hotel-amenities-section {
  background: #f3f1ee;
}

.sub-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #db3c01;
}

.main-title {
  font-size: 42px;
  font-weight: 500;
}

.service-item h5 {
  font-size: 18px;
  margin-bottom: 6px;
}

.service-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.service-icon {
  font-size: 26px;
  color: #db3c01;
  margin-top: 5px;
}


.oc-contact-section{
  padding:100px 0;
}

.oc-container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.oc-contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* LEFT SIDE */

.oc-small-title{
  color:#fe6300;
  font-weight:600;
  margin-bottom:10px;
  display:inline-block;
}

.oc-contact-left h2{
  font-size:48px;
  margin-bottom:20px;
  color:#111;
}

.oc-contact-left p{
  color:#666;
  margin-bottom:50px;
  line-height:1.7;
  max-width:500px;
}



.oc-info-box{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding: 10px;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
}

.oc-icon{
  background:#fe6300;
  color:#fff;
  width:55px;
  height:55px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.oc-info-box h4{
  margin-bottom:5px;
  font-size:18px;
}

.oc-info-box p{
  margin:0;
  color:#555;
  font-size:15px;
}

/* RIGHT SIDE FORM */

.oc-form-box{
  background:#e9e2d8;
  padding:30px;
  border-radius:25px;
}

.oc-row{
  display:flex;
  gap:25px;
}

.oc-input-group{
  margin-bottom:25px;
  width:100%;
}

.oc-input-group label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  font-size:15px;
}

.oc-input-group input,
.oc-input-group textarea{
  width:100%;
  padding:14px;
  border:none;
  border-radius:10px;
  background:#fdfdfd;
  font-family:inherit;
  font-size:14px;
}

.oc-send-btn{
  background:#fe6300;
  color:#fff;
  border:none;
  padding:15px 35px;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
  font-size:15px;
  transition:0.3s;
}

.oc-send-btn:hover{
  background:#b88944;
}

/* RESPONSIVE */

@media(max-width:992px){
  .oc-contact-wrapper{
    grid-template-columns:1fr;
  }

  .oc-row{
    flex-direction:column;
  }

  .oc-contact-left h2{
    font-size:38px;
  }
}

.oc-info-box p a{
  color: #000;
  text-decoration: none;
}

.oc-social-wrapper{
  display:flex;
  gap:15px;
  align-items:center;
}

.oc-social-box{
  width:50px;
  height:50px;
  background:#fe6300;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  font-size:18px;
  text-decoration:none;
  transition:0.3s ease;
}

.oc-social-box:hover{
  background:#111;
  transform:translateY(-5px);
}



.gslide-media img {
  max-width: 95vw !important;
  max-height: 95vh !important;
  object-fit: contain !important;
}

.resort-card {
  background: #fff;
  text-align: center;
}

.resort-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.resort-card h3 {
  font-size: 22px;
  font-family: serif;
  margin: 15px 0;
  font-weight: 500;
}

.resort-btn {
  display: block;
  background: #fe6300;
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-size: 16px;
  transition: 0.3s;
  border-radius: 10px;
  margin-bottom: 30px;
}

.resort-btn:hover{
  background: #e8be7a;
      color: #222;
      font-weight: 500;
}


@media(max-width:768px){
  .hlx-topbar-right{
    display: none;
  }

  #mn-item{
    display: none;
  }

  .about-hotel {
    font-family: Poppins, sans-serif;
    background: rgb(255, 255, 255);
    padding: 70px 0px 0px;
}

.hrx-rooms-section {
    padding: 40px 0;
    background: #fff;
}

.header.sticky-header {
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: slideDown 0.4s ease forwards;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  }

  .hlx-topbar-info {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    padding: 10px 0;
    margin: 0;
    flex-wrap: wrap;
  }

  

}

.custom-input {
  border-radius: 12px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  font-size: 14px;
}

.custom-input:focus {
  border-color: #ff6600;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
}

.submit-btn {
  background: linear-gradient(45deg, #ff6600, #ff8533);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #e65c00, #ff6600);
}


.floating-btn {
  position: fixed;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* WhatsApp Button */
.floating-btn.whatsapp {
  background: #25d366; /* Official WhatsApp green */
  right: 20px;
  animation: pulse 2s infinite;
}

.floating-btn.whatsapp:hover {
  background: #20b958;
  transform: scale(1.1);
}

/* Call Button */
.floating-btn.call {
  background: #ff6600;
  left: 20px;
  animation: pulse 2.2s infinite;
}

.floating-btn.call:hover {
  background: #e65c00;
  transform: scale(1.1);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.3); }
  70% { box-shadow: 0 0 0 15px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

.new{
      background: #fe6300;
    color: #fff;
    padding: 5px 22px;
    font-weight: 600;
    border-radius: 20px;
    font-size: 14px;
}

.new:hover{
  background-color: #000;
  color: #fff;
}


 .htl-section {
      padding: 40px 0;
    }

    .htl-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .htl-title h2 {
      font-weight: 700;
    }

    .htl-card-box {
      background-color: #e14300;
      color: #fff;
      border-radius: 18px;
      
      position: relative;
      transition: all 0.3s ease;
      height: 100%;
    }

    #box-2{
      background-color: #075484;
    }

    #box-3{
      background-color: #078437;
    }

   .htl-card-box-content{
padding: 20px 20px 10px;
   }

    .htl-card-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    }

    .htl-card-icon {
      position: absolute;
      top: 18px;
      right: 18px;
      font-size: 26px;
      opacity: 0.25;
    }

    .htl-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .htl-info {
      font-size: 15px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .htl-info i {
      color: #ffffff;
      min-width: 18px;
    }

    .htl-map-area {
      margin-top: 50px;
    }

    .htl-map-box iframe {
      width: 100%;
      height: 240px;
      border: 0;
      border-radius: 15px;
    }

    .htl-info a{
      color: #fff;
      text-decoration: none;
    }


    /* Header */
.bgh-header {
    background: #ff6600;
    color: #fff;
    text-align: center;
    padding: 30px 10px;
}

.bgh-header h1 {
    margin: 0;
}

/* Container */
.bgh-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Card Section */
.bgh-card {
    background: #fff;
    margin: 25px 0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bgh-title {
    color: #ff6600;
    margin-bottom: 15px;
    font-size: 25px;
}

.bgh-card h3{
  font-size: 20px;
}

/* List */
.bgh-list {
    padding-left: 20px;
}

.bgh-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact Box */
.bgh-contact {
    background: #fff3e6;
    border-left: 5px solid #ff6600;
}

/* Footer */
.bgh-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    cursor: pointer;
}

/* Custom Arrow */
.custom-select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: #555;
}