* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Crimson Pro', serif;
}

html,body {
  background-color: #2B1103 !important;
  color: #DCC69C;
  font-family: 'Crimson Pro', serif !important;
  margin: 0;
  padding: 0;
}

.btn-primary-custom{
  background-color: rgb(220, 198, 156);
  color: rgb(43, 17, 3);
  border: none;
  padding: 12px 28px;
  font-weight: 400;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover{
  background-color: rgb(230, 210, 175);
  color: rgb(43, 17, 3);
}

.btn-primary-custom:active{
  background-color: rgb(200, 178, 136) !important;
  color: rgb(43, 17, 3) !important;
}

.main-header{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #2B1103;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-left: 50px;
  padding-right: 50px;
}

body:has(.transparent-header) .main-header{
  position: fixed;
  background: #2b110380;
  transition: all 0.4s ease;
}

body:has(.transparent-header)  .main-header.scrolled{
  background: #2B1103;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.main-header .container-fluid{
  position:relative;
  z-index:1001;
}

.logo-side{
  margin-right: 30px;
}

.logo-link{
  text-decoration:none;
}

.logo-link img{
  height:auto;
  width:110px;
  object-fit:contain;
}

.header-right{
  background:transparent !important;
}

.topbar{
  align-items:center;
  justify-content:space-evenly;
  height: 50px;
  font-size:16px;
  font-weight:400;
  letter-spacing:0.5px;
  color:#E1D1B2;
  background:transparent !important;
}

.topbar a{
  color:#E1D1B2;
  text-decoration:none;
  transition:0.3s ease;
}

.topbar span {
  font-family: "Great Vibes", Sans-serif;
}

.header-line{
  border:none;
  border-top:2px solid rgba(255,255,255,0.30);
  margin:0;
}

.main-header nav{
    background: transparent !important;
    display:flex;
    align-items:center;
    justify-content:space-evenly;
    padding:22px 0;
}

.main-header nav a{
    position:relative;
    color:#DCC69C;
    text-decoration:none;
    font-size:19px;
    font-weight:400;
    letter-spacing:.5px;
}

.main-header nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:1px;
    background:#d8b273;
    transition:width .35s ease;
}

.main-header nav a:hover::after{
    width:100%;
}

.main-header nav a.active::after{
    width:100%;
}

.book-btn {
    padding: 10px 20px;
    background-color: #dcc69c;
    color: #2b1103;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 400;
}

.hero{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

.hero-image{
  width:100%;
  object-fit:cover;
}

/* .hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  color:white;
} */

.section-bg{
  background:#2B1103;
  color:#DCC69C;
  padding-bottom:40px;
}

@media(max-width:992px){
  .logo-side{
    min-width:160px;
    padding:15px 10px;
  }
  .logo-link img{
    height:60px;
  }
  .topbar{
    display:none;
  }
  .main-header nav{
    flex-wrap:wrap;
    gap:18px;
    padding:18px 10px;
  }
  .book-btn{
    padding:12px 20px;
    font-size:14px;
  }
}

@media(max-width:768px){
  
  .section-bg {
    padding-bottom: 10px;
  }
  
  .main-header .container-fluid > div{
    flex-direction:column;
    align-items:center;
  }
  .logo-side{
    min-width:auto;
    padding:10px 0;
  }
  .header-right{
    width:100%;
  }
  .main-header nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    padding:14px 10px;
  }
}

.hero-section{
  position: relative;
}

