* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    --text-gradient: linear-gradient(100.31deg, #996326 -1464.15%, #D9BA25 -192.55%, #FBE725 494.81%, #AB7A2B 1938.26%);
    --thm-gold: rgba(193, 152, 52, 1);
    --thm-green: rgba(7, 80, 70, 1);
    --thm-dark-green: rgba(5, 72, 63, 1);
    --text-black: rgba(45, 45, 44, 1);
    --text-white: #f7f9e9;
    --white: #ffffff;
    --black: #000000;
    --font-tight: "Inter Tight", sans-serif;
    --font-onset: "Onest", sans-serif;
}

body {
    font-family: var(--font-tight);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--text-black);
}

p {
    font-size: 15px;
    line-height: 24px;
}

.head-title {
    font-family: var(--font-onset);
    font-size: 28px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0;

}

.text-center {
    text-align: center;
}

.sm-head-title {
    letter-spacing: 2px;
}

.clr-gold {
    color: var(--thm-gold);
}

.clr-white {
    color: var(--white);
}

.clr-text-white {
    color: var(--text-white);
}

.mini-container {
    max-width: 750px;
    display: block;
    margin: auto;
}

.thm-container,
.thm-container-fluid {
    width: 100%;
    display: block;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.thm-container {
    max-width: 1200px;
}

img,
video,
svg {
    max-width: 100%;
}

.m-5px {
    margin: 5px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.py-65 {
    padding-top: 65px;
    padding-bottom: 115px;
}

.thm-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.thm-col-4,
.thm-col-6,
.thm-col-12 {
    padding: 0px 20px;
    width: 100%;
}

.bg-gold {
    background-color: var(--thm-gold);
}

.bg-dark-green {
    background-color: var(--thm-dark-green);
}

.font-onset {
    font-family: var(--font-onset);
}

.op-8 {
    opacity: 0.8;
}

.op-9 {
    opacity: 0.9;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fs-14 {
    font-size: 14px;
    line-height: 22px;
}

.py-65.bottom-shape,
.pb-65.bottom-shape {
    padding-bottom: 100px;
}

.py-65.top-shape,
.pt-65.top-shape {
    padding-top: 100px;
}

.pt-65 {
    padding-top: 65px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-45 {
    padding-bottom: 45px;
}

.swiper .swiper-slide img {
    display: block;
    width: 100%;
}

/* shapes */
.bottom-shape,
.top-shape {
    position: relative;
}

.bottom-shape::after {
    content: '';
    position: absolute;
    height: 40px;
    width: 100%;
    bottom: 0;
    z-index: 5;
    left: 0;
}

.top-shape::before {
    content: '';
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    z-index: 5;
    left: 0;
}

.shape-before::before,
.shape-after::after {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.shape-up::before,
.shape-up::after {
    -webkit-mask-image: url('../images/shapes/shape-white-up.svg');
    mask-image: url('../images/shapes/shape-white-up.svg');
}

.shape-down::before,
.shape-down::after {
    -webkit-mask-image: url('../images/shapes/shape-green-down.svg');
    mask-image: url('../images/shapes/shape-green-down.svg');
}

.shape-bg-white::before,
.shape-bg-white::after {
    background: var(--white);
}

.shape-bg-green::before,
.shape-bg-green::after,
.bg-green {
    background: var(--thm-green);
}

.shape-bg-text-white::before,
.shape-bg-text-white::after,
.bg-text-white {
    background: var(--text-white);
}

.to-upper {
    text-transform: uppercase;
}

.btn-set {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.thm-btn {
    padding: 6px 15px;
    text-decoration: none;
    border-width: 0;
    font-family: var(--font-onset);
    font-size: 13px;
    cursor: pointer;
    font-weight: 400;
    line-height: 20px;
}

.justify-between {
    justify-content: space-between;
}

section {
    overflow: hidden;
}

/* header */
header {
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.5s;
    background: transparent;
}

header.active {
    background: #0000009c;
    backdrop-filter: blur(6px);
    padding: 20px 40px;
}

header nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

header nav .logo {
    display: block;
    max-width: 110px;
}

header nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    margin: 0;
    flex-wrap: wrap;
}

header nav ul li a {
    position: relative;
    text-decoration: none;
    font-family: var(--font-tight);
    font-size: 16px;
    color: #C19834;
    transition: all 0.4s;
}

header .menu .action-icons {
    height: var(--size);
    width: var(--size);
}

header .menu .action-icons img {
    display: none;
    width: 100%;
    user-select: none;
}

/* home */
.home {
    position: relative;
}

.home .slide-content {
    min-height: 70dvh;
    min-height: 70vh;
    width: 100%;
    display: flex;
    padding: 165px 35px 50px 45px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 5;
}

.home .swiper-slide {
    position: relative;
}

.home .swiper-slide::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.home .swiper-slide img {
    display: block;
    width: 100%;
    height: var(--height);
    object-fit: cover;
}

.home .slide-content .logo {
    margin-bottom: 50px;
    max-width: 100px;
    display: block;
}

.home .slide-content .content {
    position: relative;
    z-index: 2;
}

.home .swiper-pagination {
    z-index: 5;
    margin: 10px auto;
    position: relative;
}

.home .swiper-pagination .swiper-pagination-bullet {
    height: 5px;
    width: 28px;
    border-radius: 0;
    opacity: 0.4;
    margin: 2px;
    background: var(--thm-gold);
}

.home .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.counter-box {
    display: flex;
    width: 100%;
    gap: 30px;
    margin-top: 7px;
}

.counter-box .count {
    font-family: var(--font-onset);

}

.counter-box .count .number {
    font-size: 32px;
    color: var(--thm-gold);
    margin-bottom: 5px;
}

.counter-box .count .text {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-black);
    font-size: 13px;
}

.about-content-center-box {
    display: flex;
    height: var(--match-text);
    flex-flow: column;
    justify-content: space-evenly;
    margin-top: 52px !important;
}

.about {
    position: relative;
    overflow: hidden;
}

.about .slider-overlapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
}

.pos-relative {
    position: relative;
}

.about .slider-overlapper .swiper-slide img {
    display: block;
    width: 100%;
    user-select: none;
}

/* leaf-villa unified layout */
.leaf-villa-row {
    align-items: center;
}

.leaf-villa-slider-col,
.leaf-villa-text-col {
    width: 50%;
}

.leaf-villa-slider-col {
    padding-right: 30px;
}

.leaf-villa-slider-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
}

.leaf-villa-slider-wrap .swiper,
.leaf-villa-slider-wrap .swiper-wrapper,
.leaf-villa-slider-wrap .swiper-slide {
    height: 100%;
}

.leaf-villa-slider-wrap .swiper-slide .content {
    height: 100%;
}

.leaf-villa-slider-wrap .swiper-slide .img {
    height: 100%;
}

.leaf-villa-slider-wrap .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leaf-villa-text-col {
    padding-left: 10px;
}

@media (max-width: 768px) {

    .plan .plan-tab-list li,
    .amenities .amenities-tab-list li {

        font-size: 19px !important;

    }

    .plan-tab-list,
    .amenities-tab-list {
        justify-content: center !important;
    }

    #plaza .plan .plan-tab-list li,
    .amenities .amenities-tab-list li {

        font-size: 17px !important;

    }

    .leaf-villa-slider-col,
    .leaf-villa-text-col {
        width: 100%;
    }

    .leaf-villa-slider-col {
        padding-right: 0;
        margin-bottom: 30px;
        order: 2;
        padding-left: 0px;
    }

    .leaf-villa-text-col {
        padding-left: 0;
        order: 1;
        margin-bottom: 30px;
    }

    .leaf-villa-slider-wrap {
        height: auto;
    }
}

.villa-slider .content,
.amenitie-slider .content,
.story-slider .content {
    position: relative;
}

.villa-slider .content::before,
.amenitie-slider .content::before,
.story-slider .content::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to top, #000, #0000, #0000);
}

.villa-slider .content .text,
.amenitie-slider .content .text,
.story-slider .content .text {
    font-family: var(--font-onset);
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 13px;
    height: fit-content;
    padding: 10px 5px;
    color: var(--thm-gold);
    z-index: 2;
}

.plan .plan-tab-list,
.amenities .amenities-tab-list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: center;
}

