/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
    border-radius: 10px;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    /* border-radius: 20px; */
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #0f172b;;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}
/* Remove Bootstrap’s default background image */
.navbar-toggler-icon {
  background-image: none !important;
}

/* Custom dark toggle */
.custom-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  padding: 0;
}

.custom-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* The three lines */
.toggler-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000; /* black lines */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Optional: animated toggle (rotate when open) */
.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(15 23 43 / 0%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 180px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

/* .service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
} */

.back-to-top{
  display: none !important;
}
/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
} */

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

 .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

 .owl-nav .owl-prev,
 .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

 .owl-nav .owl-prev:hover,
 .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: 0px;
    padding-top: 44px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.nav-links{
    padding-left: 155px;
}

.primary-color{
    color: #F99225;
}
.primary-bg{
    background-color: #F99225;
}

@media (max-width: 568px) {
    .nav-links{
        padding-left: 0px;
    }


}


.room-card {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease;
  position: relative;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.room-details {
  padding: 15px;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-header h3 {
  font-size: 18px;
  margin: 0;
}

.rating {
  background: #ffd700;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
  color: #333;
}

.room-location {
  color: #777;
  font-size: 14px;
}

.room-price {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin-top: 5px;
  position: absolute;
  top: 230px;
  right: 10px;
  background-color: #15033f;
  color: white;
  padding: 5px 10px;
  z-index: 10;
  border-radius: 10px;
}

.room-type {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.room-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  font-size: 13px;
  color: #444;
  margin-bottom: 15px;
}

.room-actions {
  display: flex;
  justify-content: space-between;
}

.room-actions button {
    flex: 1;
    border: none;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    transition: background 0.3s;
    font-size: 14px;
}



.view-btn {
  background: #f0f0f0;
  margin-right: 10px;
}
.view-btn a {
  color: black;
}

.book-btn {
    background: #F99225;
  color: white;
}
.book-btn a{
  color: white;
}

.view-btn:hover {
  background: #ddd;
}

.book-btn:hover {
  background: #db7508;
}
/* Custom Owl Nav Styling */
.room-card .owl-nav {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* allow clicks only on buttons */
}

.room-card .owl-nav .owl-prev,
.room-card .owl-nav .owl-next {
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  pointer-events: all; /* clickable */
}

.room-card .owl-nav .owl-prev:hover,
.room-card .owl-nav .owl-next:hover {
  background: #1e88e5;
  color: #fff;
  transform: scale(1.05);
}

.room-card .owl-nav .owl-prev {
  margin-left: 10px;
}

.room-card .owl-nav .owl-next {
  margin-right: 10px;
}
.room-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 13px;
  color: #444;
  margin-bottom: 15px;
}

.room-facilities span {
  display: flex;
  align-items: center;
  gap: 26px;
  background: #f7f9fc;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.room-facilities span:hover {
  background: #e3f2fd;
  color: #f38816;
}

.room-facilities i {
    font-size: 15px;
    color: #F99225;
}


/* === DOTS DESIGN === */
.room-card .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.room-card .owl-dot {
  width: 10px;
  height: 10px;
  background: #d0d0d0;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.room-card .owl-dot.active {
  background: #e59f1e;
  transform: scale(1.2);
}

.room-card .owl-dot:hover {
  background: #64b5f6;
}


.icon-box {
  background: #eef4ff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.bg-light {
  background-color: #f8fafc !important;
}

.btn-primary {
  background: #F99225;
  border: none;
}

.btn-primary:hover {
  background: #da760c;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(30,136,229,0.25);
  border-color: #F99225;
}
.room-facilities.single i {
    font-size: 22px !important;
}


.whatsapp-float {
    position: fixed;
    width: 47px;
    height: 46px;
    bottom: 50px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}

.whatsapp-float img {
    width: 35px;
    /* margin-top: 10px; */
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}


.restaurant {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(22, 22, 22);
  width: 100%;
  flex-wrap: wrap;
  overflow: hidden;
}

.rest-left,
.rest-right {
  width: 50%;
  position: relative;
  /* padding: 50px 4%; */
  box-sizing: border-box;
}

.rest-right::after{
  position: absolute;
  content: '';
  z-index: 10;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* border: 10px solid red; */
  background: linear-gradient(90deg, rgb(22, 22, 22), rgba(22, 22, 22, 0.13));
}

/* ======= Image Styling ======= */
.rest-right img {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
  display: block;
  object-fit: cover;
  /* border-radius:20px ; */
}

/* ======= Animated Text ======= */
.rest-texts {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
height: 150px;
    font-size: 3rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
  color: white;
  text-align: left;
  margin-left:50px ;

}

.rest-texts li {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: slideText 12s infinite;
  transition: opacity 0.5s ease-in-out;
}

/* Animation delays */
.rest-texts li:nth-child(1) { animation-delay: 0s; }
.rest-texts li:nth-child(2) { animation-delay: 3s; }
.rest-texts li:nth-child(3) { animation-delay: 6s; }
.rest-texts li:nth-child(4) { animation-delay: 9s; }

/* Keyframes for fade + slide effect */
@keyframes slideText {
  0% { opacity: 0; transform: translateY(20px); }
  5% { opacity: 1; transform: translateY(0); }
  25% { opacity: 1; transform: translateY(0); }
  30% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; transform: translateY(-20px); }
}