.hero-carousel{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-image{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@media(max-width:992px) {
  .hero-image {
    height: auto;
    aspect-ratio: 4/5;
  }
  .hero-carousel {
    height: auto;
  }
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.carousel-inner,
.carousel-item{
  height: 100%;
}

.carousel-indicators{
  bottom: 20px;
  z-index: 5;
}

.carousel-indicators button{
  width: 25px !important;
  height: 25px !important;
  padding: 6px;  
  border: 1px solid transparent !important;
  background-color: transparent !important;
  background-image: url("../assets/images/Layer_x0020_1-1-200x300.avif") !important;
  background-size: 50% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.6;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}
.carousel-indicators button:hover{
  border: 1px solid #DCC69C !important;
  opacity: 1;
}

.carousel-indicators .active{
  opacity: 1;
  border: 1px solid #DCC69C !important;
}

@media(max-width:768px){
  .carousel-indicators button{
    width: 18px !important;
    height: 18px !important;
  }
}

.side-menu {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: #f9f7f1;
  z-index: 5000;
  transition: 0.4s ease;
  padding: 30px;
  overflow-y: auto;
}

.side-menu.active {
  right: 0;
}

.close-btn {
  color: #DCC69C;
  font-size: 40px;
  cursor: pointer;
  text-align: right;
}

.menu-image img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.menu-content img {
  display: block;
  margin: 0 auto; 
  height: 300px;    
  width: auto;
}

.menu-content p {
  margin-top: 20px;
  color: #DCC69C;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.menu-content p a {
  text-decoration: none;
  color: #DCC69C  ;
}

.menu-content p a:hover {
  color: #624d25;
}

.mobile-menu-links {
  display: none;
  margin-top: 30px;
}

.menu-toggle{
    background:none;
    border:none;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:1.5px;
    padding:0;
}

.menu-top{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:2px;
}

.menu-small-line{
    display:block;
    width:32px;
    height:1px;
    background:#DCC69C;
}

.menu-icon{
    width:15px;
    height:15px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
}

.menu-bottom-line{
    display:block;
    width:82px;
    height:1px;
    background:#DCC69C;
}

@keyframes leftLineAnim {
    0%{
        transform:scaleX(1);
        transform-origin:left;
    }
    45%{
        transform:scaleX(0);
        transform-origin:left;
    }
    46%{
        transform:scaleX(0);
        transform-origin:right;
    }
    100%{
        transform:scaleX(1);
        transform-origin:right;
    }
}

@keyframes rightLineAnim {
    0%{
        transform:scaleX(1);
        transform-origin:right;
    }
    45%{
        transform:scaleX(0);
        transform-origin:right;
    }
    46%{
        transform:scaleX(0);
        transform-origin:left;
    }
    100%{
        transform:scaleX(1);
        transform-origin:left;
    }
}
.menu-toggle:hover .menu-line-left{
    animation:leftLineAnim 1s cubic-bezier(.71,.29,.18,.97);
}

.menu-toggle:hover .menu-line-right{
    animation:rightLineAnim 1s cubic-bezier(.71,.29,.18,.97);
}


@media (max-width: 1200px) {
  .main-header{
    padding:0;
    min-height:auto;
  }

  .main-header .container-fluid > div{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:center !important;
    min-height:90px;
    padding:0 20px;
  }


.topbar,.main-header nav, .hotel-name{
    display:none !important;
  }

  .header-right{
    display:flex !important;
    align-items:center;
    justify-content:flex-end;
    width:auto;
    background:transparent !important;
  }

  .logo-side{
    min-width:auto;
    padding:0;
    display:flex;
    align-items:center;
  }

  .logo-link{
    display:flex;
    align-items:center;
  }

  .logo-link img{
    height:60px;
    width:auto;
    object-fit:contain;
  }

.side-menu{
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  padding: 25px;
  background: rgb(43, 17, 3);
  background-image: url("../assets/images/footer-background-image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.4s ease;
}

.side-menu.active{
  right: 0;
}
  .side-menu::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
}

.side-menu > *{
  position:relative;
  z-index:2;
}

  .mobile-menu-links{
    display:block;
  }

  .menu-content{
    display:none;
  }

  .menu-image{
    display:none;
  }

 .mobile-menu-links a{
  display:block;
  padding:5px 0;
  color:#c5ae83;
  text-decoration:none;
  font-size:46px;
  font-weight: 400;
  line-height: 1.17em;
  text-align:center;
  border:none !important;
  box-shadow:none !important;
  background:transparent;
  transition:color 0.3s ease;
}

.mobile-menu-links a::after,
.mobile-menu-links a::before{
  display:none !important;
  content:none !important;
}

.mobile-menu-links a:hover{
  color:#c89b5e;
  padding-left:0;
}
  .mobile-menu-links a:hover{
    color:#c89b5e;
  }

  .close-btn{
    color:#6b4a12;
    font-size:38px;
    text-align:right;
    cursor:pointer;
  }
}

@media (max-width: 576px){
  .logo-link img{
    height:60px;
  }
  .mobile-menu-links a {
    line-height: 1.17em !important;
  }
}

.about-header{
  position: relative !important;
  background: #2B1103 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

.about-header.scrolled{
  background: #2B1103 !important;
}

.about-hero{
  width: 100%;
  overflow: hidden;
}
.about-hero-image{
  width: 100%;
  height: auto;

  display: block;
  object-fit: cover;
}

.youtube-facade {
  position: relative;
  cursor: pointer;
  background-color: #000;
}

.youtube-facade img {
  transition: opacity 0.3s ease;
}

.youtube-facade:hover img {
  opacity: 0.85; /* Visual feedback on hover */
}

/* Central Play Button Overlay */
.youtube-facade .facade-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background-color: rgba(33, 33, 33, 0.8);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0, 0, 0.2, 1);
  z-index: 2;
}

/* Triangle inside the play button */
.youtube-facade .facade-play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 20px;
  border-color: transparent transparent transparent #fff;
}

/* Turns the button red on hover, matching YouTube's branding */
.youtube-facade:hover .facade-play-btn {
  background-color: #f00;
}

.heritage-capital{
  color:#dcc69c;
  text-align:center;
  font-size:12px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.44em;
  letter-spacing: .57em;
  font-family: "Roboto", Sans-serif ;
}

.heritage-title{
  color:#DCC69C;
  font-size:30px;
  font-weight: 400;
  line-height:1.2em;
}

.heritage-para {
    font-size: 18px;
    text-align: center;
}

@media(max-width:767px){
  .heritage-capital{
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: .4em;
  margin-bottom: 15px;
  }
}

@media(max-width:767.98px) {
  .custom-title {
    font-size: 18px;
  }
}

.room-section{
    background:#2B1103;
    overflow:hidden;
}

.room-wrapper{
    flex-wrap:nowrap;
}

.room-col{
    min-width:0;
    flex:1 1 0;
}

.room-card{
    text-align:center;
}

.room-card picture{
    display:block;
    position:relative;
    border:2px solid transparent;
    overflow:hidden;
    padding:0;
    transition:
        padding 2.0s ease,
        border-color .4s ease;
}

.room-img{
    width:100%;
    height:auto;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.room-content{
    padding-top:25px;
}

.room-content h3{
    color:#e1d1b2;
    font-family:"Arimo",sans-serif;
    font-size:12px;
    font-weight:400;
    letter-spacing:.4em;
    line-height:1.66;
    margin-bottom:3px;
    text-transform: uppercase;
}

.room-content p{
    color:#e1d1b2;
    font-family:"Arimo",sans-serif;
    font-size:12px;
    font-weight:400;
    line-height:1.66;
}

@media (min-width:992px){
    .room-card:hover picture{
        border-color:#DCC69C;
        padding:5px;
    }
}

@media (max-width:991px){
    .room-wrapper{
        flex-wrap:wrap;
        gap:20px 0;
    }

    .room-col{
        flex:0 0 25%;
        max-width:25%;
    }

    .room-card picture{
        padding:0;
        border:none;
    }

    .room-card:hover picture{
        border:none;
    }

    .room-card:hover .room-img{
        transform:none;
    }

    .room-content{
        padding-top:18px;
    }
}

@media (max-width:767px){
    .room-wrapper{
        display:block;
    }

    .room-col{
        max-width:100%;
        width:100%;
        margin-bottom:30px;
    }

    .room-img{
        width:100%;
        margin: auto
    }

    .room-card picture{
        padding:0;
        border:none;
    }

    .room-content{
        padding-top:18px;
    }

    .room-content h3{
        font-size:12px;
        letter-spacing: .4em;
    }

    .room-content p{
        font-size:12px;
    }
}

.amenities-section{
  background: #2B1103;
  overflow: hidden;
}

.amenities-grid{
  position: relative;
}

.amenity-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 47px 0px 47px 0px;
  position: relative;
}

.amenity-card::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #DCC69C30;
}

