@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #b78500;
    --secondary-color: #ffd45a;
    --light-color: #f3f3f3;
    --dark-color: #333;
    --black-color: #000;
    --white-color: #fff;
}

body{

    margin:0;
    padding:0;

}

.final{

    margin-bottom:0;

}

footer{

    margin-top:0;
    margin-bottom:0;

}

a,
a:hover {
    text-decoration: none;
}

.bg-light-gray {
    background: #f6f6f4;
}



.topMenuMain {
    background: var(--primary-color);
}

.topMenu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0.5rem 0;
}

.topMenu li {
    list-style: none;
    margin: 0 0.75rem;
}

.topMenu a {
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.topMenu a:hover {
    color: var(--secondary-color);
}
/* ==========================================
TOP MENU RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .topMenu{
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 10px 5px;
    }

    .topMenu li{
        margin: 0;
    }

    .topMenu a{
        font-size: 14px;
        white-space: nowrap;
    }

}





header {
    position: relative;
    background: var(--secondary-color);
}


.bannerSection {
    height: 400px;
    overflow: hidden;
}

/*.banner-slider {*/
/*    height: 100%;*/
/*}*/

/*.banner-slider .slick-slide {*/
    /* height: 600px; */
/*    aspect-ratio: 21 / 9;*/
/*}*/

/*.banner-slider img {*/
/*    width: 100%;*/
/*    height: 500px;*/
/*    object-fit: cover;*/
    /* keeps image centered + cropped */
/*    object-position: center;*/
    /* center align image */


.hero-card {
    position: relative;
    padding: 4rem 2rem;
    transition: transform 0.3s ease;
}

.top-ornament {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffd45a, #b78500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-tagline {
    color: var(--primary-color);
    font-size: 1.25rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* Artistic Divider */
.divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    width: 200px;
}

.center-star {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 20px;
    filter: drop-shadow(0 0 5px rgba(179, 139, 77, 0.3));
}

.description {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--dark-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Item */
/* Service Item */

.serviceItem {

    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border: 1px dashed rgba(179, 139, 77, 0.3);

    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);

    transition: box-shadow .35s, transform .35s;

    margin: 1.5rem 0;

    min-height: 260px;

    position: sticky;

    top: 100px;

    border-radius: 1.5rem;

}
#card-1 {
    --index: 1
}

#card-2 {
    --index: 2
}

#card-3 {
    --index: 3
}

#card-4 {
    --index: 4
}

#card-5 {
    --index: 5
}

.serviceItem:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    transform: translateY(-5px);
}

.serviceItem .serviceItem-img {
    order: 1;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    overflow: hidden;
}

.serviceItem .serviceItem-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* ensure perfect centering */
    display: block;
}

.serviceItem .serviceItem-body {
    order: 2;
    background: #fdfaf0;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.serviceItem .serviceItem-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.serviceItem .serviceItem-body h5 {
    font-size: 1rem;
    font-style: italic;
    color: var(--primary-color);
}

.serviceItem .serviceItem-body p {
    font-size: 1.25rem;
    color: var(--dark-color);
    line-height: 1.6;
}

.serviceItem:nth-child(even) .serviceItem-body {
    order: 1;
}

.serviceItem:nth-child(even) .serviceItem-img {
    order: 2;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px){

    .serviceItem{
        grid-template-columns:1fr;
        min-height:auto;
        position:relative;
        top:auto;
    }

    .serviceItem .serviceItem-body{
        padding:25px 20px;
    }

    .serviceItem .serviceItem-body h2{
        font-size:28px;
    }

    .serviceItem .serviceItem-body p{
        font-size:16px;
    }

    .serviceItem:nth-child(even) .serviceItem-body,
    .serviceItem:nth-child(even) .serviceItem-img{
        order:unset;
    }

}


.hc-hotel-card {
    background: var(--white-color);
    color: var(--dark-color);
    border-radius: 25px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hc-image-container {
    position: relative;
    height: 250px;
}

.hc-card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hc-overlay-top {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
}

.hc-badge-pill {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hc-heart-icon {
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
}

.hc-card-body {
    padding: 20px;
}

.hc-amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.hc-amenity-item {
    border: 1px solid #e9e7e0;
    background-color: rgba(215, 164, 19, 0.05);
    padding: 8px 5px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 5px;
    /* flex-direction: column; */
    align-items: center;
}

.hc-amenity-item i {
    font-size: 1.25rem;
    line-height: 1;
}

.hc-price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
}



.ritual-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    
}

.ritual-card {
    background: #15153b;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.ritual-card:hover {
    transform: translateY(-6px);
}

.card-icon-wrap {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #ddd;
}

