/* preloader css start */
.preloader {
    position: fixed;
    inset: 0;
    background: #C28D66;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: "Cormorant Garamond", serif;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-container {
    display: flex;
    align-items: center;
}

.logo-container {
    width: clamp(110px, 16vw, 163px);
    aspect-ratio: 1 / 1;
}

.logo-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.logo-element {
    opacity: 0;
    transform: scale(0.8);
    animation: logoIn 0.6s forwards;
}

.logo-element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2%;
}

.element-1 {
    animation-delay: 0s;
}

.element-2 {
    position: relative;
    top: 5px;
    animation-delay: 0.1s;
}

.element-3 {
    animation-delay: 0.2s;
    position: relative;
    top: -4px;
}

.element-4 {
    animation-delay: 0.3s;
    position: relative;
    height: auto;
    height: 80px;
}

.cs-font-100 {
    font-size: 100px;
}

@media (max-width: 1199px) {
    .cs-font-100 {
        font-size: 90px;
    }
}

@media (max-width: 999px) {
    .cs-font-100 {
        font-size: 70px;
    }
}

@keyframes fadeInTopLeft {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.logo-text-image {
    width: clamp(160px, 30vw, 300px);
    display: flex;
    justify-content: center;
}

.logo-text-image img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-text-image {
    opacity: 0;
    animation: logoIn 0.6s forwards 0.5s;
}

.logo-text-image {
    width: clamp(160px, 75vw, 450px);
}

@media (max-width:768px) {
    .logo-container {
        width: clamp(110px, 20vw, 160px);
    }

    .logo-text-image {
        width: clamp(160px, 65vw, 309px);
    }
}

@media (min-width:401px) and (max-width: 650px) {
    .logo-container {
        width: clamp(110px, 36vw, 160px);
    }

    .logo-text-image {
        width: clamp(160px, 65vw, 309px);
    }
}

@media (max-width: 400px) {
    .logo-container {
        width: clamp(110px, 41vw, 160px);
    }

    .logo-text-image {
        width: clamp(160px, 71vw, 309px);
    }
}

@media (max-width: 360px) {
    .logo-container {
        width: clamp(43px, 51vw, 154px);
    }
}

@media (min-width: 321px) {
    .logo-container {
        width: clamp(43px, 41vw, 154px);
    }
}

@keyframes logoIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader-container {
    flex-direction: column;
}

/* preloader css end */

/* start header css start */
.cs_site_header.cs_style_1.cs_type_2 .cs_main_header_left {
    max-width: 224px;
}

.cs_main_header_center .cs_nav_list li a {
    font-size: 20px;
    color: var(--primary);
}

.cs_main_header_center .cs_nav_list li a.current {
    color: var(--secondary-dark);
}

.cs_site_header.cs_sticky_active .cs_main_header_center .cs_nav_list li a.current {
    color: var(--black-color);
}

.cs_site_header.cs_style_1 .cs_menu_toggle span,
.cs_site_header.cs_style_1 .cs_menu_toggle span:before,
.cs_site_header.cs_style_1 .cs_menu_toggle span:after {
    background-color: var(--primary-dark);
}

.cs_site_header.cs_style_1.cs_sticky_active {
    background-color: var(--secondary-light);
    /* background-color: rgba(0, 0, 0, 0.6); */
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

@media (max-width: 1199px) {
    .cs_site_header.cs_style_1 .cs_nav .cs_nav_list_wrap {
        background-color: var(--secondary);
        /* background-color: rgba(0, 0, 0, 0.6); */
    }
}

@media (max-width: 1199px) {
    .cs_site_header.cs_style_1 .cs_nav .cs_nav_list a {
        color: var(--primary-dark);
    }
}

.cs_site_header.cs_style_1.cs_type_2 .cs_nav_list {
    width: 66%;
}

@media (min-width: 1200px) {
    .cs_site_header.cs_style_1 .cs_nav .cs_nav_list>li {
        margin-right: 42px;
    }
}

.cs_site_header {
    background-color: rgba(0, 0, 0, 0.6);
}

.cs_site_header.cs_style_1.cs_type_2.cs_sticky_header .cs_main_header_in {
    height: 116px;
}

.cs_site_header.cs_style_1 .cs_menu_toggle {
    top: 40px;
}
/* end header css end */

/* footer css start */
footer {
    width: 100%;
    background: #3D231A;
    color: #d4c5a9;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4c5a9, transparent);
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.main-footer__middle {
    padding: 90px 0 45px;
    border-bottom: 1px solid rgba(212, 197, 169, 0.2);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-widget--brand {
    margin-bottom: 30px;
}

.brand-logo {
    margin-bottom: 15px;
}

.brand-logo a {
    background: linear-gradient(135deg, #d4c5a9 0%, #f4e8d0 50%, #d4c5a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.brand-tagline {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: 'Cormorant Garamond', sans-serif;
}

.brand-description {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--white-color);
    margin: 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget__title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--white-color);
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--white-color), transparent);
}

.footer-widget__links {
    list-style: none;
}

.footer-widget__links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-widget__links li i {
    color: var(--white-color);
    margin-right: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-widget__links li:hover i {
    transform: translateX(5px);
}

.footer-widget__links a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-widget__links a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.footer-widget__contact {
    list-style: none;
}

.footer-widget__contact li {
    margin-bottom: 25px;
}

.footer-widget__contact__item {
    display: flex;
    align-items: flex-start;
}

.footer-widget__contact__item .icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 197, 169, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-widget__contact__item:hover .icon {
    border-color: var(--white-color);
    background: rgba(212, 197, 169, 0.1);
}

.footer-widget__contact__item .icon i {
    color: var(--white-color);
    font-size: 16px;
}

.footer-widget__contact__text {
    flex: 1;
}

.footer-widget__contact__location,
.footer-widget__contact__call {
    color: var(--white-color);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: serif;
}

.footer-widget__contact__call:hover {
    color: var(--primary-dark);
}

.main-footer__social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.main-footer__social a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.main-footer__social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 197, 169, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.main-footer__social a:hover::before {
    width: 100%;
    height: 100%;
}

.main-footer__social a:hover {
    border-color: #d4c5a9;
    transform: translateY(-3px);
}

.main-footer__social a i {
    position: relative;
    z-index: 1;
}

.main-footer__bottom {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.main-footer__bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 11;
}

.main-footer__copyright {
    font-size: 18px;
    font-family: serif;
    color: var(--white-color);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 12;
}

.footer-bottom-links a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 13;
}

.footer-bottom-links a:hover {
    color: var(--primary-dark);
}

.mw-link {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mw-link:hover {
    color: var(--white-color);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 991px) {
    .col-lg-4 {
        width: 50%;
    }

    .container {
        padding: 0 40px;
    }

    .main-footer__middle {
        padding: 60px 0 40px;
    }
}

@media (max-width: 767px) {
    footer::before {
        background-attachment: scroll;
        opacity: 0.1;
    }

    .container {
        padding: 0 30px;
    }

    .col-md-6 {
        width: 100%;
    }

    .col-lg-4 {
        width: 100%;
    }

    .main-footer__middle {
        padding: 50px 0 30px;
    }

    .footer-widget {
        margin-bottom: 40px;
    }

    .footer-widget__title {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .brand-logo {
        font-size: 36px;
    }

    .main-footer__bottom {
        padding: 25px 0;
    }

    .main-footer__bottom__inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 30px;
    }

    .main-footer__copyright {
        font-size: 14px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .row {
        margin: 0 -10px;
    }

    .col-md-6 {
        padding: 0 10px;
    }

    .footer-widget__title {
        font-size: 16px;
    }

    .brand-logo {
        font-size: 32px;
    }

    .footer-widget__links a,
    .footer-widget__contact__location,
    .footer-widget__contact__call {
        font-size: 14px;
    }

    .footer-widget__contact__item .icon,
    .main-footer__social a {
        width: 40px;
        height: 40px;
    }

    .main-footer__social {
        gap: 12px;
    }

    .main-footer__bottom__inner {
        padding: 0 20px;
    }

    .footer-bottom-links a {
        font-size: 14px;
    }
}

.cs_location_map iframe {
    width: 100%;
    height: 240px;
    border: 0;
}

@media (max-width: 1024px) {
    .cs_location_map iframe {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .cs_location_map iframe {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 425px) {
    .cs_location_map iframe {
        width: 100%;
        height: 150px;
    }
}

.cs_scrollup:hover {
    background-color: var(--primary-dark);
}

.cs_scrollup {
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
}

/* footer css end */

/* start hero section of index page */
.gv-hero-wrap {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
}

.gv-hero-image,
.gv-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease;
}

.gv-hero-image {
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.gv-hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

.about-us-w {
    width: 80px;
}

.cs-font-100 {
    font-size: 100px;
}

@media (max-width: 1199px) {
    .cs-font-100 {
        font-size: 90px;
    }

    .about-us-w {
        width: 100%;
    }
}

@media (max-width: 999px) {
    .cs-font-100 {
        font-size: 70px;
    }

    .gv-hero-wrap {
        height: 90vh;
    }
}

@media (max-width: 576px) {
    .gv-hero-wrap {
        height: 75vh;
    }
}

/* end hero section of index page */

/* start home page css */
.cs_hero.cs_style_1 h1,
.cs_hero.cs_style_1 h1 span,
.cs_hero.cs_style_1 p {
    visibility: hidden;
}

.index .cs_card .cs_accent_color {
    color: var(--primary-dark);
}

.index .cs_card.cs_style_1 .cs_flower_shape {
    margin-bottom: 30px;
}

.index .cs_card.cs_style_1 .cs_card_subtitle {
    margin-bottom: 0px;
}

.cs_about.cs_style_1 .cs_about_link_list li:hover {
    color: var(--primary-light);
}

.index h3.cs_card_title a:hover {
    color: var(--primary-dark);
}

.cs_fs_38 {
    font-size: 38px;
    line-height: 1.333em;
}

@media (max-width: 1399px) {
    .cs_fs_38 {
        font-size: 34px;
    }
}

@media (max-width: 1199px) {
    .cs_fs_38 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .cs_fs_38 {
        font-size: 28px;
    }
}

.experience-showcase-section {
    position: relative;
}

.experience-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

.experience-card-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(195, 142, 103, 0.1);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--secondary, #eee9dd);
}

.experience-card-wrapper:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(195, 142, 103, 0.25);
    border-color: var(--primary-light, #e7a987);
}

.experience-image-container {
    position: relative;
    display: block;
    height: 320px;
    overflow: hidden;
    background: var(--secondary-light, #f8f4ec);
}

.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.experience-card-wrapper:hover .experience-img {
    transform: scale(1.15);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(195, 142, 103, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 1;
}

.experience-card-wrapper:hover .experience-overlay {
    opacity: 1;
}

.experience-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent var(--primary-light, #e7a987) transparent transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.experience-card-wrapper:hover::before {
    opacity: 1;
}

.experience-content {
    padding: 0px 25px;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--secondary-light, #f8f4ec) 100%);
}

.experience-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light, #e7a987) 0%, var(--primary-dark, #bd7955) 100%);
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.experience-card-wrapper:hover .experience-content::before {
    width: 85%;
}

.experience-link {
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.experience-card-wrapper:hover .experience-link {
    color: var(--primary-dark, #bd7955);
}

.experience-card-wrapper:hover .experience-link::after {
    opacity: 1;
    transform: translateX(0);
}

.experience-description {
    color: var(--black-color);
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
}

.experience-card-wrapper {
    counter-increment: experience-counter;
}

.experience-image-container::after {
    content: '0'counter(experience-counter);
    position: absolute;
    top: 22px;
    left: 22px;
    width: 55px;
    height: 55px;
    background: var(--secondary-light, #f8f4ec);
    border: 3px solid var(--primary, #c38e67);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark, #bd7955);
    z-index: 2;
    opacity: 0;
    transform: scale(0.3) rotate(-180deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.experience-card-wrapper:hover .experience-image-container::after {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.experience-grid-container {
    counter-reset: experience-counter;
}

.experience-btn-main {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 18px 45px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary, #c38e67) 0%, var(--primary-dark, #bd7955) 100%);
}

.experience-btn-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.experience-btn-main:hover::before {
    width: 350px;
    height: 350px;
}

.experience-btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(195, 142, 103, 0.4);
}

@media (max-width: 1600px) {
    .experience-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .experience-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .experience-image-container {
        height: 280px;
    }

    .experience-title {
        font-size: 1.6rem !important;
    }

    .experience-content {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .experience-image-container {
        height: 240px;
    }

    .experience-title {
        font-size: 1.4rem !important;
        margin-bottom: 12px !important;
    }

    .experience-description {
        font-size: 0.95rem;
    }

    .experience-content {
        padding: 22px 18px;
    }

    .experience-image-container::after {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: 15px;
        left: 15px;
    }

    .experience-btn-main {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .experience-image-container {
        height: 220px;
    }
}

@media (max-width: 2600px) {
    .cs_grid.cs_style_1 .cs_card.cs_style_3 {
        height: auto;
    }
}

/* end home page css */

/* about us page starts */
.about .cs_grid.cs_style_4 .cs_grid_item::before,
.about .cs_grid.cs_style_4 .cs_grid_item::after {
    color: var(--primary-dark);
}

.about .cs_accent_bg {
    background-color: unset;
}

.about .cs_accent_bg:hover,
.about .cs_iconbox.cs_style_1:hover .cs_iconbox_icon {
    background-color: unset !important;
}

@media (max-width: 992px) {
    .about .section-bg {
        background-position: center top;
    }
}

.about .section-about-bg {
    background-image: url(../images/home/footer-bg.jpg);

}

.about .section-bg {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about .section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(248, 244, 236, 0.935);
    z-index: 0;
}

.about .section-bg>.container {
    position: relative;
    z-index: 2;
}

.about .section-decor-left {
    position: absolute;
    right: 16px;
    top: -50px;
    height: 100%;
    width: 90;
    opacity: 0.10;
    pointer-events: none;
    z-index: -1;
}

@media (max-width:600px) {
    .about .section-decor-left {
        width: fit-content;
        top: 300px;
        height: 50%;
    }
}

/* about us page end */

/* accommodation page stars */
.accommodation .acc-overview {
    position: relative;
    background-color: var(--secondary-light);
    overflow: hidden;
}

.accommodation .acc-bg-decor {
    position: absolute;
    width: 520px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.accommodation .acc-bg-left {
    right: 126px;
    top: 189px;
}

.accommodation .acc-bg-right {
    left: -15px;
    bottom: -194px;
}

.accommodation .acc-float {
    position: relative;
    background: var(--secondary-light);
    border: 2px solid var(--secondary-dark);
    padding: 44px;
    max-width: 620px;
    z-index: 2;
}

.accommodation .acc-float-top {
    margin-bottom: -90px;
}

.accommodation .acc-float-bottom {
    margin-top: -90px;
    margin-left: auto;
}

.accommodation .acc-image-wrapper {
    width: 100%;
    height: 560px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.accommodation .acc-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation .acc-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--primary-dark);
}

.accommodation .acc-text {
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .accommodation .acc-image-wrapper {
        height: 400px;
    }

    .accommodation .acc-title {
        font-size: 34px;
    }

    .accommodation .acc-float {
        padding: 36px;
        max-width: 100%;
    }

    .accommodation .acc-bg-decor {
        width: 380px;
    }
}

@media (max-width: 600px) {
    .accommodation .acc-bg-decor {
        display: none;
    }

    .accommodation .acc-float-top,
    .accommodation .acc-float-bottom {
        margin: 0;
    }

    .accommodation .acc-float {
        margin-top: 0px;
        padding: 26px;
    }

    .accommodation .acc-image-wrapper {
        height: 260px;
    }

    .accommodation .acc-title {
        font-size: 28px;
    }

    .accommodation .acc-text {
        font-size: 18px;
    }
}

.accommodation .cs_accent_color {
    color: var(--secondary-dark);
}

.accommodation .cs_grid.cs_style_7 {
    gap: 46px 122px;
}

.accommodation .cs_card_title {
    color: var(--primary-dark);
}

.accommodation .cs_card_title a:hover {
    color: var(--secondary-dark);
}

.accommodation .section-bg {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.accommodation .section-rooms-bg {
    background-image: url("../images/home/footer-bg.jpg");
}

.accommodation .section-events-bg {
    background-image: url("../images/home/footer-bg.jpg");
}

.accommodation .section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(248, 244, 236, 0.935);
    z-index: 0;
}

.accommodation .section-bg>.container {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .accommodation .section-bg {
        background-position: center top;
    }
}

@media (min-width: 1024px) {
    .accommodation .section-bg {
        background-attachment: fixed;
    }
}

.accommodation .amenity-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border: 1px solid var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--primary);
}

.accommodation .amenity-icon-box i {
    font-size: 60px;
}

.accommodation .amenity-icon-box::after {
    content: "";
    position: absolute;
    bottom: -8px;
    width: 20px;
    height: 2px;
    background-color: var(--primary);
}

.accommodation .cs_card:hover .amenity-icon-box {
    border-color: var(--primary);
}

@media (max-width: 600px) {
    .accommodation .amenity-icon-box {
        width: 54px;
        height: 54px;
    }

    .accommodation .amenity-icon-box i {
        font-size: 26px;
    }
}

.accommodation .amenitiess .cs_card_title {
    color: var(--primary-dark);
}

.accommodation .amenitiess .cs_card.cs_style_2 .cs_card_title:hover {
    color: var(--primary-dark) !important;
}

.accommodation .room-accessories-gallery {
    gap: 24px;
}

.accommodation .gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-dark);
    background-color: var(--secondary);
}

.accommodation .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.accommodation .gallery-item:hover img {
    transform: scale(1.08);
}

.accommodation .gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.accommodation .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.accommodation .gallery-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .accommodation .gallery-overlay span {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .accommodation .gallery-overlay {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.25);
    }
}

.accommodation #room-gallery .cs_grid.cs_style_7 {
    gap: 42px 44px;
}

.accommodation .cs_card.cs_style_2 .cs_card_meta {
    font-size: 18px;
}

.accommodation .cs_card.cs_style_2.cs_type_1 .cs_card_thumbnail span:hover {
    color: var(--primary);
    border-color: var(--primary-dark);
}

/* accommodation page end */

/* EXPERIENCE CSS START */
.experience_desc {
    margin-bottom: unset;
}

.experience_card {
    width: 55% !important;
}

@media (min-width: 991px) and (max-width: 1199px) {
    .experience_icon {
        display: none;
    }
}

@media (max-width: 991px) {
    .experience_card {
        width: 100% !important;
    }
}

/* EXPERIENCE CSS END */

/* GALLERY CSS START */
.lg-sub-html {
    display: none;
}

/* GALLERY CSS END */

/* destination page starts */
.destination #region-overview,
.destination .nearby-attractions,
.destination .suggested-place {
    background-color: #f8f4ecc2;
}

.destination #region-overview {
    padding-top: 50px;
    padding-bottom: 0px;
}

.destination .nearby-attractions {
    padding-top: 50px;
    padding-bottom: 0px;
}

.destination .suggested-place {
    padding-top: 0px;
    padding-bottom: 0px;
}

.destination .region-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 40px;
    align-items: center;
}

.destination #region-overview p {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 14px;
}

.destination #region-overview .btn-outline {
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s ease;
}

.destination #region-overview .btn-outline:hover {
    background-color: var(--primary);
    color: var(--secondary-light);
}

.destination .region-media .media-collage {
    display: flex;
    gap: 14px;
}

.destination .collage-item.large {
    width: 360px;
    height: 360px;
    background-image: url("../images/destination/village-culture.jpg");
}

.destination .collage-item.small-1 {
    width: 180px;
    height: 172px;
    background-image: url("../images/destination/village-culture-singing.jpg");
}

.destination .collage-item.small-2 {
    width: 180px;
    height: 172px;
    background-image: url("../images/destination/village-culturer-dance.jpg");
}

@media (max-width:1024px) and (min-width:991px) {
    .destination .region-grid {
        grid-template-columns: 1fr 425px;
    }
}

@media (max-width:768px) {
    .destination .collage-stack {
        display: none !important;
    }
}

.destination .collage-item {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.destination .collage-item.large {
    width: 360px;
    height: 360px;
}

.destination .collage-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.destination .collage-item.small-1,
.destination .collage-item.small-2 {
    width: 180px;
    height: 172px;
}

@media (max-width: 1000px) {
    .destination .region-grid {
        grid-template-columns: 1fr;
    }

    .destination .collage-item.large {
        width: 100%;
        height: 300px;
    }

    .destination .collage-stack {
        flex-direction: row;
    }

    .destination .collage-item.small-1,
    .destination .collage-item.small-2 {
        width: 50%;
        height: 120px;
    }
}

.destination .nearby-attractions .section-title,
.destination .section-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.destination .section-decor-left {
    position: absolute;
    left: -50px;
    top: 135px;
    height: 550px;
    width: 593px;
    opacity: 0.39;
    pointer-events: none;
    z-index: -1;
}

.destination .section-decor-left-park {
    position: absolute;
    right: -50px;
    top: 688px;
    height: 550px;
    width: 593px;
    opacity: 0.39;
    pointer-events: none;
    z-index: -1;
}

.destination .section-decor-left-fort {
    position: absolute;
    left: -50px;
    top: 1236px;
    height: 550px;
    width: 593px;
    opacity: 0.39;
    pointer-events: none;
    z-index: -1;
}

.destination .section-decor-left-last {
    position: absolute;
    right: 178px;
    top: 11px;
    height: 200px;
    width: 200px;
    opacity: 0.89;
    pointer-events: none;
    z-index: -1;
}

@media (max-width:768px) {
    .destination .section-decor-left {
        width: 567px;
        margin-top: 10vh;
    }

    .destination .section-decor-left-park {
        width: 567px;
        margin-top: 92vh;
    }

    .destination .section-decor-left-fort {
        width: 567px;
        margin-top: 184vh;
    }

    .destination .section-decor-left-last {
        right: 18px;
    }
}

@media (max-width:445px) {
    .destination .section-decor-left-last {
        right: -53px;
        top: auto;
        opacity: 0.19;
    }

    .destination .section-decor-left {
        height: fit-content;
    }

    .destination .section-decor-left-park {
        width: 565px;
        margin-top: 76vh;
        height: fit-content;
    }

    .destination .section-decor-left-fort {
        width: 567px;
        margin-top: 145vh;
        height: fit-content;
    }

}

.destination .attraction-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.destination .row-left .attraction-image {
    order: 1;
}

.destination .row-left .attraction-details {
    order: 2;
}

.destination .row-right .attraction-details {
    order: 1;
}

.destination .row-right .attraction-image {
    order: 2;
}

.destination .attraction-image {
    width: 100%;
    border: 2px solid var(--secondary-dark);
    overflow: hidden;
}

.destination .attraction-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.destination .attraction-row:hover .attraction-image img {
    transform: scale(1.05);
}

.destination .attraction-details {
    padding: 10px 0;
}

.destination .attraction-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .destination .attraction-row {
        grid-template-columns: 1fr;
    }

    .destination .row-right .attraction-details,
    .destination .row-right .attraction-image,
    .destination .row-left .attraction-details,
    .destination .row-left .attraction-image {
        order: unset;
    }

    .attraction-image {
        height: auto;
    }
}

@media (max-width: 600px) {
    .destination .attraction-text {
        font-size: 18px;
    }
}

.destination .how-reach {
    background-color: #f8f4ecc2;
}

.destination .reach-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.destination .reach-tab {
    padding: 10px 20px;
    border: 2px solid var(--primary-dark);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    transition: 0.3s;
}

.destination .reach-tab.active,
.destination .reach-tab:hover {
    background-color: var(--primary);
    color: #000;
}

.destination .reach-table-wrapper {
    border: 2px solid var(--secondary-dark);
    background: var(--secondary-light);
    padding: 20px;
}

.destination .reach-table {
    width: 100%;
    border-collapse: collapse;
}

.destination .reach-table th,
.destination .reach-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--secondary-dark);
    font-size: 22px;
}

.destination .reach-table th {
    font-weight: 700;
    color: var(--primary-dark);
}

@media (max-width: 600px) {
    .destination .reach-tab {
        font-size: 16px;
        padding: 8px 14px;
    }

    .destination .reach-table th,
    .destination .reach-table td {
        font-size: 16px;
    }
}

.destination .cs_card.cs_style_2.cs_type_1 .cs_card_thumbnail span:hover {
    color: var(--primary);
    border-color: var(--primary-dark);
}

/* destination page end */

/* faq page starts */
.faq .cs_accent_color {
    color: var(--primary);
}

.faq-section {
    background-image: url("../images/faq/faq-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.faq-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent 70%);
    z-index: 0;
}

/* faq page end */

/* CONTACT US CSS START */
.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 15px 35px rgba(0, 0, 0, 0.04);
    min-height: 260px;
}

.left-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-col img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.right-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
}