.amenities-grid .col-lg-3:nth-child(4n) .amenity-card::after{
  display: none;
}
.amenities-grid .col-lg-3:nth-child(-n+4){
  border-bottom: 1px solid #DCC69C30;
}

.amenity-card img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.9;
  color: #dac5a0;
  margin-bottom: 10px;
}

.amenity-card h3{
  color: #e1d1b2;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  font-family: 'Crimson Pro', Sans-serif;
}

@media(max-width:992px){
  .amenity-card{
    min-height: 180px;
    padding: 35px 20px;
  }

  .col-lg-3:nth-child(-n+4){
    border-bottom: none;
  }

  .col-6:nth-child(-n+6){
    border-bottom: 1px solid #DCC69C30;
  }

  .col-lg-3:nth-child(4n) .amenity-card::after{
    display: block;
  }

  .col-6:nth-child(2n) .amenity-card::after{
    display: none;
  }

  .col-6:nth-last-child(-n+2) .amenity-card{
    border-bottom: none;
  }
}

@media(max-width:767.98px){

  .amenity-card{
    padding: 28px 15px;
  }

  .amenity-card img{
    width: 34px;
    height: 34px;
    margin-bottom: 22px;
  }

  .amenity-card h3{
    font-size: 16px;
    line-height: 1.5;
  }
}

.sequence-section{
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B1103;
}

#hero-canvas{
    width: 100%;
    max-height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    display: block;
    
}

.featured-capital {
  font-size: 12px;
  font-family: "Arimo",Sans-serif;
  color: #e1d1b2;
  line-height: 1.66;
  letter-spacing: 0.4em;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.featured-logos{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  align-items:center;
  justify-items:center;
}

.featured-logos img{
  max-width:140px;
  width:100%;
  height:auto;
  object-fit:contain;
}

@media(max-width:992px){
  .featured-logos{
    grid-template-columns:repeat(2,1fr);
    gap:35px 20px;
  }

  .featured-logos img{
    max-width:160px;
  }

  .featured-logos,
  .featured-logos img,
  .featured-logos div{
    border:none !important;
    box-shadow:none !important;
  }
}

@media(max-width:768px){
  .featured-logos img{
    margin-top: 20px;
    max-width:120px;
  }
}

.test-carousel .carousel-fade .carousel-item {
    background: #2b1103;
}
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
    background: #2B1103;
}
.testimonial-text{
    color:#DCC69C;
    font-size:30px;
    font-weight: 400;
    line-height:1.17;
    max-width:900px;
    margin:0 auto 30px;
}

.testimonial-name{
    color:#E1D1B2;
    font-size:18px;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
    opacity:1;
    top:50%;
    transform:translateY(-50%);
}

.carousel-control-prev{
    left:-80px;
}

.carousel-control-next{
    right:-80px;
}

.carousel-control-prev img,
.carousel-control-next img{
    width:80px;
    height:auto;
    transition:.2s ease-in-out;
}

.carousel-control-prev:hover img,
.carousel-control-next:hover img{
    transform:scale(.85);
    opacity:.8;
}

/* Remove bootstrap icons */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}

/* Tablet */

@media(max-width:992px){
    .testimonial-text{
        font-size:20px;
    }
   .carousel-control-prev,
    .carousel-control-next{
        display: none ;
    }
}

/* Mobile */

@media(max-width:768px){
    .testimonial-text{
        font-size:16px;
        line-height:1.7;
    }

    .testimonial-name{
        font-size:16px;
    }

    .carousel-control-prev{
        left:0;
    }

    .carousel-control-next{
        right:0;
    }
}

.why-choose-kaladwas-text {
  font-family: "Roboto" , Sans-serif;
  text-align: center;
  font-size: 15px !important;
  color: #DCC69C9E;
  line-height: 1.7;
}

.why-choose-kaladwas-text a {
  color:#e1d1b2;
  font-family: "Roboto" , Sans-serif;
  text-decoration:none;
  transition:0.3s ease;
}

.why-choose-kaladwas-text a:hover {
  color: #624d25;
}