.card-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #f4f4f4;
    font-size: 13px;
    font-weight: 600;
}

/* Tablet */
@media (max-width: 992px){

    .ritual-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

/* Mobile */
@media (max-width: 768px){

    .ritual-grid{
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ritual-card{
        padding: 20px 15px;
    }

    .card-title{
        font-size: 20px;
    }

    .card-text{
        font-size: 14px;
    }

}

.tour-book-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: rgba(184, 134, 11, 0.25) 0px 4px 20px;
    gap: 7px;
    background: linear-gradient(0deg, var(--primary-color), var(--secondary-color));
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    transition: 0.3s;
}

.tour-book-btn:hover {
    /* background: linear-gradient(0deg, var(--secondary-color), var(--primary-color)); */
    box-shadow: rgba(184, 134, 11, 0.75) 0px 6px 25px;
}

/* Roadmap */
.roadcard {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    min-width: 0;
    backdrop-filter: blur(6px);
    /* width: 350px; */
    /* position: absolute; */
    position: relative;
    box-shadow: 0 5px 24px 0 rgba(25, 29, 58, 0.1);
}

#lineDrawing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.roadcard .year {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px
}

.roadcard .title {
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--primary);
}

.roadcard .desc {
    margin: 0;
}

/* ==========================================
ROADMAP RESPONSIVE
========================================== */

/* Tablet */

@media (max-width: 991px){

    #lineDrawing{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

/* Mobile */

@media (max-width: 768px){

    #lineDrawing{
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .roadcard{
        padding: 1rem;
    }

    .roadcard .year{
        font-size: 14px;
    }

    .roadcard .title{
        font-size: 18px;
    }

    .roadcard .desc{
        font-size: 14px;
        line-height: 1.7;
    }

}

/* ====== TESTIMONIALS ====== */

/* .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px
} */


.tcard {
    height: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    border: 1.5px solid #ddd;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tcard:hover {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.tstars {
    color: #F59E0B;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.ttext {
    font-size: 15px;
    line-height: 1.75;
    color: var(--txt2);
    margin-bottom: 20px
}

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

.tavatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.tname {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy)
}

.trole {
    font-size: 12px;
    color: var(--txt3)
}

.tco {
    font-size: 11px;
    font-weight: 700;
    background: var(--off);
    color: var(--txt2);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 2px;
    border: 1px solid var(--border)
}
/* ==========================================
TESTIMONIAL RESPONSIVE
========================================== */

@media (max-width: 768px){

    .tcard{
        padding: 20px;
        border-radius: 8px;
    }

    .tstars{
        font-size: 14px;
        margin-bottom: 10px;
    }

    .ttext{
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .tauthor{
        gap: 10px;
    }

    .tavatar{
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .tname{
        font-size: 13px;
    }

    .trole{
        font-size: 11px;
    }

    .tco{
        font-size: 10px;
        padding: 2px 6px;
    }

}





/* ====== FINAL CTA ====== */
.final {
    background: linear-gradient(135deg, #b78500, #5e4608);
    padding: 40px 0 0;
    position: relative;
    overflow: hidden
}

.final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at center, rgba(194, 107, 0, 0.15), transparent)
}

.final h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    position: relative
}

.final h2 span {
    color: var(--secondary-color);
}

.final p {
    font-size: 17px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 36px;
    position: relative
}

.final-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative
}

.final-checks {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
    position: relative
}

.fcheck {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    font-weight: 500
}

.fcheck::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: 800
}
/* ==========================================
FINAL CTA RESPONSIVE
========================================== */