.top-half,
.bottom-half {
    display: flex;
    flex-direction: column;
}

.bottom-half {
    justify-content: center;
}

.icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.detail,
.detail-link {
    font-size: 18px;
    color: var(--dark-color);
    font-family: "serif";
    word-break: break-word;
}

.detail-link {
    text-decoration: none;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.06);
    transition: border-bottom-color 0.3s ease;
}

.detail-link:hover {
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

.contact-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
    text-align: center;
}

.contact-item:hover .hover-overlay {
    opacity: 1;
}

.cs_contact_form.cs_style_1 .cs_input_wrapper:nth-child(n + 1) {
    display: unset;
    grid-column: unset;
}

.cs_contact_form.cs_style_1 .cs_input_wrapper:nth-child(n + 10) {
    grid-column: auto/span 2;
}

.cs_btn {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark) !important;
    color: #fff;
    transition: color 0.3s ease;
}

.cs_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--secondary-dark) !important;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.cs_btn:hover {
    color: var(--dark-color) !important;
}

.cs_btn:hover::before {
    transform: translateX(0);
}

.cs_contact_location .cs_location_map {
    filter: unset;
}

.contact-input {
    color: var(--dark-color);
    font-family: "serif";
}

.contact-input {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.contact_us_form {
    column-gap: 20px !important;
    row-gap: 10px !important;
}

.cs_contact_form.cs_style_1 .cs_btn.cs_style_1 {
    padding: 15px 35px;
}

#form_message {
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 10px;
}