.special-card{
  background: #2B1103;
  border: 1px solid #DCC69C30;
  height: 100%;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;  
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: all 0.3s ease;
}

.special-card img{
  display: block;
  width: auto;
  height: 35px;
  max-width: 100%;
  object-fit: contain;
  transition: 0.4s ease;
  margin-bottom: 5px;
}

.special-card:hover img{
  transform: scale(0.95);
}

.special-card-heading {
  color: #DCC69C;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: bolder;
}

.read-more-link{
  color: #DCC69C9E !important;
  font-weight: 500 !important;
}

.about-text-side{
  background: #f5f5f5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 80px;
  text-align: center;
}

.about-text-side h2{
  color: #6A4D18;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 15px;
}

.about-text-side p{
  color: #6A4D18;
  font-size: 18px;
  line-height: 1.7;
}

.about-image-side{
  height: 100%;
}

.about-image-side img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media(min-width:992px){
  .about-text-side,
  .about-image-side{
    min-height: 400px;
  }
}

@media(max-width:992px){
  .about-text-side{
    padding: 50px 120px;
  }
  .about-image-side img{
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media(max-width:767.98px){
  .about-text-side{
    padding: 42px 20px;
  }
  .about-text-side h2{
    font-size: 28px;
    margin-bottom: 22px;
  }
  .about-text-side p{
    line-height: 1.5;
  }
  .about-image-side img{
    height: auto;
    padding: 0;
  }
}

.rooms-card{
    text-align:center;
    height:100%;
}

.rooms-img{
    width:100%;
    display:block;
}

.rooms-content{
    padding-top:20px;
    text-align: start;
}

.rooms-heading{
    color:#DCC69C;
    font-size:30px;
    font-weight: 400;
    margin-bottom:10px;
}

.rooms-subtitle {
    color: #dcc69c;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.44em;
    letter-spacing: .3em;
    font-family: "Roboto", Sans-serif;
    text-align: start;
}

.rooms-description{
    color:#e1d1b2;
    font-size:18px;
    line-height:1.6;
    margin-bottom:0;
}

@media (max-width:767.98px){
    .rooms-content{
        padding-top:15px;
    }
}

.haveli-block-section .container{
  margin-bottom: 130px;
}

.haveli-block-section .container:last-child{
  margin-bottom: 0;
}

@media(max-width:992px){
  .haveli-block-section .container{
    margin-bottom: 35px;
  }
}

@media(max-width:767.98px){
  .haveli-block-section .container{
    margin-bottom: 0;
  }
}

.gallery-img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-img:hover{
  transform: scale(1.02);
}

.lg-container,
.lg-outer,
.lg-backdrop{
  z-index: 999999 !important;
}

.lg-backdrop{
  background: rgba(0,0,0,0.55) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1 !important;
}

body.lg-on .main-header,
body.lg-on .about-header{
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

.lg-image{
  object-fit: contain;
}

@media(max-width: 768px) {
  .gallery-img {
    aspect-ratio: unset;
  }
}

.blog-main-heading{
  color: #DCC69C;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.blog-card{
  height: 100%;
  background: transparent;
}

.blog-image{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.blog-content{
  padding-top: 24px;
}

.blog-title{
  color: #DCC69C;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 18px;
}

.blog-text{
  color: #e1d1b2;
  font-size: 18px;
  line-height: 1.5rem;
  margin-bottom: 22px;
}

.read-more-btn{
    display:inline-flex;
    flex-direction:column;
    align-items:start;
    gap:2px;
    color:#DCC69C;
    text-decoration:none;
    transition:all .35s ease;
}

.read-more-btn:hover .diamond{
    transform:rotate(225deg) scale(1.2);
}
.read-more-btn:hover .line:first-child{
    animation: lineBlink 1.5s ease;
}

.read-more-btn:hover .line:last-child{
    animation: lineBlink 1.5s ease 0.15s;
}

@keyframes lineBlink{
    0%{
        opacity:1;
    }
    50%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
.btn-text{
    font-size:18px;
    font-weight: 400;
    border-bottom:1px solid #DCC69C;
    padding-bottom:2px;
}

.btn-decoration{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:3px;
}

.btn-decoration .line{
    width:26px;
    height:1px;
    background:#DCC69C;
}

.btn-decoration .diamond{
    width:6px;
    height:6px;
    background:#DCC69C;
    transform:rotate(45deg);
}

@media(max-width:768px){
  .blog-section{
    padding: 60px 0;
  }
  .blog-main-heading{
    font-size: 28px;
  }
  .blog-title{
    font-size: 28px;
  }
  .blog-text{
    font-size: 18px;
    line-height: 1.5rem;
  }
  .blog-content{
    padding-top: 18px;
  }
}

.custom-img{
  width: 100%;
  max-height: 40px;
  object-fit: contain;
  display: block;
  margin: 0 auto;

  margin-bottom: 15px;
}

.contact-section{
  background: #2B1103;
  padding: 40px 0;
}

.contact-heading{
  color:#DCC69C;
  font-size:54px;
  font-weight: 400;
  line-height:1.2;
}

.custom-input{
  background: transparent !important;
  border: 1px solid rgba(220,198,156,0.4) !important;
  color: #E1D1B2 !important;
  border-radius: 0;
  padding: 16px 20px;
  font-size: 18px;
  box-shadow: none !important;
}

.custom-input::placeholder{
  color: #E1D1B2;
}

.custom-textarea{
  resize: none;
}

.custom-input:focus{
  border-color: #DCC69C !important;
  background: transparent !important;
}

.g-recaptcha{
  transform-origin: center;
}

.send-btn{
   background: #2B1103;
  color: #DCC69C;
  border: 1px solid #DCC69C;
  padding: 12px 62px;
  font-size: 18px;
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0 0 0 3px #2B1103,
              0 0 0 4px #DCC69C;
}

@media(max-width:768px){
  .contact-section{
    padding: 60px 0;
  }
  .contact-heading{
    font-size: 30px;
  }
  .custom-input{
    padding: 14px 16px;
  }
  .captcha-box{
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
}

.map-section{
  overflow: hidden;
  padding: 0 10px 40px;
}

.map-section iframe{
  width: 100%;
  height: 550px;
  display: block;
  border: none;
}

@media(max-width:992px){
    .map-section{
    padding: 0 0 30px;
  }
  .map-section iframe{
    height: 420px;
  }
}

@media(max-width:768px){
  .map-section{
    padding: 0 0 30px;
  }
  .map-section iframe{
    height: 320px;
  }
}

.health-main-heading{
  font-size:54px;
  font-weight: 400;
  color:#DCC69C;
  font-family:'Crimson Pro', serif;
  text-align:left; 
  margin-bottom:20px;
}

.health-heading{
    font-size:18px;
    font-weight: bolder;
  }

.health-text{
    font-size:18px;
    line-height:1.5;
  }

@media(max-width:767.98px){
  .health-section{
    padding-top:60px !important;
    padding-bottom:60px !important;
  }
  .health-main-heading{
    font-size:28px;
  }
}

.terms-main-heading{
  font-size:46px;
  font-weight: 400;
  line-height: 1.17em;
  color:#dcc69c;
  font-family:'Crimson Pro', serif;
  text-align:left;
}

.terms-text{
  font-size:18px;
  line-height:1.5;
  font-family: 'Roboto', Sans-serif;
  color:#A7865A;
}

.terms-list{
  padding-left:40px;
  margin-top:40px;
  font-size: 18px;
  line-height:1.5;
  font-family: 'Roboto', Sans-serif;
  color:#A7865A;
}

.terms-item{
  font-size:18px;
  line-height:1.5;
  color:#A7865A;
  font-family: 'Roboto', Sans-serif;
  margin-bottom:40px;
  padding-left:10px;
}

.terms-title{
  font-weight:400;
  color:#A7865A;
  font-family: 'Roboto', Sans-serif;
  font-size:18px;
  line-height:1.5;
}

.privacy-main-heading{
  font-size:46px;
  font-weight: 400;
  color:#DCC69C;
  font-family:'Crimson Pro', Sans-serif;
  text-align:left;
}

.custom-text{
  color:#e1d1b2;
}

.privacy-text{
  font-size:18px;
  line-height:1.5;
  color:#A7865A;
  margin-bottom:0;
}

.privacy-list{
  padding-left:40px;
  margin-top:40px;
}

.privacy-item{
  font-size:18px;
  line-height:1.3;
  color:#A7865A;
  margin-bottom:40px;
  padding-left:10px;
}

.privacy-title{
  font-weight:400;
  color:#A7865A;
}

.reservation-main-heading{
  font-size:46px;
  font-weight: 400;
  color:#DCC69C;
  font-family:'Crimson Pro', serif;
  text-align:left;
}

.reservation-text{
  font-size:18px;
  line-height:1.5;
  color: #A7865A;
  margin-bottom:0;
}

.main-heading {
    font-size: 46px;
    font-weight: 400;
    color: #DCC69C;
}

.accordion,
.accordion-item,
.accordion-button,
.accordion-body{
    background: transparent !important;
    color: #DCC69C !important;
    box-shadow: none !important;
}

.faq-item{
    border-bottom:1px solid rgba(220,198,156,.4) !important;
}

.faq-question{
    font-size:20px !important;
    font-weight:400 !important;
    color:#DCC69C !important;
    font-family:'Crimson Pro', serif !important;
    padding:20px 0 !important;
}

.faq-answer{
    font-size:16px;
    color:#DCC69C;
    line-height:1.6;
    opacity:.9;
    padding:0 0 20px 0 !important;
}

.accordion-button:not(.collapsed){
    background:transparent !important;
    color:#DCC69C !important;
}

.accordion-button::after {
    filter: invert(82%) sepia(17%) saturate(434%) hue-rotate(353deg);
    color: #DCC69C !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

@media(max-width:768px){

  .main-heading {
    font-size: 36px;
  }
    .faq-question{
        font-size:18px !important;
    }
    .faq-answer{
        font-size:15px;
        line-height:1.5;
    }
}

.blog-detail-section{
  padding-bottom:80px;
  min-height:100vh;
}

.blog-image-wrapper{
  overflow:hidden;
  border:1px solid rgba(220,198,156,0.15);
}

.blog-detail-image{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  transition:0.5s ease;
}

.blog-detail-heading{
  font-size:52px;
  font-weight:400;
  line-height:1.2;
  margin-bottom:30px;
  color:#e6d1a8;
  font-family:'Crimson Pro', serif;
}

.blog-detail-body{
  color:#c5ae83;
  font-size:18px;
  line-height:1.9;
  font-family:"Roboto", sans-serif;
}

.blog-detail-body p{
  margin-bottom:22px;
}

.blog-detail-body h2{
  font-size:30px;
  color:#e6d1a8;
  margin-top:50px;
  margin-bottom:20px;
  font-family:'Crimson Pro', serif;
}

.blog-detail-body h3{
  font-size:28px;
  color:#e6d1a8;
  margin-top:40px;
  margin-bottom:18px;
  font-family:'Crimson Pro', serif;
}

.blog-detail-body h4{
  font-size:24px;
  color:#e6d1a8;
  margin-top:30px;
  margin-bottom:15px;
  font-family:'Crimson Pro', serif;
}

.blog-detail-body ul,
.blog-detail-body ol{
  padding-left:25px;
  margin-bottom:25px;
}

.blog-detail-body li{
  margin-bottom:12px;
  color:#c5ae83;
}

.blog-detail-body a{
  color:#e6d1a8;
  text-decoration:none;
  border-bottom:1px solid rgba(230,209,168,0.5);
  transition:0.3s ease;
}

.blog-detail-body img{
  width:100%;
  height:auto;
  border-radius:6px;
  margin:35px 0;
}

.blog-detail-body blockquote{
  border-left:3px solid #DCC69C;
  padding-left:20px;
  margin:35px 0;
  color:#e6d1a8;
  font-style:italic;
  font-size:22px;
  line-height:1.7;
  font-family:'Crimson Pro', serif;
}

.post-navigation{
  margin-top:60px;
  gap:20px;
}

.post-link{
  position:relative;
  display:inline-block;
  color:#DCC69C;
  font-size:20px;
  font-weight: 400;
  padding-bottom:18px;
  transition:0.3s ease;
  font-family:'Crimson Pro', serif;
}

.post-link::before{
  content:"";
  position:absolute;
  left:0;
  bottom:10px;
  width:100%;
  height:1px;
  background:#DCC69C;
}

.post-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:12px;
  background:
    linear-gradient(#DCC69C,#DCC69C) left center/42% 1px no-repeat,
    linear-gradient(#DCC69C,#DCC69C) right center/42% 1px no-repeat;
}

.post-link span{
  position:absolute;
  left:50%;
  bottom:-3px;
  width:8px;
  height:8px;
  border:1px solid #DCC69C;
  transform:translateX(-50%) rotate(45deg);
}

.post-link-title{
  display:block;
  margin-top:10px;
  font-size:16px;
  font-weight:400;
  color:#c5ae83;
  line-height:1.5;
}

@media(max-width:992px){
  .blog-detail-section{
    padding-bottom:60px;
  }
  .blog-detail-heading{
    font-size:42px;
  }
  .blog-detail-body{
    font-size:18px;
  }
  .blog-detail-body h2{
    font-size:30px;
  }
  .blog-detail-body h3{
    font-size:26px;
  }
}

@media(max-width:767px){

  .blog-detail-section{
    padding-bottom:40px;
  }
  .blog-detail-heading{
    font-size:34px;
    line-height:1.3;
  }
  .blog-detail-body{
    font-size:18px;
    line-height:1.8;
  }
  .blog-detail-body h2{
    font-size:30px;
  }
  .blog-detail-body h3{
    font-size:24px;
  }
  .blog-detail-body h4{
    font-size:22px;
  }
  .post-navigation{
    align-items:flex-start;
  }
  .post-link{
    font-size:18px;
  }
  .read-more-btn{
    width:100%;
  }
}

.room-detail-heading{
  font-size:54px;
  font-weight: 400;
  color:#DCC69C;
  font-family:'Crimson Pro', serif;
  margin-bottom:10px;
}

.room-detail-subheading{
  font-size:28px;
  font-weight:400;
  color:#A7865A;
  margin-bottom:20px;
  font-family:'Roboto', serif;
}

.room-detail-text{
  font-size:18px;
  line-height:1.3;
  font-family:'Roboto', serif;
  color:#A7865A;
  margin-bottom:20px;
  padding-right: 300px;
}

@media(max-width:992px) {
  .room-detail-text {
    padding: 0;
  }
  .room-detail-heading {
 margin-bottom:20px;
  }
 
}

.room-gallery-section{
  background:#2B1103;
  position:relative;
  z-index:1;
  padding-right: 300px;
}

.room-gallery-img{
  width:100%;
  height:auto;
  aspect-ratio: 1/1;
  object-fit:cover;
  display:block;
  cursor:pointer;
  transition:0.4s ease;
}

.room-gallery-section a{
  display:block;
  overflow:hidden;
}

.lg-container,.lg-outer,.lg-backdrop{
  z-index:999999 !important;
}

.lg-backdrop{
  background:rgba(0,0,0,0.55) !important;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  opacity:1 !important;
}

body.lg-on .main-header,
body.lg-on .about-header{
  background:transparent !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  box-shadow:none !important;
  border-bottom:none !important;
}

.lg-image{
  object-fit:contain;
}

@media(max-width:992px){
  .room-gallery-section{
    padding: 0;
  }
}

@media(max-width:768px){
  .room-gallery-img {
    aspect-ratio: unset;
  }
}

.amenities-line{
  border: 1px solid #e1d1b2;
  margin-bottom:60px;
}

.amenities-heading{
  font-size:24px;
  font-weight: 400;
  color:#DCC69C;
  font-family:'Crimson Pro', serif;
  margin-bottom:20px;
}

.rooms-amenity-item{
  margin-bottom:8px;
}

.rooms-amenity-icon{
  font-size: 24px;
  color:#e1d1b2;
  min-width:40px;
}

.rooms-amenity-text{
  font-size:18px;
  color:#e1d1b2;
  font-family:'Crimson Pro', serif;
}

.special-number{
    font-size:72px;
    line-height:1;
    color:rgba(220,198,156,.18);
    font-weight:700;
    min-width:80px;
}

.special-title{
    color:#DCC69C;
    font-size:24px;
    line-height:1.5;
    margin:0;
    font-weight:400;
}

@media(max-width:768px){
    .special-number{
        font-size:48px;
        min-width:55px;
    }
    .special-title{
        font-size:18px;
    }
}

.booking-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.booking-text p {
  font-size: 20px;
  font-weight: 400;
}

.booking-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.booking-item {
  text-align: center;
  flex: 1;
}

.booking-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: 0.3s;
}

.booking-item p {
  font-size: 16px;
  margin: 0;
}

.rooms-timelines-timeline {
  position: relative;
}

.rooms-timelines-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #DCC69C;
  z-index: 1;
}

.rooms-timeline-item {
  max-width: 1000px;
  margin: 100px auto 0 auto;
  position: relative;
  z-index: 2;
}

.rooms-timeline-img {
  width: 100%;
  object-fit: cover;
}

.timeline-col {
  position: relative;
  min-height: auto;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #DCC69C;
  z-index: 3;
}

.rooms-timeline-content a {
  text-decoration: none;
  color: #DCC69C;
}

@media (max-width: 767.98px) {
  
  .rooms-timelines-timeline::before {
    display: none;
  }
  .rooms-timeline-item {
    margin: 40px auto 0 auto;
  }
  .timeline-col {
    display: none;
  }
  .rooms-timeline-content {
    text-align: center !important;
    margin-top: 10px;
  }
  .rooms-timeline-content p {
    text-align: center !important;
    margin: 0 auto !important;
  }
  .rooms-timeline-img {
    width: 100%;
    height: auto;
  }
    .booking-icons {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .booking-item {
    flex: 0 0 45%;
    margin-bottom: 20px;
  }
     .btn-primary-custom {
      font-size: 18px;
      background-color: #DCC69C;
      color: #2B1103;
      padding: 5px 10px;
      border-radius: 5px;
    }
    body{
        padding-bottom: 40px;
    }
}

.heritage-box{
    background:#f5f5f5;
    min-height:600px;
    padding:0 0 0 60px;
    overflow:hidden;
}

.heritage-image-wrapper{
    height:600px;
}

.heritage-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.heritage-content{
    height:600px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:60px 100px 60px 120px;
}

.heritage-content h1{
    color:#6A4D18;
    font-size:40px;
    font-weight:400;
    line-height:1.2;
    margin-bottom:20px;
}

.heritage-content p{
    color:#6A4D18;
    font-size:18px;
    line-height:1.5;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .heritage-box{
        padding: 0 30px 0 30px;
    }
    .heritage-box .row{
        display: flex;
        flex-direction: column-reverse;
    }
    .heritage-content{
        height: auto;
        padding: 50px 40px;
    }
    .heritage-image-wrapper{
        height: 450px;
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 0;
    }
}
/* TABLET */
@media (max-width: 767.98px) {
    .heritage-box{
        padding: 0;
    }
    .heritage-box .row{
        display: flex;
        flex-direction: column-reverse;
    }
    .heritage-content{
        height: auto;
        padding: 30px 20px;
    }
    .heritage-image-wrapper{
        height: 300px;
        margin: 0;
    }
    .heritage-content h1{
        font-size: 28px;
    }
    .heritage-content p{
        font-size: 18px;
        line-height: 1.5;
    }
}

.attraction-title {
    color: #DCC69C;
    font-weight: 500;
    font-size: 24px;
}

.attraction-para {
  color: #dcc69c;
  font-size: 18px;
}

.health-text{
    font-size:18px;
    line-height:1.5;
    color: #E1D1B2;
  }


.sub-heading-small {
  font-family: 'Arimo',Sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: .4em;
  color: #e1d1b2;
  margin-bottom: 20px;
}

.attraction-card{
    background:#2B1103;
    max-width: 320px;
    border:1px solid rgba(220,198,156,.25) !important;
    border-radius:16px;
}

.attraction-img{
    aspect-ratio: 1/0.6;;
    object-fit:cover;
}

.attraction-icon img{
    width:28px;
}

.attraction-highlight{
    background:#2B1103;
    border:1px solid rgba(220,198,156,.25) !important;
    border-radius:16px;
}

.highlight-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#3b1a08;
    color: #DCC69C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.divider-small {
    height: 1px;
    background: #DCC69C50;
    margin: 10px 0;
}

@media(max-width:767.98px) {
  .attraction-card {
    align-items: center;
    justify-content: center;
    margin: auto;
  }
}

.error-wrapper{
      width:100%;
      padding:20px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
    }

    .error-code{
      font-size:240px;
      font-weight:500;
      line-height:0.8;
      color:rgba(120,55,25,0.35);
      letter-spacing:8px;
    }

    .error-title{
      font-size:74px;
      font-weight:500;
      color:#d8be8c;
      margin-top:20px;
      line-height:1.1;
    }

    .error-text{
      margin-top:15px;
      font-size:20px;
      line-height:1.6;
      color:#e2d0aa;
      max-width:760px;
    }

    @media(max-width:992px){
      .error-code{
        font-size:170px;
      }
      .error-title{
        font-size:56px;
      }
      .error-text{
        font-size:18px;
      }
    }
    
    @media(max-width:768px){
      .error-code{
        font-size:110px;
      }
      .error-title{
        font-size:40px;
        margin-top:-15px;
      }
      .error-text{
        font-size:17px;
        line-height:1.7;
        margin-top:25px;
      }
    }

.footer-highlight a{
  color:#e1d1b2;
  text-decoration:none;
  transition:0.3s ease;
  font-weight: bolder;
}

.footer-highlight a:hover{
  color:#624d25;
}

.main-footer{
    background:#2B1103;
    color:#DCC69C;
    font-family:'Crimson Pro', serif;
}

.footer-wrapper{
    max-width:1700px;
    margin:0 auto;
    padding-left:80px;
    padding-right:80px;
}

.footer-top{
    background-color:#2B1103;
    background-image:url("../assets/images/footer-background-image.webp");
    background-repeat:no-repeat;
    background-position:center bottom;
    background-size:contain;
    padding:180px 0 20px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
}

.footer-left,
.footer-right{
    flex:1;
}

.footer-left h4{
  font-size: 24px;
  font-weight: 400;
  color: #DCC69C;
  line-height: 1.25em;
}

.footer-left p{
    font-size: 18px;
    text-align: start;
    color: #e1d1b2;
}

.footer-right{
    text-align:right;
}

.footer-right h4 {
  font-size: 20px;
  color: #DCC69C;
}

.footer-right p{
    font-size:14px;
    color: #e1d1b2;
    line-height: 1;
}

.footer-right p a {
  text-decoration: none;
  color: #e1d1b2;
}

.footer-right p a:hover {
  color: #624d25;
}

.footer-center{
    flex:0.9;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-center img{
    width:110%;
    max-width:1000px;
    height:auto;
    margin-bottom: 70px;
}

.social-links{
    display:flex;
    gap:10px;
    justify-content:flex-end;
    margin-top:10px;
}

.social-links a{
    width:30px;
    height:30px;
    border:1px solid rgba(220,198,156,.7);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#DCC69C;
    transition:.3s;
}

.social-links a i{
    font-size:16px;
}

.social-links a:hover{
    background:#DCC69C;
    color:#2B1103;
    transform:translateY(-3px);
}

.footer-line{
    border:none;
    border-top:1px solid rgba(220,198,156,.25);
    margin:0;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    padding:40px 0;
}

.footer-links a{
    color: #e1d1b2;
    text-decoration:none;
    font-size:16px;
    padding:0 4px;
}

.footer-links a:hover {
  color: #624d25;
}

.footer-bottom{
    max-width:1400px;
    margin:0 auto;
    padding:40px 0;
    text-align:center;
}

.footer-bottom h4{
    font-size:17px;
    margin-bottom:25px;
    font-style:italic;
    color: #e1d1b2;
}

.footer-bottom h4 a{
    color:#DCC69C;
    text-decoration:none;
}

.footer-bottom h4 a:hover{
    color:#6b4a12;
}

.footer-bottom p{
    font-size:15px;
    line-height:1.7;
    color:#DCC69C9E;
    font-weight: 400;
}

@media(max-width:992px){
    .footer-wrapper{
        padding-left:25px;
        padding-right:25px;
    }
    .footer-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap: 20px;
    }
    .footer-center{
        order:-1;
    }
    .footer-left {
      text-align:center;
        padding-left: 35px;
        padding-right: 35px;
    }
    .footer-right{
        text-align:center;
        padding-left: 20px;
        padding-right: 20px;
    }
    .social-links{
        justify-content:center;
    }
    .footer-center img{
        max-width:350px;
        width: 100%;
    }
    .footer-bottom p{
        font-size:15px;
    }
}

@media(max-width:767px){
    .footer-wrapper{
        padding-left:15px;
        padding-right:15px;
    }
    .footer-top{
        background-size:contain;
        padding:50px 0 20px;
    }
    .footer-left, .footer-right {
      padding: 0;
    }
    .footer-left p {
      text-align: center;
    }
    .footer-right p{
      font-size: 18px;
    }
    .footer-links a{
        font-size:16px;
    } 
    .footer-bottom {
      padding-bottom: 0;
    }
    .footer-bottom p{
        font-size:15px;
        line-height:1.7;
    }
}

.floating-icons{
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1000;
}

.floating-icons a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.floating-icons img{
  width: 50px;
  height: 50px;
  display: block;
  transition: 0.3s ease;
  border-radius: 50%;
}

.whatsapp-icon{
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.whatsapp-icon i{
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.floating-icons a:hover img,
.whatsapp-icon:hover{
  transform: scale(1.08);
}

@media(max-width:992px){
  .floating-icons{
    right: 18px;
    bottom: 20px;
    gap: 14px;
  }
  .floating-icons img,
  .whatsapp-icon{
    width: 45px;
    height: 45px;
  }
  .whatsapp-icon i{
    font-size: 26px;
  }
}

@media(max-width:767px){

  .floating-icons{
    right: 14px;
    bottom: 62px;
    gap: 12px;
  }
  .floating-icons img,
  .whatsapp-icon{
    width: 40px;
    height: 40px;
  }
  .whatsapp-icon i{
    font-size: 22px;
  }
}

.mobile-booking-bar{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2B1103;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999999;
    box-shadow: 0 -3px 10px rgba(0,0,0,.25);
}

.booking-text{
    color: #e1d1b2;
    font-size: 18px;
    flex: 1;
}

.mobile-booking-bar .btn-primary-custom{
    width: auto;
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .mobile-booking-bar{
        display: none !important;
    }
}