.plan .plan-tab-list li,
.amenities .amenities-tab-list li {
    margin: 10px 16px;
    padding: 8px 0px;
    color: var(--text-black);
    font-weight: 500;
    font-family: var(--font-onset);
    font-size: 24px;
    line-height: 32px;
    border-bottom: 2px solid #0000;
    transition: all 0.5s;
    cursor: pointer;
}

.plan .plan-tab-list li.active,
.plan .plan-tab-list li:hover,
.amenities .amenities-tab-list li.active,
.amenities .amenities-tab-list li:hover {
    border-color: var(--thm-gold);
}

.plan .plan-tab-content,
.amenities .amenities-tab-content {
    display: none;
}

.plan .plan-tab-content.active,
.amenities .amenities-tab-content.active {
    display: block;
}

@media (max-width: 768px) {

    .plan .plan-tab-list,
    .amenities .amenities-tab-list {
        justify-content: flex-start;
    }
}

.plan .points,
.amenities .points {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

ul.circle-number-list {
    list-style-type: none;
}

ul.circle-number-list li {
    position: relative;
    padding-left: 28px;
    margin: 10px 10px 10px 0;
    font-size: 10px;
    line-height: 20px;
    text-transform: uppercase;
}

ul.circle-number-list li::before {
    content: attr(data-list);
    background-color: var(--thm-gold);
    color: var(--text-white);
    height: 17px;
    width: 17px;
    font-size: 11px;
    line-height: 11px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 50%;
}

.color-list li {
    padding-left: 25px;
    position: relative;
    list-style-type: none;

}

.color-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 20px;
    width: 20px;
    background-color: var(--c);
}