#form_message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form_message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error_msg>label,
.error_msg {
    color: red !important;
    margin-bottom: unset !important;
    margin-top: 5px !important;
    font-family: "serif" !important;
    display: block !important;
    font-size: 16px;
    height: 26px;
}

.error_msg>label {
    display: block !important;
}

.field-bot {
    position: absolute;
    left: -9999px;
    height: 1px !important;
    width: 1px !important;
    opacity: 0 !important;
}

@media (min-width: 576px) {
    .contact-card {
        padding: 30px 25px;
    }

    .detail,
    .detail-link {
        font-size: 20px;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .icon img {
        width: 40px;
        height: 40px;
    }

    .hover-overlay {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .right-col .contact-item {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .right-col .top-half {
        gap: 20px;
        margin-top: 10px;
    }

    .cs_contact_form.cs_style_1 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .left-col {
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 20px;
    }

    .contact-card {
        gap: 20px;
    }

    .cs_contact_form.cs_style_1 .cs_input_wrapper:nth-child(n + 1) {
        grid-column: auto/span 2;
    }
}

@media (min-width: 768px) {
    .left-col::after {
        content: "";
        position: absolute;
        top: 20px;
        bottom: 20px;
        right: 0;
        width: 2px;
        background-color: #ddd;
        display: block;
    }

    .top-half {
        flex-direction: row;
    }

    .contact-item {
        flex: 1;
    }

    .hover-overlay {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .contact-card {
        padding: 35px 30px;
        height: 260px;
    }

    .top-half,
    .bottom-half {
        flex: 1;
    }

    .detail,
    .detail-link {
        font-size: 21px;
    }

    .icon {
        width: 36px;
        height: 36px;
    }

    .icon img {
        width: 45px;
        height: 45px;
    }

    .hover-overlay {
        font-size: 25px;
    }
}

@media (min-width: 1200px) {
    .contact-card {
        padding: 40px 35px;
    }

    .detail,
    .detail-link {
        font-size: 25px;
    }
}

@media (min-width: 1400px) {

    .left-col::after {
        top: 30px !important;
        bottom: 30px !important;
    }

    .left-col {
        padding: 30px 20px !important;
    }

    .right-col {
        padding-left: 25px;
    }
}

.cs_contact_form.cs_style_1 label {
    color: #000000 !important;
}

/* CONTACT US CSS END */

/* ENQUIRY CSS START */
.enquiry-right {
    width: 65%;
}

.enquiry-modal .modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
}

.enquiry-left-image {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
    width: 35%;
}

.enquiry-left-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
            var(--primary-light) 10%,
            var(--primary-dark));
    opacity: 0.1;
}

.modal-title-custom {
    color: var(--primary-dark);
    font-size: 28px;
}

.form-field {
    border-radius: 10px;
    border: 1px solid var(--secondary-dark);
    background: var(--secondary-light);
}

.form-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(195, 142, 103, 0.25);
}