@media (max-width: 768px){

    .final{
        padding: 30px 0 0;
        text-align: center;
    }

    .final h2{
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .final p{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .final-btns{
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .final-btns a,
    .final-btns button{
        width: 100%;
        max-width: 320px;
    }

    .final-checks{
        gap: 12px;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .fcheck{
        font-size: 12px;
        justify-content: center;
    }

}
@media (max-width: 480px){

    .final h2{
        font-size: 24px;
    }

    .final p{
        font-size: 14px;
    }

}


footer {
    position: relative;
    background-color: #57420e;
    padding: 2rem 0;
    color: var(--white-color);
    font-size: 0.9rem;
    /* margin-top: 3rem; */
}

footer .about {
    text-align: justify;
    line-height: 1.9;
}

footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer .footerMenu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

footer .footerMenu li {
    list-style: none;
    width: 50%;
}

footer a {
    transition: all 0.3s ease-out;
    color: var(--secondary-color);
}

footer .footerMenu a {
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 400;
    padding-bottom: 0.5rem;
    display: inline-block;
}

footer .footerMenu a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

footer a:hover {
    color: var(--secondary-color);
}

footer p {
    text-align: left;
}
footer .socialLinks{
    display:flex;
    gap:15px;
    margin-top:20px;
}
footer .socialLinks a{
    font-size:22px;
}
footer .contactInfo li{
    word-break: break-word;
    margin-bottom:12px;
}

footer .contactInfo a{
    word-break: break-word;
}

footer .copyright{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:25px;
    padding-top:20px;
}

/* =========================================================
FOOTER RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    footer{
        padding: 2rem 0;
        text-align: center;
    }

    footer .about{
        text-align: center;
        margin-bottom: 25px;
    }

    footer h4{
        margin-top: 20px;
    }

    footer .footerMenu{
        justify-content: center;
    }

}

@media (max-width: 768px) {

    footer{
        padding: 1.8rem 0;
    }

    footer h4{
        font-size: 1.25rem;
        text-align: center;
    }

    footer p{
        text-align: center;
        font-size: 14px;
        line-height: 1.8;
    }

    footer .footerMenu{
        flex-direction: column;
        align-items: center;
    }

    footer .footerMenu li{
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    footer .footerMenu a{
        font-size: 14px;
        padding-bottom: 6px;
    }

}

@media (max-width: 576px) {

    footer{
        padding: 1.5rem 0;
    }

    footer h4{
        font-size: 1.15rem;
    }

    footer p{
        font-size: 13px;
    }

    footer .footerMenu a{
        font-size: 13px;
    }

}


.breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    font-weight:500;
    color: #ddd;
    margin-top: 1rem;
    margin-bottom: 0;
}

.breadcrumb a{
    text-decoration:none;
    color: #ddd;
    transition:0.3s;
    font-weight: 300;
}

.breadcrumb a:hover{
    color:var(--secondary-color);
}

.breadcrumb .active{
    color:var(--secondary-color);    
}

.hero-banner{
    position: relative;
    width: 100%;
    height: 260px;
    background: url('../images/nouka.webp') center center/cover no-repeat;
    overflow: hidden;
}

.hero-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content{
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content h1{
    color: #fff;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-content h1 span{
    font-weight: 700;
}

.hero-content p{
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

@media(max-width:768px){

    .hero-banner{
        height: 220px;
    }

    .hero-content h1{
        font-size: 34px;
    }

    .hero-content p{
        font-size: 16px;
    }
}

.inner-title{
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* IMAGE GALLERY MAIN */
/* --------------------------------- */
.showallphoto {
    background: #f5f5f5;
    border: 1px solid var(--black-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--black-color) !important;
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: auto;
    padding: 0.35rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: -ms-transform 0.25s ease 0s, -webkit-transform 0.25s ease 0s, transform 0.25s ease 0s !important;
}

.showallphoto svg {
    margin-right: 0.35rem;
}

.showallphoto:hover {
    box-shadow: 0 0 0 1px transparent, 0 0 0 4px transparent, 0 6px 16px rgba(0, 0, 0, 0.12) !important;
    transform: scale(1.04) !important;
}

.imgGalleryMain {
    position: relative;
    min-height: 400px;
}

.itemGallery {
    background: var(--black-color);
    position: relative;
    height: 50vh;
    display: block;
}

.itemGallery2 {
    background: var(--black-color);
    position: relative;
    height: calc(25vh - 0.25rem);
    margin-bottom: 0.5rem;
    display: block;
}

.itemGallery img,
.itemGallery2 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    vertical-align: bottom;
}

.itemGallery:hover img,
.itemGallery2:hover img {
    opacity: 0.9;
}

.roundleft {
    border-start-start-radius: 0.5rem !important;
    border-end-start-radius: 0.5rem !important;
}

.roundright {
    border-start-end-radius: 0.5rem !important;
    border-end-end-radius: 0.5rem !important;
}

/* PROJECT CONTENT DETAILS */
/* --------------------------------- */
.proUserDetails {
    position: relative;
    margin: 1rem 0 3rem;
}

.proUserDetails hr {
    background: var(--black-color);
    opacity: 0.15;
    margin: 2.5rem 0;
}

.hostedByHeading h4 {
    margin-bottom: 0.5rem;
}

.hostedByHeading ul {
    display: flex;
    flex-direction: row;
    padding: 0;
    list-style: none;
    margin: 0;
}

.hostedByHeading ul li {
    position: relative;
    padding-right: 0.8rem;
}

.hostedByHeading ul li:before {
    content: '.';
    position: absolute;
    right: 0.3rem;
    bottom: 3px;
}

.hostedByHeading ul li:last-child:before {
    display: none;
}

.userCreator {
    width: 60px;
    height: 60px;
    position: relative;
    background: var(--black-color);
    border-radius: 100%;
}

.userCreator img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    vertical-align: bottom;
}

.proUserDetails .contentList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proUserDetails .contentList li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 1.25rem 0;
}

.proUserDetails .contentList li .textPt {
    width: calc(100% - 40px);
}

.proUserDetails .contentList li .textPt p {
    margin: 0;
    font-size: 1rem;
    color: var(--black-color);
    opacity: 0.8;
}

/* Reserve Panel */
.reservedBox {
    position: -webkit-sticky;
    position: sticky;
    top: 95px;
    z-index: 99;
}
.topHeader {
    display: flex;
    list-style: none;
    padding: 0;
}

.topHeader li {
    margin-right: 0.35rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.topHeader li:last-child {
    margin: 0;
}

.topHeader li a {
    font-weight: 500;
}

.topHeader .shareBtn {
    padding: 0.35rem 0.5rem;
    background: var(--white-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
}

.topHeader .shareBtn svg {
    margin-right: 0.35rem;
}

.topHeader .shareBtn:hover {
    background: #f5f5f5;
    color: inherit;
}

.reservePanel {
    padding: 1.5rem;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    border: 1px solid var(--bs-gray-200);
    border-radius: 1rem;
    background-color: var(--white-color);
}

.reservePanel h3 {
    display: flex;
    align-items: end;
    font-size: 1.25rem;
    font-weight: 600;
}

.reservePanel h3 del {
    color: var(--black-color);
    margin-right: 0.5rem;
}

.reservePanel h3 small {
    font-size: 1rem;
    color: var(--black-color);
    margin-left: 0.25rem;
}

.reservePanel a {
    font-weight: 400;
}

.reservePanel hr {
    margin: 1.5rem 0;
}

.daterange .form-control {
    border-radius: 0;
}

.daterange .form-control:focus {
    box-shadow: none;
    border-color: var(--black-color);
}

.awardPanel {
    margin-top: 1.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    border: 1px solid var(--bs-gray-400);
    border-radius: 1rem;
    background-color: var(--white-color);
}

.awardPanel p {
    margin: 0 1rem 0 0;
}

.proUserDetails .placeOffer {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.proUserDetails .placeOffer li {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0.5rem 0;
    gap: 10px;
}

.proUserDetails .placeOffer li svg {
    margin-right: 0.75rem;
}

.showamenities {
    background: #f5f5f5;
    border: 1px solid var(--air-color-dark);
    border-radius: 0.5rem;
    color: var(--air-color-dark) !important;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: -ms-transform 0.25s ease 0s, -webkit-transform 0.25s ease 0s, transform 0.25s ease 0s !important;
    display: inline-block;
    margin-top: 20px;
}

.showamenities:hover {
    box-shadow: 0 0 0 1px transparent, 0 0 0 4px transparent, 0 6px 16px rgba(0, 0, 0, 0.12) !important;
    transform: scale(1.04) !important;
}

.daterange small {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 300;
    color: var(--black-color);
}

.daterange .calBtn {
    border: 0;
    padding: 0.75rem;
    border-radius: 30px;
    background: transparent;
}

.daterange .calBtn:hover {
    background: #f5f5f5;
}


#searchDestination {
    background: var(--white-color);
    border-radius: 25px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 4%), 0 8px 16px rgb(0 0 0 / 15%);
    top: 100%;
    z-index: 1;
    max-height: calc(100vh - 200px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-width: 520px;
    position: absolute;
    padding: 25px 50px;
}

#searchDestination img {
    border-color: #dbdbdb !important;
}

#searchDestination img:hover {
    border-color: #000 !important;
}

.rounded2 {
    border-radius: 1rem;
}

#checkinContent,
#checkoutContent,
#exprienceDate {
    background: var(--white-color);
    border-radius: 25px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 4%), 0 8px 16px rgb(0 0 0 / 15%);
    padding: 25px 40px;
    position: absolute;
    top: 100%;
    z-index: 1;
    max-height: calc(100vh - 200px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-width: 620px;
    left: 0;
    right: 0;
    margin: auto;
}

