/* =========================
   style.css (CLEAN FULL)
   + Mobile-friendly booking
   ========================= */

/* Base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#111;
  background:#fff;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{ width:min(1140px, 92%); margin:0 auto; }
.container-fluid{ width:100%; padding:0; margin:0; }

/* Loader */
.loader_bg{
  position:fixed; inset:0;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  z-index:9999;
}
.loader img{ width:80px; height:auto; }

/* Header */
.header{
  background:#0f0f0f;
  padding:14px 0;
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo img{ max-height:100px; width:auto; }

.navigation{
  display:flex;
  gap:18px;
  align-items:center;
}
.navigation a{
  color:#fff;
  font-size:16px;
  padding:10px 6px;
  opacity:.9;
}
.navigation a:hover{ opacity:1; }
.navigation a.active{ opacity:1; font-weight:700; }

/* Mobile nav button */
.nav-toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  border-radius:10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:18px;
  background:#fff;
  margin:4px auto;
  border-radius:99px;
}

/* Banner / Carousel */
.banner_main{ position:relative; }

.carousel{
  position:relative;
  overflow:hidden;
  height: 100vh;
  min-height: 520px;
}

.carousel-track{
  display:flex;
  height:100%;
  transition: transform .55s ease;
}

.carousel-item{
  min-width:100%;
  height:100%;
}

.hero-img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}

/* Controls */
.carousel-control{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:0;
  width:44px; height:44px;
  border-radius:50%;
  background: rgba(0,0,0,.45);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  z-index:3;
}
.carousel-control.prev{ left:14px; }
.carousel-control.next{ right:14px; }
.carousel-control:hover{ background: rgba(0,0,0,.6); }

/* Dots */
.carousel-indicators{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:14px;
  display:flex;
  gap:8px;
  z-index:3;
}
.dot{
  width:10px; height:10px;
  border-radius:50%;
  border:2px solid #fff;
  background:transparent;
  cursor:pointer;
  opacity:.9;
}
.dot.is-active{ background:#fff; }

/* Booking overlay */
.booking_ocline{
  position:absolute;
  left:0; right:0;
  bottom: 40px;
  z-index:2;
}

.book_room{
  width: min(520px, 100%);
  padding: 28px 28px 22px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.40);
  border-radius:10px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.30);
}

.book_room h1{
  margin:0 0 14px;
  font-size: 32px;
}

.book_now{ display:grid; gap:12px; }
.book-field span{ display:block; font-weight:700; margin-bottom:6px; }

.date-wrap{ position:relative; }
.date_cua{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  opacity:.7;
}

.online_book{
  width:100%;
  padding: 14px 14px 14px 44px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:15px;
  background: rgba(255,255,255,0.85);
}

.book_btn{
  width:100%;
  border:0;
  background:#f7b500;
  padding: 14px 16px;
  border-radius:10px;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
}
.book_btn:hover{ filter:brightness(.95); }