.plan .plan-info-box {
    display: flex;
    justify-content: space-evenly;
}

.plan .plan-info-box ul li {
    margin: 10px 10px 10px 0;
}

.plan .plan-info-box ul.normal {
    padding-left: 25px;
}

.amenities .amenities-tab-content {
    position: relative;
}

.amenities .slider-overlapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
}

.amenities-tab-content .content-center-box {
    display: flex;
    /* align-items: center; */
    flex-flow: column;
    justify-content: center;
}

.faq {
    color: var(--text-white);
    opacity: 0.8;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    max-width: 75%;
}

.faq * {
    transition: all 0.5s;
}

.faq .title {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0px 10px 5px 0;
    padding-right: 30px;
    transition: all 0.5s;
}

.faq.active .title {
    background-color: #0003;
    padding: 5px 10px 5px 10px;
}

.faq .title::after {
    content: '';
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-image: url('../images/icons/plus.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    transition: all 0.5s;
}

.faq.active .title::after {
    background-image: url('../images/icons/mines.svg');
}

.faq .grid-box {
    display: grid;
    grid-template-rows: 0fr;
    grid-template-columns: 1fr;
    transition: all 0.5s;
}

.faq .content {
    overflow: hidden;
    padding: 0px 10px;
}

.faq.active .content {
    padding: 5px 10px;
}

.faq .content .sub-title {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-onset);
    text-transform: uppercase;
}

.faq .content ul {
    margin-bottom: 10px;
    padding-left: 20px;
}

.faq .content ul li {
    margin-bottom: 5px;
}

.faq.active .grid-box {
    grid-template-rows: 1fr;
}

.awards {
    position: relative;
}