#guestContent {
    background: var(--white-color);
    border-radius: 25px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 4%), 0 8px 16px rgb(0 0 0 / 15%);
    padding: 25px 40px;
    position: absolute;
    top: 100%;
    z-index: 1;
    max-height: calc(100vh - 200px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-width: 520px;
    right: 0;
    margin-top: 20px;
}

#guestContent2 {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 4%), 0 8px 16px rgb(0 0 0 / 15%);
    padding: 20px;
    position: absolute;
    z-index: 1;
    /* max-height: calc(100vh - 200px); */
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
    /* overscroll-behavior: contain; */
    /* max-width: 520px; */
    max-width: 92%;
    right: 0;
    left: 0;
    margin: auto;
    /* bottom: 15px; */
}

.labelShadow,
.labelShadow:hover {
    /* position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; */
    z-index: 1;
    background: var(--white-color) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    ;
}

#ui-datepicker-div {
    z-index: 999 !important;
    left: 0 !important;
    right: 0;
    top: 153px !important;
    margin: auto;
    position: fixed !important;
    border-radius: 25px;
    padding-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



/* Modal Gallery */
#galleryModal {
    height: 100vh;
}

.modalGalleryMain {
    height: calc(100vh - 100px);
    overflow-y: auto;
}

/* .modalGallery {
    columns: 2;
    column-gap: 1.5rem;
} */
.modalGallery .itemPic {
    width: calc(50% - 10px);
    /* margin-right: 15px; */
    margin-bottom: 15px;
    display: inline-block;
    height: 40vh;
    position: relative;
}