.book_note{ margin:0; font-size:13px; color:#333; }

/* ✅ Mobile-friendly booking improvements (no layout change) */
@media (max-width: 1000px){
  /* when booking becomes normal section (not overlay) */
  .booking_ocline{
    position:relative;
    bottom:auto;
    padding: 18px 0 0;
  }

  /* keep it centered and not sticking to the left */
  .book_room{
    margin: 0 auto;
  }
}

/* ✅ Extra small phones */
@media (max-width: 520px){
  .book_room{
    padding: 18px 16px 14px;
    border-radius: 12px;
  }
  .book_room h1{
    font-size: 24px;
  }
  .online_book{
    padding: 13px 12px 13px 42px;
    font-size: 14px;
  }
  .book_btn{
    padding: 13px 14px;
    font-size: 14px;
  }
  /* prevent the dots from overlapping booking on tiny screens */
  .carousel-indicators{
    bottom: 8px;
  }
}

/* Sections */
.about, .our_room, .gallery, .blog, .contact{
  padding: 110px 0 70px;
}
.titlepage h2{
  margin:0 0 10px;
  font-size:34px;
}
.titlepage p{ margin:0; color:#555; line-height:1.6; }
.center{ text-align:center; margin-bottom: 28px; }

.about-row{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:24px;
  align-items:center;
  padding:0 18px;
}
.read_more{
  display:inline-block;
  margin-top:16px;
  background:#111;
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  font-weight:800;
}

/* Rooms */
.room-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.room{
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}
.room_img img{ height:220px; width:100%; object-fit:cover; }
.bed_room{ padding:14px 14px 16px; }
.bed_room h3{ margin:0 0 8px; font-size:18px; }
.bed_room p{ margin:0; color:#555; line-height:1.5; }

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.gallery_img{
  border-radius:10px;
  overflow:hidden;
  border:1px solid #eee;
}
.gallery_img img{ height:170px; width:100%; object-fit:cover; }

/* Blog */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.blog_box{
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}
.blog_img img{ height:220px; width:100%; object-fit:cover; }
.blog_room{ padding:14px 14px 18px; }
.blog_room h3{ margin:0 0 6px; }
.blog_room span{ display:block; color:#999; font-size:13px; margin-bottom:8px; }
.blog_room p{ margin:0; color:#555; line-height:1.5; }

/* Contact */
.contact-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.main_form{
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  padding:18px;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
  display:grid;
  gap:12px;
}
.contactus, .textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
}
.send_btn{
  width:100%;
  border:0;
  background:#111;
  color:#fff;
  padding:12px 14px;
  border-radius:8px;
  font-weight:800;
  cursor:pointer;
}
.send_btn:hover{ filter:brightness(.95); }
.form_note{ margin:0; font-size:13px; color:#333; }

.map_main{
  border-radius:10px;
  overflow:hidden;
  border:1px solid #eee;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}
.map-responsive iframe{
  width:100%;
  height:100%;
  min-height: 340px;
  border:0;
  display:block;
}

/* Footer */
.footer{
  background:#0f0f0f;
  color:#fff;
  padding: 44px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  padding-bottom: 20px;
}
.footer h3{ margin:0 0 12px; }
.conta, .link_menu{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.conta a{ color:#fff; opacity:.9; }
.conta a:hover{ opacity:1; }
.link_menu a{ color:#fff; opacity:.9; text-transform:capitalize; }
.link_menu a:hover{ opacity:1; }

.social_icon{
  display:flex;
  gap:10px;
  margin-top:12px;
}
.social_icon a{
  width:36px; height:36px;
  border-radius:50%;
  display:grid; place-items:center;
  background: rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
}

.bottom_form{ display:grid; gap:10px; }
.enter{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
}
.sub_btn{
  border:0;
  background:#f7b500;
  padding:12px 14px;
  border-radius:8px;
  font-weight:900;
  cursor:pointer;
}

.copyright{
  border-top:1px solid rgba(255,255,255,.14);
  padding:14px 0;
  margin-top: 14px;
}
.copyright p{ margin:0; text-align:center; opacity:.9; }

/* Responsive */
@media (max-width: 1000px){
  .room-grid{ grid-template-columns: 1fr 1fr; }
  .blog-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr 1fr; }
  .about-row{ grid-template-columns: 1fr; }

  .about, .our_room, .gallery, .blog, .contact{ padding: 70px 0 50px; }
}

@media (max-width: 720px){
  .nav-toggle{ display:block; }

  .navigation{
    position:absolute;
    right:4%;
    top:72px;
    width:min(340px, 92vw);
    background:#0f0f0f;
    border:1px solid rgba(255,255,255,.14);
    border-radius:10px;
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    z-index:10;
  }

  .navigation.open{ display:flex; }
  .navigation a{ padding:10px 10px; }

  .contact-row{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
  .room-grid, .blog-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

/* About spacing / nicer margins */
.about-row{
  padding: 0 24px;
  gap: 34px;
}
.about-text .titlepage{
  max-width: 540px;
  margin: 0 auto;
}
.about-text .titlepage h2{
  margin-bottom: 14px;
}
.about-text .titlepage p{
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* About image breathing room */
.about-img figure{
  margin: 0;
}
.about-img img{
  border-radius: 12px;
}

/* Footer: better spacing for "Contact US" column */
.footer-col .conta{
  gap: 14px;
  margin-top: 14px;
}
.footer-col .conta li{
  line-height: 1.7;
}
.footer-col .conta li br{
  line-height: 1.2;
}

/* ================================
   BLOG HERO STYLE (like screenshot)
================================ */
.blog.blog-hero{
  position: relative;
  padding: 90px 0 90px;
  background: url("images/demoHotelBanner8.png") center/cover no-repeat;
  color: #fff;
}
.blog.blog-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.60);
  z-index:0;
}
.blog.blog-hero .container{
  position: relative;
  z-index: 1;
}
.blog.blog-hero .titlepage.center{
  margin-bottom: 34px;
}
.blog.blog-hero .titlepage h2{
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 44px;
  position: relative;
  display: inline-block;
}
.blog.blog-hero .titlepage h2::before{
  content:"";
  position:absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 3px;
  background: #e31b23;
  border-radius: 99px;
}
.blog.blog-hero .titlepage p{
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 600;
}
.blog.blog-hero .blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.blog.blog-hero .blog_box{
  background: #fff;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.30);
}
.blog.blog-hero .blog_img a{
  display:block;
}
.blog.blog-hero .blog_img img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .25s ease;
}
.blog.blog-hero .blog_img a:hover img{
  transform: scale(1.03);
}
.blog.blog-hero .blog_room{
  padding: 22px 22px 26px;
}
.blog.blog-hero .blog_room h3{
  margin: 0 0 6px;
  font-size: 30px;
  color: #111;
}
.blog.blog-hero .blog_room span{
  display: block;
  margin-bottom: 10px;
  color: #e31b23;
  font-weight: 700;
  font-size: 13px;
}
.blog.blog-hero .blog_room p{
  margin: 0;
  color: #6b6b6b;
  line-height: 1.55;
  font-size: 14px;
}
@media (max-width: 1000px){
  .blog.blog-hero .blog-grid{
    grid-template-columns: 1fr;
  }
  .blog.blog-hero .titlepage h2{
    font-size: 38px;
  }
}

/* ===========================
   BLOG PAGE LOOK (like screenshot)
   =========================== */
.blog.blog-page{
  padding: 90px 0 95px;
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.58)),
    url("images/zkbBanner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog.blog-page .titlepage h2,
.blog.blog-page .titlepage p{
  color: #fff;
}
.blog.blog-page .titlepage h2{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  padding-top: 14px;
  margin-bottom: 10px;
}
.blog.blog-page .titlepage h2::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:26px;
  height:3px;
  background:#e53935;
  border-radius:99px;
}
.blog.blog-page .blog-grid{
  gap: 22px;
  align-items: stretch;
}
.blog.blog-page .blog_box{
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.blog.blog-page .blog_img img{
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.blog.blog-page .blog_room{
  padding: 22px 22px 24px;
}
.blog.blog-page .blog_room h3{
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 4px;
}
.blog.blog-page .blog_room span{
  color:#e53935;
  font-weight: 800;
  font-size: 13px;
  text-transform: none;
  margin-bottom: 10px;
}
.blog.blog-page .blog_room p{
  color:#666;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   Black Glass + Gold Accent
   ========================= */
.glass-room{
  border-radius: 18px;
  overflow: hidden;

  background: rgba(10, 10, 12, .55);
  border: 1px solid rgba(255, 215, 128, .18);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.glass-room:hover{
  transform: translateY(-5px);
  border-color: rgba(255, 215, 128, .32);
  box-shadow:
    0 24px 80px rgba(0,0,0,.65),
    0 0 0 1px rgba(255, 215, 128, .06),
    0 0 34px rgba(255, 215, 128, .10);
}

.glass-room .room_img{
  position: relative;
}
.glass-room .room_img img{
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(1.05);
}
.glass-room .room_img::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,0) 35%,
    rgba(0,0,0,.45) 100%
  );
}

.glass-room .room_price{
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255, 215, 128, .35);
  color: #fff;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 10px 25px rgba(0,0,0,.45);
}
.glass-room .room_price .price{
  color: #ffd780;
  font-weight: 900;
  letter-spacing: .2px;
}
.glass-room .room_price .per{
  font-size: 12px;
  opacity: .85;
  margin-left: 6px;
  font-weight: 600;
}

.glass-room .bed_room{
  padding: 16px 16px 18px;
  color: rgba(255,255,255,.92);
}

.glass-room h3{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .25px;
}
.glass-room .room_tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(255, 215, 128, .12);
  border: 1px solid rgba(255, 215, 128, .28);
  color: #ffd780;
  font-weight: 800;
}

.glass-room .room_desc{
  margin: 6px 0 14px;
  opacity: .88;
  line-height: 1.55;
  font-size: 14px;
}

.glass-room .room_amenities{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.glass-room .room_amenities li{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255, 215, 128, .14);
  color: rgba(255,255,255,.90);

  font-size: 13px;
  line-height: 1;
}
.glass-room .room_amenities li i{
  color: #ffd780;
}

.glass-room .room_meta span{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255, 215, 128, .12);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.glass-room .room_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;

  background: linear-gradient(180deg, rgba(255,215,128,.22), rgba(255,215,128,.12));
  border: 1px solid rgba(255,215,128,.35);
  color: #ffd780;
  font-weight: 900;

  box-shadow: 0 12px 25px rgba(0,0,0,.45);
  transition: transform .2s ease, filter .2s ease;
}
.glass-room .room_btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.glass-room .room_link{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-weight: 700;
}
.glass-room .room_link:hover{
  color: #ffd780;
}

/* ROOMS SECTION (dark bg so glass shows) */
.our_room{
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(255,215,128,.10), transparent 60%),
    radial-gradient(900px 600px at 85% 25%, rgba(255,215,128,.08), transparent 55%),
    #07070a;
  color:#fff;
}
.our_room .titlepage h2{ color:#fff; }
.our_room .titlepage p{ color: rgba(255,255,255,.78); }

/* Force override of old white card */
.room.glass-room{
  background: rgba(10,10,12,.28) !important;
  border: 1px solid rgba(255,215,128,.20) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.60) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.room.glass-room .bed_room{
  background: transparent !important;
  color: rgba(255,255,255,.92);
}
.room.glass-room .bed_room p{
  color: rgba(255,255,255,.78) !important;
}
.room.glass-room .bed_room h3{
  color:#fff !important;
  font-weight: 900;
}
.room.glass-room .room_tag{
  background: rgba(255,215,128,.12) !important;
  border: 1px solid rgba(255,215,128,.28) !important;
  color: #ffd780 !important;
}
.room.glass-room .room_amenities li{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,215,128,.16) !important;
  color: rgba(255,255,255,.90) !important;
}
.room.glass-room .room_amenities li i{ color:#ffd780 !important; }
.room.glass-room .room_meta span{
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,215,128,.14) !important;
  color: rgba(255,255,255,.88) !important;
}
.room.glass-room .room_btn{
  background: linear-gradient(180deg, rgba(255,215,128,.24), rgba(255,215,128,.10)) !important;
  border: 1px solid rgba(255,215,128,.38) !important;
  color: #ffd780 !important;
}
.room.glass-room .room_link{ color: rgba(255,255,255,.85) !important; }
.room.glass-room .room_link:hover{ color:#ffd780 !important; }

/* Elegant Section Titles + Crown */
:root{
  --gold: #ffd780;
  --gold2:#f7b500;
  --title-font: "Cinzel", serif;
  --body-font: "Montserrat", Arial, Helvetica, sans-serif;
}
body{
  font-family: var(--body-font);
}
.titlepage h2{
  font-family: var(--title-font);
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-top: 30px;
  margin-bottom: 10px;
}
.titlepage h2::before{
  content:"♛";
  position:absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: var(--gold);
  text-shadow: 0 6px 20px rgba(255,215,128,.28);
}
.titlepage h2::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 62px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 99px;
  opacity: .95;
}
.titlepage p{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.titlepage.center{
  margin-bottom: 34px;
}

/* Crown title (no red line) */
.crown-title{
  text-align: center;
}
.crown-title .crown-icon{
  font-size: 22px;
  line-height: 1;
  margin: 0 auto 10px;
  color: #ffd780;
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.crown-title h2{
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.blog.blog-hero .titlepage h2::before{
  content: none !important;
}
.crown-title p{
  margin: 0;
}
.blog.blog-hero .titlepage.center{
  text-align: center !important;
}
.blog.blog-hero .titlepage.center p{
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 720px;
}

/* ===== Booking Modal ===== */
.field_error{
  display:block;
  margin-top:6px;
  font-size:13px;
  line-height:1.2;
  color:#d9534f;
  min-height:16px;
}

.bmodal[hidden]{ display:none !important; }

.bmodal{
  position:fixed;
  inset:0;
  z-index:9999;
}

.bmodal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.bmodal__dialog{
  position:relative;
  max-width:720px;
  width:calc(100% - 28px);
  margin:8vh auto;
  background:#fff;
  border-radius:14px;
  padding:22px 18px 18px;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}

.bmodal__close{
  position:absolute;
  top:10px;
  right:12px;
  width:38px;
  height:38px;
  border:0;
  border-radius:10px;
  background:rgba(0,0,0,.06);
  cursor:pointer;
  font-size:22px;
  line-height:1;
}

.bmodal__title{
  margin:0 44px 6px 0;
  font-size:22px;
}

.bmodal__subtitle{
  margin:0 0 16px;
  font-size:14px;
  color:#666;
}

.bmodal__form label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:#222;
}

.bmodal__form input,
.bmodal__form select{
  width:100%;
  height:44px;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:10px;
  outline:none;
}

.bmodal__form input:focus,
.bmodal__form select:focus{
  border-color:#999;
}

.bmodal__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}

.bmodal__field{ min-width:0; }

@media (max-width: 640px){
  .bmodal__grid{ grid-template-columns:1fr; }
  .bmodal__dialog{ margin:6vh auto; }
}

.bmodal__actions{
  margin-top:16px;
}

.bmodal__note{
  margin:10px 0 0;
  font-size:14px;
  color:#1a7f37;
  min-height:18px;
}

.bmodal__fineprint{
  margin:14px 0 0;
  font-size:12.5px;
  color:#666;
}

/* ===== Room More Info (Expand) ===== */
.room_actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top: 14px;
}

/* Make the "More Info" look like a link but it's a button */
.room_toggle{
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.room_toggle i{
  transition: transform .2s ease;
}

.room_toggle[aria-expanded="true"] i{
  transform: rotate(180deg);
}

/* Expand area */
.room_more{
  margin-top: 14px;
  border-top: 1px solid rgba(255,215,128,.14);
  padding-top: 14px;
}

.room_more_inner{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,215,128,.12);
  border-radius: 14px;
  padding: 14px 14px 12px;
}

.room_more_title{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
  color: #ffd780;
  letter-spacing: .4px;
}

/* 2-column list (auto becomes 1-column on small screens) */
.amenities_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.amenities_list li{
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
  font-size: 13.5px;
  line-height: 1.35;
}

.amenities_list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color: #ffd780;
  font-weight: 900;
}

@media (max-width: 720px){
  .amenities_list{
    grid-template-columns: 1fr;
  }
}
/* =========================
   FIX: Booking not clickable / can't reach submit (mobile)
   Paste at VERY BOTTOM of style.css
   ========================= */

/* Prevent weird scroll lock on mobile */
html, body{
  height: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* On mobile/tablet: stop the hero from trapping the page */
@media (max-width: 1000px){
  /* Let banner be natural height */
  .carousel{
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  /* Make the track behave normally (not a huge 100vh swipe area) */
  .carousel-track{
    height: auto !important;
  }

  /* Allow the booking block to sit below without being covered */
  .banner_main{
    padding-bottom: 24px;
  }

  /* Ensure booking is ABOVE carousel layers */
  .booking_ocline{
    position: relative !important;
    z-index: 50 !important;
  }
  .book_room{
    position: relative !important;
    z-index: 60 !important;
  }

  /* ✅ IMPORTANT: stop the carousel images from stealing taps */
  .carousel-track,
  .carousel-item,
  .carousel-item img{
    pointer-events: none !important;
  }

  /* Keep controls clickable (optional) */
  .carousel-control,
  .carousel-indicators,
  .dot{
    pointer-events: auto !important;
  }
}

/* Extra safety: make the submit always clickable */
.book_btn{
  position: relative;
  z-index: 80;
  pointer-events: auto;
}
/* ==========================================
   FIX: Booking modal can't reach Submit button
   Paste at VERY BOTTOM of style.css
   ========================================== */

/* Make the dialog fit in the viewport and allow scrolling inside */
.bmodal__dialog{
  /* keep your design but ensure it never goes off-screen */
  max-height: 90vh;
  overflow: hidden;

  /* better layout: header stays, form scrolls */
  display: flex;
  flex-direction: column;

  /* less chance of being pushed off screen */
  margin: 4vh auto !important;
}

/* Allow the form content to scroll */
.bmodal__form{
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px; /* small space so scrollbar doesn't overlap content */
}

/* Optional: keep the submit area visible */
.bmodal__actions{
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 10px;
  padding-bottom: 6px;
}

/* Optional: if screen height is very small (minimized window), tighten spacing */
@media (max-height: 700px){
  .bmodal__dialog{
    margin: 12px auto !important;
    max-height: calc(100vh - 24px);
  }
}