.awards::before {
    content: '';
    position: absolute;
    height: 1px;
    background-color: #053A32;
    width: 98%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.awards .content-center-box {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    justify-content: center;
}

.awards .content-box {
    background: rgba(247, 249, 233, 1);
    color: var(--text-black);
    padding: 45px;
    width: calc(100% - 40px);
    margin: auto;
}

.awards .content-box .grid-box {
    max-width: 65%;
    margin: auto auto auto;
}

.awards .content-box .grid-box .img {
    background-color: var(--white);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.awards .content-box .grid-box .img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nearby-accordion {
    margin: 30px 0px;
    max-width: 90%;
}

.nearby-accordion .accordion-item {
    background-color: transparent;
    border: none;
    width: 90%;
    margin-right: auto;
    margin-left: 0;
}

.nearby-accordion .accordion-header {
    margin: 0;
}

.nearby-accordion .accordion-button {
    display: flex;
    align-items: center;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 5px 30px 5px 0;
    transition: all 0.5s;
}

.nearby-accordion .accordion-button:not(.collapsed) {
    background-color: #0003;
    color: inherit;
    padding: 5px 30px 5px 10px;
    box-shadow: none;
}

.nearby-accordion .accordion-button:focus {
    box-shadow: none;
}

.nearby-accordion .accordion-button::after {
    background-image: url('../images/icons/plus.svg');
    background-size: 12px;
    width: 20px;
    height: 20px;
    transition: all 0.5s;
}

.nearby-accordion .accordion-button:not(.collapsed)::after {
    background-image: url('../images/icons/mines.svg');
    transform: none;
}

.nearby-accordion .icon {
    width: 18px;
    min-width: 18px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nearby-accordion .icon img {
    width: 100%;
}

.nearby-accordion .text {
    font-family: var(--font-onset);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.nearby-accordion .accordion-body {
    color: var(--text-white);
    opacity: 0.8;
    font-weight: 300;
    font-size: 14px;
    padding: 5px 10px;
}

.nearby-accordion .accordion-body .sub-title {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-onset);
    text-transform: uppercase;
}

.nearby-accordion .accordion-body ul {
    margin-bottom: 10px;
    padding-left: 20px;
}

.nearby-accordion .accordion-body ul li {
    margin-bottom: 5px;
}

.qr-box {
    background: rgba(7, 69, 60, 1);
    display: grid;
    grid-template-columns: auto 1fr;
    max-width: 500px;
}

.qr-box .content {
    margin: auto;
    padding: 10px;
}

.qr-box .img {
    margin-right: 8px;
}

.qr-box .img img {
    display: block;
    width: 100%;
    min-width: 100px;
    height: 100%;
}

.qr-box .thm-btn {
    border: 1px solid var(--thm-gold);
    color: var(--thm-gold);
    display: flex;
    align-items: center;
    width: fit-content;
    margin: auto;
}

.qr-box .thm-btn:hover {
    background: var(--thm-green);
}

.qr-box .thm-btn .icon {
    margin-right: 10px;
}

.qr-box .thm-btn .icon img {
    display: block;
    width: 100%;
}

.story .chapter-icon {
    display: block;
    width: fit-content;
    margin: auto auto 55px;
    max-width: 260px;
}

.story {
    position: relative;
}

.story .slider-overlapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    width: 50%;
}

.story .slider-overlapper .swiper-slide .content {
    user-select: none;
}

.story .story-content-box {
    position: relative;
}

.feature-grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
}

.feature-grid-box li {
    display: flex;
    padding: 10px 10px 10px 0;
    align-items: center;
    margin: 5px 0px;
}

.feature-grid-box li .icon {
    height: 40px;
    min-width: 40px;
    width: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-grid-box li .icon img {
    display: block;
    width: 100%;
}

.feature-grid-box li .text {
    text-transform: uppercase;
    color: var(--thm-gold);
    font-size: 13px;
}

.contact {
    background: #F7F9E9;
    border-bottom: 1px solid #EFDFBC;
}

.contact .img {
    display: block;
    margin: auto;
    margin: auto auto 25px;
    width: fit-content;
}

.contact .img img {
    display: block;
    width: 100%;
}

.contact .thm-btn {
    border: 1px solid var(--thm-gold);
    text-transform: uppercase;
    margin: auto;
    display: block;
    width: fit-content;
    color: var(--thm-gold);
    padding: 10px 25px;
    background: #0000;
    transition: all 0.5s;
    font-weight: 500;
}

.contact .thm-btn:hover {
    color: var(--white);
    background: var(--thm-gold);
}

.address {
    background-color: #eef0db;
}

.address .title-icon {
    display: flex;
    align-items: center;
}

.address .title-icon .icon {
    min-width: 30px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.address .title-icon .icon img {
    display: block;
    width: 100%;
}

.address .title-icon .text {
    font-size: 30px;
    /* text-transform: uppercase; */
    color: var(--thm-gold);
}

footer .f-logo-box {
    display: flex;
}

footer .f-logo-box .logo {
    min-width: 100px;
    margin-right: 15px;
}

footer .contact-links {
    display: flex;
    justify-content: flex-start;
    flex-flow: column;
    height: 100%;
    width: 100%;
    gap: 0;
}

footer .contact-links .rera-text {
    font-size: 13px;
    margin: 0 5px 10px;
}

footer .contact-links ul {
    list-style-type: none;
}

footer .contact-links ul:last-child {
    display: none;
}

footer .contact-links ul li {
    display: flex;
    font-size: 13px;
    color: var(--thm-gold);
    line-height: 20px;
    margin: 0px 5px 10px;
}

footer .contact-links ul li .icon {
    min-width: 18px;
    height: 18px;
    width: 18px;
    margin-right: 6px;
}

footer .contact-links ul li .text {
    margin-top: -2px;
}

footer .contact-links ul li .icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .contact-links ul li a {
    text-decoration: none;
    color: var(--thm-gold);
}

footer .contact-links ul li a:hover {
    text-decoration: underline;
}

footer .partner-box {
    display: flex;
    height: 100%;
    flex-flow: column;
    justify-content: space-between;
    width: fit-content;
    margin: auto;
}

footer .partner {
    list-style-type: none;
    display: flex;
}

footer .partner li {
    min-width: 45px;
    margin-right: 10px;
}

footer .usefull-links-box {
    display: flex;
    width: 100%;
    flex-flow: column;
    justify-content: flex-start;
    height: 100%;
}

footer .usefull-links-box .social-links {
    display: none;
    flex-wrap: wrap;
    list-style-type: none;
    margin-left: auto;
}

footer .usefull-links-box .social-links li img {
    min-width: 25px;
    display: block;
    width: 25px;
    height: 25px;
    margin: 0px 5px 5px;
}

footer .usefull-links-box .usefull-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    list-style-type: none;
}

footer .usefull-links-box .usefull-links li a {
    color: var(--thm-gold);
    font-size: 13px;
    text-decoration: none;
}

footer .usefull-links-box .usefull-links li a:hover {
    text-decoration: underline;
}

footer .usefull-links-box .usefull-links li {
    margin: 5px;
}

footer .footer-disclaimer {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

footer .footer-disclaimer h5 {
    font-size: 18px;
}

footer .footer-disclaimer .content-text {
    color: var(--text-white);
    line-height: 22px;
    opacity: 0.85;
}

footer .footer-disclaimer .content-text p {
    color: var(--text-white);
}

/* Bootstrap modal customization */
.modal {
    z-index: 100000;
}

.modal-backdrop {
    z-index: 99999;
    background-color: rgba(7, 80, 70, 1);
}

.modal-backdrop.show {
    opacity: 0.91;
}

.modal .modal-content {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.modal .modal-close-x {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.modal .modal-close-x:hover {
    background: var(--thm-gold);
    transform: rotate(90deg);
}

.modal .modal-close-x img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.modal .modal-body {
    padding: 0;
}

.modal .disclaimer,
.modal .privacy {
    background-color: var(--text-white);
    width: 100%;
    padding: 45px;
    height: fit-content;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.modal h2 {
    color: var(--thm-gold);
    text-transform: uppercase;
    font-family: var(--font-onset);
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
}

.modal .disclaimer .content-text,
.modal .privacy .content-text {
    font-size: 14px;
    color: var(--black);
    line-height: 22px;
    margin-bottom: 10px;
    overflow: auto;
}

.modal .popup-btn {
    color: var(--text-white);
    background: var(--thm-green);
    border-width: 0;
    padding: 12px 25px;
    cursor: pointer;
    font-family: var(--font-tight);
    font-weight: 400;
    transition: all 0.5s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

.modal .popup-btn:hover {
    background: var(--thm-gold);
}

/* ===== Redesigned popup form ===== */
.modal .popup-form {
    display: flex;
    width: 100%;
    background: var(--text-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    max-height: calc(100vh - 60px);
}

.modal .popup-form-body {
    flex: 1 1 auto;
    width: 100%;
    padding: 42px 38px;
    overflow-y: auto;
}

.modal .popup-form-body form {
    display: flex;
    flex-direction: column;
}

.modal .popup-form-eyebrow {
    display: inline-block;
    font-family: var(--font-tight);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--thm-gold);
    margin-bottom: 6px;
}

.modal .popup-form-body h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 8px;
}

.modal .popup-form-sub {
    font-family: var(--font-tight);
    font-size: 13.5px;
    color: #6b6b6b;
    margin-bottom: 22px;
    line-height: 1.5;
}

.modal .popup-field {
    position: relative;
    margin-bottom: 14px;
}

.modal .popup-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--thm-gold);
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}

.modal .popup-form input.form-control {
    height: 50px;
    width: 100%;
    border: 1px solid #dcdccf;
    background-color: #fbfbf3;
    text-align: left;
    padding: 6px 16px 6px 44px;
    font-family: var(--font-tight);
    font-size: 14px;
    text-transform: none;
    border-radius: 10px;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.modal .popup-form input.form-control:focus {
    border-color: var(--thm-green);
    box-shadow: 0 0 0 3px rgba(7, 80, 70, 0.12);
    background-color: #fff;
}

.modal .popup-form input.form-control::placeholder {
    color: #9a9a90;
}

/* Bootstrap validation overrides for modal forms */
.modal .popup-form .was-validated .form-control:invalid,
.modal .popup-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.modal .popup-form .was-validated .form-control:valid,
.modal .popup-form .form-control.is-valid {
    border-color: #198754;
    background-image: none;
}

.modal .popup-form .invalid-feedback {
    text-align: left;
    font-size: 11px;
    color: #dc3545;
    margin-top: 3px;
    margin-bottom: 0;
    padding-left: 4px;
}

.modal .popup-form .popup-btn {
    width: 100%;
    height: 52px;
    margin-top: 8px;
    border-radius: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal .popup-form-note {
    font-family: var(--font-tight);
    font-size: 11.5px;
    color: #8a8a80;
    text-align: center;
    margin: 14px 0 0;
}

.modal .popup-form-note i {
    color: var(--thm-green);
    margin-right: 4px;
}

@media (max-width: 767.9px) {
    .modal .popup-form-body {
        padding: 30px 24px;
    }

    .modal .popup-form-body h2 {
        font-size: 21px;
        line-height: 27px;
    }
}

.modal .close-btn {
    text-transform: uppercase;
    color: var(--text-white);
    background-color: transparent;
    font-family: var(--font-tight);
    border-width: 0;
    cursor: pointer;
    padding: 5px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto auto;
}

.modal .close-btn .icon {
    height: 20px;
    width: 20px;
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .close-btn .icon img {
    display: block;
    width: 100%;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    display: block;
    height: 30px;
    width: 30px;
    color: #fff;
    filter: drop-shadow(2px 4px 6px black);
}

/*.amenitie-slider  .swiper-button-next,*/
/*.amenitie-slider .swiper-button-prev{*/
/*   color:#C19834; */
/*}*/
.swiper .swiper-button-prev {
    left: 20px;
}

.swiper .swiper-button-next {
    right: 20px;
}

.swiper .swiper-button-disabled {
    display: none;
}

.preloader {
    position: fixed;
    z-index: 99999999;
    width: 100%;
    height: 100dvh;
    height: 100vh;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;

}

.preloader .img {
    animation: loading 3s linear infinite;
}

@keyframes loading {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* ── Form Submit Loader Overlay ── */
.form-loader-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 72, 63, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.form-loader-overlay.active {
    display: flex;
}

.form-loader-box {
    text-align: center;
}

.form-loader-spinner {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(193, 152, 52, 0.25);
    border-top-color: rgba(193, 152, 52, 1);
    border-radius: 50%;
    margin: 0 auto 18px;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.form-loader-text {
    color: #f7f9e9;
    font-family: var(--font-onset);
    font-size: 14px;
    letter-spacing: 0.06em;
}

/* Submit button loading state */
.popup-btn.loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

/* ── Fixed Bottom Buttons ── */
.fixed-side-btn {
    position: fixed;
    bottom: 30px;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-gold);
    color: #fff;
    font-family: var(--font-onset);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 10px 18px;
    white-space: nowrap;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(193, 152, 52, 0.45);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    animation: sideBtnPulse 2s ease-in-out infinite;
}

.fixed-left {
    left: 30px;
}

.fixed-right {
    right: 30px;
}

.fixed-side-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.32) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: sideShimmer 2.4s ease-in-out infinite;
}

.fixed-side-btn:hover {
    background: var(--thm-green);
    color: #fff;
    box-shadow: 0 4px 28px rgba(7, 80, 70, 0.55);
    animation: none;
}

.fixed-side-btn:hover::before {
    display: none;
}

@keyframes sideBtnPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(193, 152, 52, 0.45);
    }

    50% {
        box-shadow: 0 6px 32px rgba(193, 152, 52, 0.9), 0 0 0 6px rgba(193, 152, 52, 0.15);
    }
}

@keyframes sideShimmer {
    0% {
        left: -100%;
    }

    60% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

@media (max-width: 576px) {
    .fixed-side-btn {
        font-size: 9px;
        padding: 9px 12px;
        bottom: 14px;
        letter-spacing: 0.06em;
    }

    .fixed-left {
        left: 8px;
    }

    .fixed-right {
        right: 8px;
    }

    header nav .logo {
        max-width: 80px;
    }
}

/* ── Mobile Fixed Bottom Bar ── */
.mobile-fixed-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9995;
    background: var(--thm-dark-green);
    height: 52px;
    align-items: stretch;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.30);
}

.mfb-btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--thm-green);
    color: #fff;
    text-decoration: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    padding: 0 12px;
    font-family: var(--font-onset);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease;
    position: relative;
}

.mfb-btn:last-child {
    border-right: none;
}

.mfb-btn:active {
    background: var(--thm-dark-green);
}

.mfb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mfb-icon i {
    font-size: 20px;
    line-height: 1;
}

.mfb-label {
    line-height: 1;
    font-size: 9px;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .mobile-fixed-bar {
        display: flex;
    }

    .fixed-side-btn {
        display: none !important;
    }

    body {
        padding-bottom: 52px;
    }
}

/* ── Horizontal Enquiry Form Card ── */
.inline-form-section {
    position: relative;
    z-index: 10;
    padding: 50px 0px;
    background: #F7F9E9;
}

/* subtle dot pattern overlay */
.inline-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(7, 80, 70, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* ── Section title row ── */
.inline-form-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;
}

.inline-form-section-title h3 {
    font-family: var(--font-onset);
    font-size: 18px;
    font-weight: 500;
    color: var(--thm-green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

.inline-form-section-title h3 em {
    font-style: normal;
    color: var(--thm-green);
}

.ifsep {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(193, 152, 52, 0.5), transparent);
    max-width: 220px;
}

/* ── Card ── */
.inline-form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    border-top: 4px solid var(--thm-gold);
}

.inline-form-card-body {
    padding: 28px 32px;
}

.inline-form {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.inline-field {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.inline-field label {
    font-family: var(--font-tight);
    font-size: 12px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.02em;
}

.inline-field input {
    width: 100%;
    height: 46px;
    background: #f5f5f5;
    border: 1.5px solid #e8e8e8;
    border-radius: 50px;
    color: #2d2d2c;
    font-family: var(--font-tight);
    font-size: 13px;
    padding: 0 20px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}

.inline-field input::placeholder {
    color: #b0b0b0;
    font-size: 13px;
}

.inline-field input:focus {
    border-color: var(--thm-gold);
    background: #fff;
}

.inline-field .invalid-feedback {
    font-size: 10.5px;
    color: #e05252;
    padding-left: 14px;
}

.inline-form.was-validated .inline-field input:invalid {
    border-color: #e05252;
}

.inline-form.was-validated .inline-field input:valid {
    border-color: var(--thm-gold);
}

.inline-form-btn {
    height: 46px;
    padding: 0 30px;
    background: var(--thm-green);
    color: #fff;
    font-family: var(--font-onset);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(7, 80, 70, 0.35);
    align-self: flex-end;
}

.inline-form-btn:hover {
    background: var(--thm-gold);
    box-shadow: 0 4px 20px rgba(193, 152, 52, 0.45);
}

.inline-form-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}


@media (max-width: 991px) {
    .inline-form {
        flex-wrap: wrap;
        gap: 12px;
    }

    .inline-field {
        min-width: calc(50% - 8px);
        flex: unset;
        width: calc(50% - 8px);
    }

    .inline-form-btn {
        width: 100%;
        border-radius: 50px;
        margin-top: 4px;
    }

    .inline-form-card-body {
        padding: 24px 24px;
    }

    .inline-form-card-header {
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .inline-form-section {
        position: relative;
        z-index: 10;
        padding: 50px 0px 0px;
        background: #F7F9E9;
    }
}

@media (max-width: 576px) {
    .inline-field {
        min-width: 100%;
        width: 100%;
    }

    .inline-form-card-body {
        padding: 20px 18px;
    }

    .inline-form-card-header {
        padding: 14px 18px;
    }

    .inline-form-card-title {
        font-size: 15px;
    }
}

footer .contact-links ul {
    padding-left: 0rem !important;
}

/* ── Footer Mobile Fixes ── */
@media (max-width: 768px) {
    .usefull-links {
        padding-left: 0px !important;
    }

    footer {
        padding-top: 35px;
        padding-bottom: 35px !important;
    }

    footer .thm-col-4.mobile-mt-45 {
        margin-top: 20px;
    }

    footer .f-logo-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    footer .f-logo-box .logo {
        margin-right: 0;
        margin-bottom: 15px;
        max-width: 130px;
    }

    footer .contact-links {
        align-items: flex-start;
    }

    footer .contact-links .rera-text {
        text-align: left;
    }

    footer .contact-links ul li {
        justify-content: flex-start;
    }

    footer .partner-box {
        margin: 0;
        width: 100%;
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }

    footer .partner {
        justify-content: flex-start;
        padding-left: 0;
        margin-left: 0;
    }

    footer .usefull-links-box {
        align-items: flex-start;
        height: auto;
    }

    footer .usefull-links-box .usefull-links {
        justify-content: flex-start;
        text-align: left;
        padding-left: 0;
        margin-left: 0;
    }

    footer .usefull-links-box .usefull-links li {
        text-align: left;
        margin-left: 0;
    }

    footer .contact-links .rera-text {
        text-align: left;
        margin-left: 0;
    }
}