.modalGallery .itemPic:first-child,
.modalGallery .itemPic:nth-child(3n+4) {
    margin-right: 15px !important;
}

.modalGallery .itemPic:nth-child(3n+3) {
    width: 100%;
    height: 70vh;
}

.modalGallery .itemPic img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    vertical-align: bottom;
}


.btnSubmit {
    background: linear-gradient(90deg, rgba(13, 82, 231, 1) 0%, rgba(11, 57, 155, 1) 100%);
    color: var(--white-color);
    border: 0;
    padding: 12px 15px;
    font-weight: 600;
    outline: none;
    border-radius: 0.5rem;
    font-size: 1.15rem;
    width: 100%;
    display: inline-block;
    transition: 0.2s;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}

.btnSubmit:hover {
    background: linear-gradient(90deg, rgba(11, 57, 155, 1) 0%, rgba(13, 82, 231, 1) 100%);
    color: var(--white-color);
}


.package-card { 
    background: white; 
    width: 100%; 
    max-width: 500px; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
}

.package-header { 
    background: var(--primary-color); 
    color: white; 
    text-align: center; 
    padding: 12px; 
    font-size: 20px; 
    font-weight: bold; 
}

.package-section-title { 
    background: var(--white-color); 
    padding: 8px 15px; 
    font-size: 14px; 
    font-weight: bold; 
    border-bottom: 1px solid #eee; 
    color: #555; 
}

/* Compact Grid for Menu */
.package-menu-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 5px; 
    padding: 10px; 
    font-size: 12px; 
}

.package-menu-item { 
    padding: 4px 8px; 
    background: #fff; 
    border: 1px solid #f0f0f0; 
    border-radius: 4px; 
}

/* Compact Pricing Table */
.package-table { 
    width: 100%; 
    border-collapse: collapse; 
    font-size: 13px; 
}

.package-table td { 
    padding: 8px 15px; 
    border-bottom: 1px solid #eee; 
}

.package-table tr:nth-child(even) { 
    background: #fafafa; 
}

.package-price { 
    text-align: right; 
    font-weight: bold; 
    color: var(--primary-color); 
}

.package-btn-container { 
    padding: 15px; 
    text-align: center; 
}

.package-btn { 
    background: var(--secondary-color); 
    color: var(--black-color); 
    border: none; 
    padding: 10px 40px; 
    border-radius: 25px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: 0.3s; 
}

.package-btn:hover { 
    background: var(--secondary-color); 
    transform: scale(1.05); 
}


.wedding-package-card{
    width:100%;
    max-width:420px;
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border:1px solid #ececec;
    font-family:'Poppins', sans-serif;
}

.package-top{
    background:linear-gradient(135deg,#111,#2c2c2c);
    padding:25px 30px;
    text-align:center;
    color:#fff;
}

.package-tag{
    display:inline-block;
    padding:6px 16px;
    background:#c9a45c;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.package-top h2{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.package-top h3{
    margin:10px 0 0;
    font-size:34px;
    color:var(--secondary-color);
    font-weight:700;
}

.package-content{
    padding:30px;
    padding-bottom: 10px;
}

.package-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:5px;
}

.package-item span{
    color:var(--primary-color);
    font-size:14px;
    margin-top:2px;
}

.package-item p{
    margin:0;
    color:#444;
    line-height:1.6;
    font-size:15px;
}

.package-btn-wrap{
    padding:0 30px 30px;
}

.package-btn{
    display:block;
    width:100%;
    text-align:center;
    padding: 10px 20px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    transition:0.3s;
}

.package-btn:hover{
    background:var(--secondary-color);
    color:#111;
}
.banquet-details-section{

    background:#f8f8f8;

}