.theme-btn {
    background: var(--primary);
    border-color: var(--primary-dark);
    padding: 0.375rem 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.theme-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary);
}

.theme-btn:focus {
    background: var(--primary-dark);
    border-color: var(--primary);
}

.theme-btn:active {
    background: var(--primary-dark) !important;
    border-color: var(--primary) !important;
}

.enquiry-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: var(--secondary-light);
    padding: 10px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    border: none;
}

.enquiry-close-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.enquiry-desc {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.5;
}

.phone-input-field {
    padding: 1rem 0.75rem;
}

.phone-input-field::placeholder {
    opacity: 0 !important;
    color: transparent !important;
}

.phone-label {
    margin-left: 75px;
}

.phone-label-focus {
    transform: scale(0.85) translateY(-0.7rem);
    transition: 0.2s ease;
}

.phone-label-focus-out {
    transform: unset !important;
    transition: 0.2s ease;
}

.enquiry-img {
    height: 560px;
}

@media (max-width: 1199.98px) {
    .enquiry-left-image {
        display: none !important;
    }

    .enquiry-modal .modal-body .col-md-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (max-width: 991.98px) {
    .enquiry-left-image {
        display: none;
    }

    .modal-content {
        margin: 0 10px;
    }

    #enquiry_form .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (max-width: 575.98px) {
    .enquiry-modal .text-end {
        display: flex !important;
        flex-direction: column-reverse !important;
        align-items: center !important;
        gap: 10px;
        text-align: center !important;
    }

    .enquiry-modal .text-end .btn {
        width: 100% !important;
    }

    .enquiry-modal .text-end .btn-secondary {
        margin-right: 0 !important;
    }
}

/* ENQUIRY CSS END */

/* TERMS AND CONDITION CSS START */
.luxury-background {
    background: linear-gradient(180deg, var(--secondary-light) 0%, #ffffff 100%);
}

.theme-card h2 {
    font-size: 26px;
    letter-spacing: 0.6px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    font-weight: 650;
}

.theme-card h2::after {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--primary);
    display: block;
    margin-top: 10px;
}

.theme-card p,
.theme-card li {
    font-size: 20px;
    line-height: 1.9;
    color: #4f4f4f;
}

.theme-card p {
    margin-bottom: 10px;
}

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

.gv-hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.40);
}

.gv-hero-title {
    font-size: clamp(62px, 9vw, 70px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.gv-hero-subtitle {
    display: block;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 500;
    color: var(--white-color);
    margin-top: 10px;
}

.gv-hero-text {
    max-width: 700px;
    font-size: clamp(21px, 2vw, 20px);
    line-height: 1.7;
    opacity: 0.95;
}

.cs_ternary_font {
    font-family: var(--ternary-font);
}

.cs_site_header .main-footer__social a {
    border-color: var(--primary);
}

.cs_site_header .footer-widget__contact__item .icon {
    border: 1px solid var(--primary);
}

.cs_site_header .footer-widget__contact__item .icon i,
.cs_site_header .footer-widget__contact__location, .cs_site_header .footer-widget__contact__call {
    color: var(--primary);
}

.index .cs_places_section .cs_bg_shape {
    background-color: #f8f4ecc2;
}

@media (min-width: 1025px) {

    .cs_main_header_center .main-footer__social,
    .cs_main_header_center .main-footer__social a,
    .cs_main_header_center .header-icons {
        display: none !important;
    }
}