/* ======= Responsive Design ======= */
@media (max-width: 1024px) {
  .rest-texts {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .restaurant {
    flex-direction: column;
    text-align: center;
    position: relative;
  }

  .rest-left,
  .rest-right {
    width: 100%;
    /* padding: 30px 5%; */
  }

  .rest-left {
    order: 2; /* move text below image if preferred, remove if not */
  }

  .rest-texts {
    font-size: 1.6rem;
    height: 60px;
  }

  .rest-right img {
    border-radius: 0;
    box-shadow: none;
  }
}


.single-image-wrapper {
  /* padding: 20px; */
  border-radius: 20px;
}

.single-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 15px !important;
  object-fit: cover;
}

/* Responsive tweak for small screens */
@media (max-width: 768px) {
  .single-image-wrapper {
    padding: 10px;
  }
}


@media (max-width: 480px) {
    .rest-texts {
        font-size: 16px;
        height: 56px;
        position: absolute;
        z-index: 12;
        bottom: 30px;
        right: 10px;
        width: 69%;
    }
    .rest-left {
        padding: 20px;
        position: absolute;
        bottom: 0;
    }

.section-title {
    font-size: 10px !important;
}
.hero-text{
  font-size: 20px;
}
.carousel-item p{
  font-size: 12px;
}
#rooms{
  padding-top: 0px !important;
}
    .room-facilities span {
        padding: 7px 7px !important;
    }

  .rest-right::after{

  background: linear-gradient(0deg, rgb(22, 22, 22), rgba(22, 22, 22, 0.13));
}
.padding-0{
padding: 10px !important;
}

#services{
  padding: 0px !important;
}


.testimonial-item p{
  font-size: 12px;
}
 .owl-nav {
display: none;
}

.btn {
  font-size: 12px !important;
}

}



/* ===== Responsive Fix for Stats Row ===== */
@media (max-width: 576px) {
  .stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px;
  }

  .stats-row > [class*="col-"] {
    flex: 0 0 calc(25% - 6px);
    max-width: calc(25% - 6px);
    padding: 0;
  }

  .stats-row .border {
    border: none !important;
  }

  .stats-row .text-center {
    padding: 8px 4px !important;
  }

  .stats-row i {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }

  .stats-row h2 {
    font-size: 14px !important;
    margin-bottom: 2px !important;
  }

  .stats-row p {
    font-size: 10px !important;
    margin: 0;
  }
  .block{
    display: block;
  }




  .explore-btn {
    display: inline-block;
    width: auto; /* you can change to 100% if you want full-width */
    padding: 8px 16px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    margin-top: 10px !important;
  }

  /* Optional: center it */
  .explore-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* If you want a lighter, minimalist look */
  .explore-btn.primary-bg {
    background-color: #ffb400 !important;
    border: none !important;
    color: #fff !important;
  }

  .explore-btn:hover {
    background-color: #e6a000 !important;
  }
}



/* ====== Video Section Styling ====== */
.video-box {
  background-color: #f8f9fa;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4 / 3; /* keeps responsive 4:3 shape */
  border-radius: 8px;
  overflow: hidden;
}

/* Thumbnail image */
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