.banquet-banner img{

    width:100%;
    height:auto;
    display:block;

}

.banquet-title{

    font-size:70px;
    font-weight:800;
    color:#0b4d2b;
    line-height:1;

}

.banquet-location{

    font-size:50px;
    font-weight:300;

}

.banquet-description{

    font-size:17px;
    line-height:1.9;
    color:#555;

}

.banquet-gallery-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;

}

.banquet-gallery-grid img{

    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:8px;

}

@media(max-width:991px){

    .banquet-title{

        font-size:42px;

    }

    .banquet-location{

        font-size:28px;

    }

    .banquet-gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

}
.banquet-description-box{

    background:url('../images/bg_desc.jpg');
    background-size:cover;
    background-position:center;
    padding:60px 80px;
    margin:50px 0;

}

.banquet-description-box p{

    font-size:18px;
    line-height:2;
    color:#111;
    margin-bottom:30px;
    font-weight:400;

}

@media(max-width:768px){

    .banquet-description-box{

        padding:30px 20px;

    }

    .banquet-description-box p{

        font-size:16px;
        line-height:1.9;

    }

}
.package-table-wrapper{

    margin-bottom:25px;

}

.package-table{

    width:100%;
    border-collapse:collapse;

}

.package-table thead th{

    background:#f0a608;
    color:#fff;
    padding:14px;
    font-size:18px;
    font-weight:600;
    border:1px solid #ddd;

}

.package-table tbody td{

    padding:14px;
    border:1px solid #ddd;
    font-size:17px;
    color:#222;

}

.package-table tbody tr:nth-child(even){

    background:#fafafa;

}

@media(max-width:768px){

    .package-table thead th,
    .package-table tbody td{

        font-size:14px;
        padding:10px;

    }

}
/* TERMS & CONDITIONS */

.banquet-terms-section{

    background:#f8f9fb;

}

.terms-wrapper{

    background:#ffffff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);

}

.terms-title{

    font-size:42px;
    font-weight:700;
    text-align:center;
    margin-bottom:45px;
    color:#111827;

}

.terms-block{

    margin-bottom:50px;

}

.terms-block h3{

    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    color:#e40000;
    border-left:5px solid #e40000;
    padding-left:15px;

}

.terms-block ul{

    padding-left:25px;
    margin:0;

}

.terms-block ul li{

    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:16px;

}

/* Bengali */

.bengali-terms{

    margin-top:70px;

}

.bengali-terms h3{

    color:#111827;
    border-left:5px solid #111827;

}

.bengali-terms ul li{

    font-size:18px;
    line-height:2;
    color:#222;

}

/* Responsive */

@media(max-width:991px){

    .terms-wrapper{

        padding:35px;

    }

    .terms-title{

        font-size:34px;

    }

    .terms-block h3{

        font-size:24px;

    }

}

@media(max-width:768px){

    .terms-wrapper{

        padding:25px;

    }

    .terms-title{

        font-size:28px;

    }

    .terms-block h3{

        font-size:21px;

    }

    .terms-block ul li,
    .bengali-terms ul li{

        font-size:15px;
        line-height:1.8;

    }

}
/* MENU STYLE DECORATION */

.banquet-decoration-section{

    background:#fff;

}

.menu-card{

    border:1px solid #dcdcdc;
    background:#fff;
    height:100%;

}

.menu-header{

    background:#e40000;
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:12px 16px;
    text-align: center;

}

.menu-table{

    margin:0;

}

.menu-table tr td{

    border:1px solid #dcdcdc;
    padding:10px 14px;
    font-size:15px;
    color:#333;
    vertical-align:middle;

}

.menu-table tr td:last-child{

    text-align:right;
    white-space:nowrap;

}

.decoration-note{

    font-size:15px;
    line-height:1.9;
    color:#444;
    border-top:1px solid #ddd;
    padding-top:20px;

}

/* MOBILE */

@media(max-width:768px){

    .menu-header{

        font-size:16px;
        padding:10px 14px;

    }

    .menu-table tr td{

        font-size:14px;
        padding:8px 10px;

    }

}

.decoration-note{

    font-size:15px;
    line-height:1.8;
    color:#444;

}

@media(max-width:768px){

    .table-heading{

        font-size:22px;

    }

    .decoration-table thead th,
    .decoration-table tbody td{

        font-size:14px;
        padding:10px;

    }

}
/* PACKAGE HEADING */

.package-heading h2{

    font-size:50px;
    font-family:'Great Vibes', cursive;
    color:#000;
    margin-bottom:10px;

}

.package-heading img{

    width:180px;
    

}

@media(max-width:768px){

    .package-heading h2{

        font-size:42px;

    }

    .package-heading img{

        width:130px;

    }

}
.card-icon-wrap{

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

.card-icon-wrap img{

    width: 60px;

    height: 60px;

    object-fit: contain;

}
.photo-hero-title{
    font-size: 90px;
    font-weight: 800;
    text-transform: uppercase;
    color: #b38b4d;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

@media(max-width:768px){

    .photo-hero-title{

        font-size: 48px;
    }
}
.makeup-package-table{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid #eee;
}

.makeup-package-header{
    background: #da9e04;
    color: #fff;
    padding: 18px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.makeup-table thead{
    background: #f8f8f8;
}

.makeup-table th{
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
}

.makeup-table td{
    padding: 14px 15px;
    font-size: 16px;
    vertical-align: middle;
}

.makeup-book-btn-wrap{
    padding: 20px;
    text-align: center;
}

.makeup-book-btn{
    background: #111;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: .3s;
}

.makeup-book-btn:hover{
    background: #e2ae01;
    color: #fff;
}

@media(max-width:768px){

    .makeup-package-header{

        font-size: 22px;
    }
}
/* =========================================================
BOOKING PAGE
========================================================= */

.book-main-wrapper{
    position: relative;
}

/* Header */

.book-header{
    text-align: center;
    margin-bottom: 50px;
}

.book-header p{
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b38b4d;
    margin-bottom: 10px;
    font-weight: 600;
}

.book-header h1{
    font-size: 60px;
    font-weight: 700;
    color: #111;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

/* Card */

.book-card{
    border: none;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    background: #fff;
}

.book-card-body{
    padding: 50px;
}

/* Section Title */

.book-section-title{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.book-section-title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #b38b4d;
    border-radius: 50px;
}

/* Labels */

.book-label{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #111;
}

/* Inputs */

.book-input,
.book-select{
    height: 55px;
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 10px 18px;
    font-size: 15px;
    box-shadow: none !important;
    transition: .3s;
}

.book-input:focus,
.book-select:focus{
    border-color: #b38b4d;
}

textarea.book-input{
    height: auto;
    min-height: 120px;
    resize: none;
    padding-top: 15px;
}

/* File Input */

.book-file-input{
    padding-top: 14px;
}

/* GST */

.book-gst-option{
    background: #faf7ef;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px dashed #d6bf8d;
}

/* Terms */

.book-terms-label{
    font-size: 15px;
}

.book-terms-label a{
    color: #b38b4d;
}

/* Submit Button */

.book-btn-submit{
    border: none;
    background: #111;
    color: #fff;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    display: inline-block;
}

.book-btn-submit:hover{
    background: #b38b4d;
    transform: translateY(-2px);
}

/* Checkbox */

.form-check-input:checked{
    background-color: #b38b4d;
    border-color: #b38b4d;
}

/* Responsive */

@media(max-width:991px){

    .book-card-body{
        padding: 35px;
    }

    .book-header h1{
        font-size: 46px;
    }
}

@media(max-width:768px){

    .book-card-body{
        padding: 25px;
    }

    .book-header h1{
        font-size: 38px;
    }

    .book-section-title{
        font-size: 24px;
    }
}

@media(max-width:575px){

    .book-header h1{
        font-size: 30px;
    }

    .book-btn-submit{
        width: 100%;
    }
}
/* =========================================================
PACKAGE DESIGN
========================================================= */

.package-box-main{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.package-header{
    background: #b8860b;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    font-weight: 700;
}

.package-body{
    padding: 25px;
}

.package-subtitle{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #444;
}

.menu-item-box{
    border: 1px solid #ddd;
    padding: 10px 14px;
    border-radius: 4px;
    background: #fff;
    font-size: 15px;
    color: #333;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.pricing-table{
    border-top: 1px solid #eee;
}

.pricing-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.pricing-price{
    color: #b8860b;
    font-weight: 700;
    font-size: 18px;
}

.book-btn-package{
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: .3s;
}

.book-btn-package:hover{
    background: #b8860b;
    color: #fff;
}

@media(max-width:768px){

    .package-header{
        font-size: 20px;
    }

    .package-subtitle{
        font-size: 18px;
    }

    .menu-item-box{
        font-size: 14px;
    }

    .book-btn-package{
        font-size: 18px;
    }
}
/* =========================================================
JOIN US PAGE
========================================================= */

.joinus-hero{
    background: #faf7f0;
}

.joinus-title{
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.joinus-subtitle{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.joinus-card{
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.joinus-card-header{
    background: #b8860b;
    color: #fff;
    text-align: center;
    padding: 22px;
    font-size: 28px;
    font-weight: 700;
}

.joinus-card-body{
    padding: 40px;
}

.join-label{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

.join-input{
    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: none !important;
}

textarea.join-input{
    height: auto !important;
}

.join-input:focus{
    border-color: #b8860b;
}

.join-submit-btn{
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.join-submit-btn:hover{
    background: #b8860b;
}

@media(max-width:768px){

    .joinus-title{
        font-size: 30px;
    }

    .joinus-card-body{
        padding: 25px;
    }

    .joinus-card-header{
        font-size: 24px;
    }

}
/*.bannerSection{*/
/*    width: 100%;*/
    
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

.single-banner{
    width: 100%;
    position: relative;
}

/*.single-banner img{*/
/*    width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*    object-fit: cover;*/
/*}*/



header{
    margin-bottom: 0 !important;
}

.bannerSection,
.single-banner,
.container-fluid{
    margin: 0 !important;
    padding: 0 !important;
}

.single-banner img{
    display: block;
}

/* =========================================================
FLOATING BUTTONS
========================================================= */

/*.floating-buttons{*/

/*    position: fixed !important;*/

/*    right: 25px !important;*/

/*    bottom: 30px !important;*/

/*    z-index: 999999 !important;*/

/*    display: flex;*/

/*    flex-direction: column;*/

/*    gap: 18px;*/

/*    align-items: flex-end;*/

/*    pointer-events: auto;*/

/*}*/


.floating-buttons{
    position: fixed !important;
    right: 25px !important;
    bottom: 30px !important;
    z-index: 2147483647 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end;

    gap: 20px !important;
}
    

/*
|--------------------------------------------------------------------------
| Common
|--------------------------------------------------------------------------
*/

.floating-btn{

    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    color: #fff;

    font-size: 24px;

    border: none;
    
    gap: 25px;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    transition: .3s;

    position: relative;

}

/*
|--------------------------------------------------------------------------
| Hover
|--------------------------------------------------------------------------
*/

.floating-btn:hover{

    transform: translateY(-5px);

    color: #fff;

}

/*
|--------------------------------------------------------------------------
| Scroll Top
|--------------------------------------------------------------------------
*/

.top-btn{

    background: #d4a017;

}

/*
|--------------------------------------------------------------------------
| Email
|--------------------------------------------------------------------------
*/

.mail-btn{

    background: #ff4b3e;

}

/*
|--------------------------------------------------------------------------
| Call
|--------------------------------------------------------------------------
*/

.call-btn{

    background: #0d6efd;

}

/*
|--------------------------------------------------------------------------
| WhatsApp
|--------------------------------------------------------------------------
*/

.whatsapp-btn{

    background: #25d366;

}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .floating-buttons{

        right: 25px !important;

        bottom: 20px !important;

    }

    .floating-btn{

        width: 55px;

        height: 55px;

        font-size: 20px;

    }

}
/* =========================================================
ROOM FLOATING PRICE
========================================================= */

.hc-image-container{

    position: relative;

    overflow: hidden;

}

/*
|--------------------------------------------------------------------------
| Floating Price
|--------------------------------------------------------------------------
*/

.room-floating-price{

    position: absolute;

    top: 18px;

    right: 18px;

    background: rgba(0,0,0,.65);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 24px;

    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    border: 1px solid rgba(255,255,255,.15);

    z-index: 5;

    display: flex;

    align-items: end;

    gap: 4px;

    transition: .3s;

}

/*
|--------------------------------------------------------------------------
| Small Text
|--------------------------------------------------------------------------
*/

.room-floating-price span{

    font-size: 13px;

    font-weight: 400;

    opacity: .85;

    margin-bottom: 3px;

}

/*
|--------------------------------------------------------------------------
| Hover Effect
|--------------------------------------------------------------------------
*/

.hc-hotel-card:hover .room-floating-price{

    transform: scale(1.05);

    background: rgba(183,133,0,.92);

}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .room-floating-price{

        font-size: 18px;

        padding: 8px 14px;

        top: 12px;

        right: 12px;

    }

    .room-floating-price span{

        font-size: 11px;

    }

}
@media (max-width: 768px){

    .floating-buttons{
        right: 10px !important;
        bottom: 15px !important;
        gap: 12px !important;
    }

    .floating-btn{
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }

}
@media (max-width:768px){

    .hero-card{
        padding: 2rem 1rem;
    }

    .top-ornament{
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .sub-tagline{
        font-size: 1rem;
        text-align: center;
    }

    .line{
        width: 80px;
    }

    .center-star{
        margin: 0 10px;
        font-size: 1.1rem;
    }

    .description{
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 10px;
        max-width: 100%;
    }

}
.slick-prev,
.slick-next{
    display:none !important;
}