/* Play Button Overlay */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.play-button i {
  font-size: 36px;
  color: #fff;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .video-container {
    max-width: 100%;
    aspect-ratio: 16 / 9; /* widescreen for mobile */
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .video-box {
    padding: 0.5rem;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button i {
    font-size: 24px;
  }
}
/* ===== Responsive Grid Fix for Services ===== */
@media (max-width: 768px) {
  .services-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
    gap: 16px;
  }

  .services-row > [class*="col-"] {
    width: 100% !important;
    flex: none !important;
    max-width: 100% !important;
  }

  .services-row .service-item {
    display: block;
    padding: 16px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    height: 100%;
  }

  .services-row .service-item h5 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .services-row .service-item p {
    font-size: 12px;
    line-height: 1.4;
  }

  .services-row .service-icon i {
    font-size: 20px;
  }
}

/* Optional: tighten up on very small phones */
@media (max-width: 480px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .services-row .service-item {
    padding: 12px;
  }

  .services-row .service-item h5 {
    font-size: 13px;
  }

  .services-row .service-item p {
    font-size: 11px;
  }

  .services-row .service-icon i {
    font-size: 18px;
  }
}
/* ===== Responsive Grid Fix for Services ===== */
@media (max-width: 768px) {
  .services-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
    gap: 16px;
  }

  .services-row > [class*="col-"] {
    width: 100% !important;
    flex: none !important;
    max-width: 100% !important;
  }

  .services-row .service-item {
    display: block;
    padding: 16px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    height: 100%;
  }

  .services-row .service-item h5 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .services-row .service-item p {
    font-size: 12px;
    line-height: 1.4;
  }

  .services-row .service-icon i {
    font-size: 20px;
  }
}

/* Optional: tighten up on very small phones */
@media (max-width: 480px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px !important;
  }

  .services-row .service-item {
    padding: 12px;
  }

  .services-row .service-item h5 {
    font-size: 13px;
  }

  .services-row .service-item p {
    font-size: 11px;
  }

  .services-row .service-icon i {
    font-size: 18px;
  }


  .service-item .service-icon {
    margin: 0 auto 9px auto !important;
    width: 65px;
    height: 41px !important;
}

.room-facilities i {
    font-size: 12px !important;
}


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

  .room-price {

    top: 130px;
    right: 10px;
  }
.text-mob{
  font-size: 18px;
}

.address br{
  display: none;
}

}
/* ===== Fix uneven room facilities on mobile ===== */
@media (max-width: 576px) {
  .room-facilities.single {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 2 columns per row */
    gap: 12px; /* spacing between items */
  }

  .room-facilities.single span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 8px 10px;
  }

  .room-facilities.single i {
    margin-right: 6px;
    font-size: 16px;
  }
}

/* Optional: 3 per row for slightly wider mobiles (e.g., landscape phones) */
@media (min-width: 480px) and (max-width: 576px) {
  .room-facilities.single {
    grid-template-columns: repeat(3, 1fr);
  }
  .room-facilities span {

    gap: 8px !important;
  }
}




/* Additional Charges Section */
.extra-charges-box {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
}

.extra-charges-table td {
  padding: 12px 15px;
  font-size: 15px;
  border-bottom: 1px dashed #dee2e6;
}

.extra-charges-table tr:last-child td {
  border-bottom: none;
}

.extra-charges-table td:first-child {
  font-weight: 500;
  color: #333;
}

.extra-charges-table td:last-child {
  font-weight: 600;
  color: #fda50d; /* matches Bootstrap primary */
}



/* Room Pricing Table */
.room-pricing-wrapper {
  background: #f8f9fa;
  border: 1px solid #e3e6ea;
  border-radius: 8px;
  padding: 18px;
}

.room-pricing-table {
  margin-bottom: 10px;
}

.room-pricing-table th {
  background: #fd850d;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px;
  border: none;
}

.room-pricing-table td {
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #dee2e6;
}

.room-pricing-table tr:last-child td {
  border-bottom: none;
}

.room-pricing-table td:first-child {
  font-weight: 600;
  color: #212529;
}


/* Stay Info + Additional Charges Layout */
.stay-info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Left block spacing consistency */
.stay-info-left ul li {
  margin-bottom: 10px;
}

/* Ensure right block does not stretch */
.stay-info-right {
  width: 100%;
}

/* Responsive: Stack on tablets & mobiles */
@media (max-width: 991px) {
  .stay-info-wrapper {
    grid-template-columns: 1fr;
  }

  .stay-info-right {
    margin-top: 10px;
  }

  .text-uppercase {
    text-transform: uppercase !important;
    font-size: 13px;
}
}
