*,
::before,
::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

:root {
    --color-bg-page: #EFECE7;
    --color-bg-light: #F9F8F4;
    --color-primary: #433732;
    --color-primary-light: #E8E2D8;
    --color-secondry: #C3AD7D;
    --color-secondry-light: #ffe2a3;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #262626;
    --color-bg-gredient: linear-gradient(180deg, #9E8156 0%, #917347 100%);
    --primary-font: 'Canela', sans-serif;
    --secondry-font: 'LibreFranklin', sans-serif;
    --ease: cubic-bezier(.22, .68, 0, 1);
    --ink: #2b221a;
}

@font-face {
    font-family: Canela;
    src: url("fonts/Canela-Regular-Trial.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: LibreFranklin;
    src: url("fonts/LibreFranklin-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg-page);
    font-family: LibreFranklin, sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Canela, sans-serif;
    color: rgb(140, 115, 75);
}

.bg-dark {
    background-color: var(--color-primary) !important;
    color: white;
}

.bg-white {
    background-color: var(--color-bg-light);
}

.z-3 {
    z-index: 9;
}

img {
    max-width: 100%;
    height: auto;
}

.section-pedding {
    padding: 4% 6%;
}

.section-pedding-sm {
    padding: 3% 6%;
}

.section-heading {
    font-size: calc(18px + 1vw);
    letter-spacing: 3px;
    margin-bottom: 1.8em;
}

.page-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    min-width: 165px;
    border: 1px solid rgb(158, 129, 86);
    border-radius: 3px;
    background: transparent;
    color: rgb(158, 129, 86);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s;
    z-index: 1;
}

.page-btn::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgb(158, 129, 86);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s;
    z-index: -1;
}

.page-btn::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0px;
    left: -60px;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.page-btn:hover {
    border-color: rgb(158, 129, 86);
    box-shadow: rgba(158, 129, 86, 0.25) 0px 8px 20px;
    transform: translateY(-2px);
    color: rgb(255, 255, 255) !important;
}

.page-btn:hover::before {
    transform: scaleX(1);
}

.page-btn:hover::after {
    left: 120%;
}

.page-btn:active {
    transform: translateY(0px);
}

.art-imp {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 8px;
    color: var(--color-white);
    z-index: 9;
}

.site-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0px clamp(20px, 8vw, 130px);
    background: transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
    opacity: 0;
}

.site-header.scrolled {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 24px;
    background-color: rgb(255 255 255);
    opacity: 1;
}
.scrolled .logo{
    filter: none;
}

.logo {
    width: 135px;
    filter: invert(1) brightness(200);
}

.site-header.scrolled .logo img {}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ink);
    padding: 8px 4px;
    filter: invert(1) brightness(200);
}

.site-header.scrolled .menu-trigger {
    color: var(--color-bg-light);
    filter: invert(1);
}

.menu-trigger .bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.menu-trigger .bars span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.4s var(--ease);
}

.site-header.scrolled .menu-trigger .bars span {
    background: var(--color-bg-light);
}

.menu-trigger:hover .bars span:nth-child(1) {
    width: 100%;
}

.menu-trigger .bars span:nth-child(2) {
    width: 70%;
    align-self: flex-end;
}

body.menu-open .menu-trigger .bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100%;
}

body.menu-open .menu-trigger .bars span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100%;
}

body.menu-open .menu-trigger .label {
    opacity: 0;
}

.nav-overlay {
    position: fixed;
    inset: 0px;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
    z-index: 99998;
}

body.menu-open .nav-overlay {
    opacity: 1;
    visibility: visible;
}

.nav-panel {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100%;
    width: min(380px, 82vw);
    background: linear-gradient(rgb(158, 129, 86) 0%, rgb(158, 129, 86) 100%);
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease);
    display: flex;
    flex-direction: column;
}

body.menu-open .nav-panel {
    transform: translateX(0px);
}

.nav-panel-top {
    display: flex;
    justify-content: flex-end;
    padding: 24px 24px 0px;
}

.nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-bg-light);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-bg-light);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav-close:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
    transform: rotate(90deg);
}

.nav-links {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 44px;
    gap: 2px;
    overflow-y: auto;
    margin-top: 30px;
}

.nav-links a {
    position: relative;
    display: inline-block;
    padding: 12px 0px;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(14px);
    transition: color 0.35s var(--ease), transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 6px;
    width: 0%;
    height: 1px;
    background: var(--color-bg-light);
    transition: width 0.4s var(--ease);
}

.nav-links a:hover {
    color: var(--color-primary-light);
    padding-left: 8px;
}

.nav-links a:hover::after {
    width: 36px;
}

.nav-links a.active {
    color: var(--color-primary);
}

body.menu-open .nav-links a {
    opacity: 1;
    transform: translateY(0px);
    text-decoration: none;
}

body.menu-open .nav-links a:nth-child(1) {
    transition-delay: 0.08s;
}

body.menu-open .nav-links a:nth-child(2) {
    transition-delay: 0.12s;
}

body.menu-open .nav-links a:nth-child(3) {
    transition-delay: 0.16s;
}

body.menu-open .nav-links a:nth-child(4) {
    transition-delay: 0.2s;
}

body.menu-open .nav-links a:nth-child(5) {
    transition-delay: 0.24s;
}

body.menu-open .nav-links a:nth-child(6) {
    transition-delay: 0.28s;
}

body.menu-open .nav-links a:nth-child(7) {
    transition-delay: 0.32s;
}

body.menu-open .nav-links a:nth-child(8) {
    transition-delay: 0.36s;
}

body.menu-open .nav-links a:nth-child(9) {
    transition-delay: 0.4s;
}

body.menu-open .nav-links a:nth-child(10) {
    transition-delay: 0.44s;
}

.nav-panel-bottom {
    padding: 20px 44px 30px;
    border-top: 1px solid var(--panel-line);
    font-size: 11px;
    letter-spacing: 0.5px;
    color: rgba(245, 240, 232, 0.55);
}

body.menu-open {
    overflow: hidden;
}

.banner-section img {
    height: 100%;
    object-fit: cover;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    z-index: 2;
    top: 40%;
    left: 8%;
    max-width: calc(485px + 5vw);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.banner-text .phara {
    color: rgb(255, 255, 255);
}

.banner-text .banner-heading h1 {
    color: rgb(255, 255, 255);
    font-size: clamp(1.5rem, 1.5rem + 2vw, 3rem);
    font-weight: 300;
    word-spacing: 4px;
    line-height: 70px;
}

.banner-text .banner-heading h1 span {
    color: rgb(201, 201, 201);
    font-style: italic;
}

.banner-typology {
    background: var(--color-bg-gredient);
    color: var(--color-white);
    display: none;
}

.banner-typology .banner-typlogy-mob {
    display: none;
}

.banner-typology .banner-typlogy-des {
    display: flex;
    justify-content: space-evenly;
    padding: 30px 10px;
}

.banner-points {
    text-align: center;
}

.banner-points.st-price span {
    font-size: 12px;
}

.banner-points p {
    margin-bottom: 10px;
    font-size: 16px;
}

.banner-points h2 {
    font-size: calc(12px + 0.5vw);
    color: var(--color-white);
    font-family: Canela, sans-serif;
    letter-spacing: 1.5px;
}

.banner-points h2 img {
    filter: invert(1);
    max-width: 18px;
}

.banner-form-section {
    background-color: var(--color-bg-light);
}

.banner-form {
    position: fixed;
    right: 0px;
    top: 60%;
    transform: translate(0%, -60%);
    z-index: 9999;
    display: flex;
    align-items: center;
}

.banner-form-heading {
    font-size: calc(10px + 1rem);
    margin-bottom: 30px;
}

.banner-form .my-form-grid {
    position: relative;
    width: 380px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
    pointer-events: none;
    background-color: rgb(239, 236, 231);
}

.banner-form .my-form-grid.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    pointer-events: auto;
}

.banner-form .my-form-input {
    padding: 0px 0px 6px;
    margin-bottom: 14px;
}

.banner-enauiry-btn {
    color: var(--color-white);
    background-color: rgb(158, 129, 86);
    writing-mode: sideways-lr;
    font-size: calc(10px + 0.2vw);
    padding: 20px 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    position: absolute;
    right: 0px;
    min-height: 150px;
    text-align: center;
}

.close-btn img {
    max-height: 120px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.close-btn img.active {
    opacity: 1;
    visibility: visible;
}

.highlight-section {
    background-color: rgb(255, 255, 255);
}

.overview-section,
.amenities-section {
    background-image: url("../images/struter.webp");
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.floor-plan-section {
    background-image: url("../images/building-bg.png");
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.overview-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.overview-phara {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.overview-image-container {
    position: relative;
    /* height: 91vh; */
}

.overview-image-container::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(rgb(0 0 0 / 0%) 50%, rgb(0 0 0 / 64%) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overview-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    inset: 0px;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }
}

.overview-highlights {
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-evenly;
    left: 50%;
    transform: translate(-50%);
}

.overview-highlights .over-high-box {
    color: var(--color-white);
    border-right: 1px solid rgba(255, 255, 255, 0.576);
    width: 25%;
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.overview-highlights .over-high-box h3 {
    color: var(--color-white);
    font-size: calc(16px + 1.5vw);
}

.overview-highlights .over-high-box:nth-last-child(1) {
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
}

.highlight-heading {
    text-align: center;
}

.highlight-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px;
}

.highlight-pionts-left {
    background: linear-gradient(270deg, rgb(232, 225, 215) 0%, rgba(232, 225, 215, 0) 100%);
}

.highlight-pionts-right {
    background: linear-gradient(270deg, rgba(232, 225, 215, 0) 0%, rgb(232, 225, 215) 100%);
}

.highlight-points {
    padding: 40px;
}

.highlight-points p {
    margin: 0px;
    font-size: calc(10px + 0.3vw);
}

.highlight-points h4 {
    margin-bottom: 16px;
    font-size: calc(12px + 0.7vw);
}

.highlight-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-height: calc(500px + 10vw);
    position: relative;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.amenities-section {
    background-color: var(--color-bg-light);
}

.amenities-icon-contaienr {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px 20px;
    justify-items: center;
    padding-top: 20px;
}

.amenities-icon-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.amenities-icon-box h4 {
    font-family: var(--secondry-font);
    font-size: calc(10px + 0.3vw);
    margin-top: 20px;
    text-align: center;
}

.amenities-icon-box .amenities-icon-image {
    width: calc(60px + 1vw);
    height: calc(60px + 1vw);
    background-color: var(--color-primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    margin: 0px auto;
}

.amenities-icon-box .amenities-icon-image img {
    width: calc(25px + 0.5vw);
    height: calc(25px + 0.5vw);
    filter: brightness(0);
}

.pricing-section {
    background: var(--color-bg-gredient);
    color: var(--color-white);
}

.pricing-heading .section-heading {
    color: var(--color-white);
}

.pricing-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pricing-image img {
    width: 100%;
    height: 883px;
    object-fit: cover;
}

.pricing-content-box {}

.pricing-box {
    display: flex;
    justify-content: space-around;
    padding: 40px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.pricing-box:nth-last-child(1) {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.pricing-box p {
    font-family: var(--primary-font);
    font-size: calc(10px + 0.5vw);
    font-weight: 300;
}

.pricing-box h4 {
    font-family: var(--secondry-font);
    color: var(--color-white);
    font-size: calc(14px + 0.5vw);
    font-weight: 600;
}

.pricing-box h4 span {
    font-size: calc(8px + 0.3vw);
    font-weight: 300;
}

.pricing-btn .page-btn-white {
    color: var(--color-primary);
    background-color: var(--color-white);
    padding: 10px 20px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 6px;
    margin-top: 60px;
    margin-left: 100px;
}

.floor-plan-section {
    background-color: var(--color-bg-page);
}

.floor-plan-content {
    display: grid;
    grid-template-columns: minmax(260px, 25vw) 1fr;
    gap: 20px;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
}

.floor-plan-viewer {
    position: relative;
    width: 100%;
}

.floor-plan-tab-ul {
    border-bottom: 1px solid rgb(210, 210, 210);
    justify-content: center;
}

.floor-plan-nav {
    font-size: calc(12px + 0.5vw);
    background-color: transparent !important;
    color: var(--primary-font) !important;
}

.floor-plan-nav.active {
    border-bottom: 2px solid var(--color-primary);
    font-weight: 600;
    border-radius: 0px;
}

.floor-plan-section .tab-content {
    padding: 60px 10px 0px;
}

.floor-plan-image {
    display: block;
    width: 100%;
    height: auto;
}

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(158, 129, 86);
    color: var(--color-white);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    border-radius: 10px;
}

.view-btn:hover {
    background: rgb(35, 32, 27);
    transform: translate(-50%, -50%) scale(1.03);
}

.view-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.floor-plan-details-title {
    font-size: 30px;
    margin: 0px 0px 18px;
    color: var(--color-primary);
}

.floor-plan-description {
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0px 0px 34px;
}

.floor-plan-stats {
    display: flex;
    gap: 100px;
}

.floor-plan-stat {
    flex: 1 1 0%;
}

.floor-plan-stat:not(:last-child) {
    border-right: 1px solid var(--color-primary);
}

.floor-plan-stat-label {
    display: block;
    font-size: 15px;
    color: var(--color-primary);
    margin: 0px 0px 6px;
}

.floor-plan-stat-value {
    display: block;
    font-size: calc(14px + 0.5vw);
    font-weight: 600;
}

.location-advantages-section {
    background-color: var(--color-bg-light);
}

.location-map-image-box {
    position: relative;
}

.location-image {
    width: 100%;
    height: 100%;
    overflow: hidden;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.location-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.location-btn .view-btn {
    left: auto;
    right: 20px;
    top: 20px;
    transform: none;
}

.location-image {
    overflow: hidden;
    width: 100%;
    height: 580px;
    border-radius: 20px;
    cursor: pointer;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }
}

.location-image-icon {
    border: 1px solid rgba(77, 64, 58, 0.54);
    border-radius: 50%;
    padding: 11px;
    display: inline-flex;
}

.location-image-icon img {
    width: 20px;
    height: 20px;
}

.loaction-name h5 {
    padding: 10px 0px;
    margin-bottom: 0px;
    font-size: 18px;
}

.loaction-name p {
    font-size: 12px;
    margin-bottom: 0px;
}

.location-advantages-location-box {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    gap: 13px;
}

.location-advantages-section .location-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: 2fr 350px;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 80%;
    height: 70vh;
    min-height: 300px;
    margin: 0px auto;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-grid-box,
.gallery-box {
    position: relative;
    overflow: hidden;
}

.gallery-grid-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box-left {
    grid-area: 1 / 1 / span 2;
}

.gallery-box-top-right {
    grid-area: 1 / 2;
}

.gallery-box-bottom-right {
    grid-area: 2 / 2;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-slider-btn {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 10px;
    border-radius: 50%;
}

.about-dev-section {
    background-color: rgb(158, 129, 86);
    color: var(--color-white);
}

.about-dev-container {
    display: flex;
    gap: 50px;
}

.about-dev-logo {
    background-color: var(--color-white);
    min-width: 350px;
    height: 350px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.about-dev-logo img {
    height: 80px;
    object-fit: contain;
}

.about-dev-content {
    margin: auto;
}

.about-dev-content .about-dev .section-heading {
    color: var(--color-white);
}

.about-dev-content .about-btn .page-btn {
    margin: 0px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.footer-form-section {
    background-color: var(--color-bg-light);
}

.footer-form-wrap {
    max-width: 80%;
    margin: 0px auto;
}

.footer-form-heading {
    font-size: 28px;
    color: var(--color-primary);
    margin: 0px 0px 8px;
}

.footer-form-subheading {
    font-size: 13.5px;
    color: var(--color-primary);
}

.footer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 48px;
    margin-top: 50px;
}

.footer-form-field {
    display: flex;
    flex-direction: column;
}

.footer-form-label {
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(31, 28, 24);
    margin-bottom: 10px;
}

.footer-form-input {
    width: 100%;
    border-width: medium medium 1px;
    border-style: none none solid;
    border-color: currentcolor currentcolor rgb(185, 178, 164);
    border-image: none;
    background: transparent;
    padding: 0px 0px 10px;
    font-size: 14px;
    color: rgb(31, 28, 24);
    outline: none;
    transition: border-color 0.25s;
    margin-bottom: 24px;
}

.footer-form-input::placeholder {
    color: var(--color-primary-light);
}

.footer-form-input:focus {
    border-bottom-color: var(--color-primary);
}

textarea.footer-form-input {
    resize: none;
    min-height: 22px;
}

.footer-form-consent {
    grid-column: 1 / 2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
}

.footer-form-checkbox {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.footer-form-consent-text {
    font-size: 11.5px;
    line-height: 1.55;
    color: rgb(111, 105, 95);
}

.footer-form-submit-wrap {
    grid-column: 2 / 3;
    display: flex;
    align-items: flex-start;
}

.footer-form-submit {
    width: 100%;
    margin-top: 8px;
    background: rgb(158, 129, 86);
    color: rgb(244, 241, 234);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 4px;
    padding: 16px 24px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.25s, transform 0.25s;
}

.footer-form-submit:hover {
    opacity: 0.9;
}

.footer-form-submit:active {
    transform: scale(0.99);
}

.footer-form-submit:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.footer-section {
    background-color: rgb(158, 129, 86);
    color: var(--color-white);
}

.footer-section .section-pedding {
    padding: 2% 6%;
}

.footer-block {
    max-width: 900px;
    margin: 0px auto;
    text-align: center;
}

.rera-info h6 {
    color: var(--color-white);
    font-size: calc(10px + 0.8vw);
    margin-bottom: 30px;
}

.disclaimer-text-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s;
}

.disclaimer-text-wrap.is-expanded {
    grid-template-rows: 1fr;
}

.disclaimer-text-inner {
    overflow: hidden;
    min-height: 0px;
}

.disclamer {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--color-white);
    text-align: center;
}

.disclaimer-preview {
    margin: 0px;
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: opacity 0.3s;
}

.disclaimer-text-wrap.is-expanded~.disclaimer-preview {
    display: none;
}

.disclaimer-toggle {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 0px;
    margin-top: 8px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.disclaimer-toggle:hover {
    opacity: 0.75;
}

.disclaimer-toggle:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

.footer-copyrights {
    display: flex;
    justify-content: space-evenly;
    border-top: 1px solid var(--color-primary-light);
    margin-top: 30px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.footer-copyrights>p {
    font-size: calc(8px + 0.4vw);
}

.footer-copyrights>p>a {
    color: var(--color-white);
    text-decoration: none;
}

.my-form-grid {
    background-color: var(--color-bg-page);
    padding: 10px;
}

.my-form-field {
    display: flex;
    flex-direction: column;
}

.my-form-label {
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(31, 28, 24);
    margin-bottom: 4px;
}

.my-form-input {
    width: 100%;
    border-width: medium medium 1px;
    border-style: none none solid;
    border-color: currentcolor currentcolor rgb(185, 178, 164);
    border-image: none;
    background: transparent;
    padding: 0px 0px 5px;
    font-size: 14px;
    color: rgb(31, 28, 24);
    outline: none;
    transition: border-color 0.25s;
    margin-bottom: 15px;
}

.my-form-input::placeholder {
    color: var(--color-primary-light);
}

.my-form-input:focus {
    border-bottom-color: var(--color-primary);
}

textarea.my-form-input {
    resize: none;
    min-height: 22px;
}

.my-form-consent {
    grid-column: 1 / 2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
}

.my-form-checkbox {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.my-form-consent-text {
    font-size: 8px;
    line-height: 1.55;
    color: rgb(111, 105, 95);
}

.my-form-submit-wrap {
    grid-column: 2 / 3;
    display: flex;
    align-items: flex-start;
}

.my-form-submit {
    width: 100%;
    margin-top: 8px;
    background: rgb(158, 129, 86);
    color: rgb(244, 241, 234);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 4px;
    padding: 16px 24px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.25s, transform 0.25s;
}

.my-form-submit:hover {
    opacity: 0.9;
}

.my-form-submit:active {
    transform: scale(0.99);
}

.my-form-submit:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.modal-header,
.modal-body {
    background-color: var(--color-bg-page);
}

.modal-title {
    color: var(--color-primary);
}

.float-btn {
    position: fixed;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 12px;
    z-index: 1000;
    text-decoration: none;
    animation: 1.25s cubic-bezier(0.66, 0, 0, 1) 0s infinite normal none running pulse;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 12px;
    }

    50% {
        transform: scale(1.12);
        box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 18px;
    }

    100% {
        transform: scale(1);
        box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 12px;
    }
}

.whatsapp-btn {
    left: 25px;
    background-color: rgb(37, 211, 102);
}

.call-btn {
    right: 25px;
    background-color: rgb(0, 123, 255);
}

.float-btn svg {
    width: 25px;
    height: 25px;
    fill: rgb(255, 255, 255);
}

.mobile-section-footer {
    display: none;
}

.stats-section {
    position: relative;
    padding: 16px;
    background: rgb(248, 246, 242);
    border: 1px solid rgba(158, 129, 86, 0.25);
    border-radius: 20px;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(158, 129, 86, 0.15);
    border-radius: 50%;
    top: -80px;
    right: -60px;
}

.stats-logo {
    text-align: center;
    margin-bottom: 30px;
}

.stats-logo img {
    width: 120px;
    height: auto;
    display: inline-block;
}

.stat-card {
    position: relative;
    min-height: 114px;
    padding: 7px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(158, 129, 86, 0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
}

.stat-card::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 4px;
    height: 0px;
    background: rgb(158, 129, 86);
    transition: height 0.4s;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgb(158, 129, 86);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 12px 30px;
}

.stat-card:hover::before {
    height: 100%;
}

.stat-number {
    display: block;
    margin-bottom: 8px;
    color: rgb(158, 129, 86);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.stat-title {
    display: block;
    color: rgb(51, 51, 51);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.stat-card:last-child .stat-number {
    font-size: 22px;
}

.custom-tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.custom-tab-btn {
    padding: 12px 30px;
    border: 1px solid rgb(158, 129, 86);
    background: transparent;
    color: rgb(158, 129, 86);
    cursor: pointer;
    transition: 0.3s;
}

.custom-tab-btn.active,
.custom-tab-btn:hover {
    background: rgb(158, 129, 86);
    color: rgb(255, 255, 255);
}

.custom-tab-pane {
    display: none;
}

.custom-tab-pane.active {
    display: block;
}

.specifications-card {
    height: 100%;
    padding: 22px 20px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(229, 223, 213);
    border-radius: 8px;
    transition: 0.3s;
}

.specifications-card h5 {
    margin: 0px 0px 12px;
    padding-bottom: 10px;
    color: rgb(158, 129, 86);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border-bottom: 1px solid rgb(238, 232, 223);
}

.specifications-card p {
    margin: 0px 0px 7px;
    color: rgb(85, 85, 85);
    font-size: 14px;
    line-height: 1.6;
}

.specifications-card p:last-child {
    margin-bottom: 0px;
}

.specifications-card:hover {
    border-color: rgb(158, 129, 86);
    box-shadow: rgba(158, 129, 86, 0.1) 0px 5px 18px;
    transform: translateY(-3px);
}

.sub-heading {
    color: rgb(156, 127, 84);
    font-size: 20px;
    font-weight: 500;
    margin: 0px 0px 10px;
    font-family: Canela, sans-serif;
    display: none;
}


/* /// */
/* =========================================================
   LUXURY PRICING
========================================================= */

.luxury-pricing-wrapper {
    --accent: #a0835b;
    --text: #29251f;
    --muted: #777168;
    --border: rgba(160, 131, 91, 0.25);
}


/* =========================================================
   MAIN PRICE CARD
========================================================= */

.luxury-price-card {
    position: relative;
    height: 100%;
    overflow: hidden;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: 16px;

    /*
        PREMIUM LINEN / PAPER TEXTURE
    */

    background-color: #f7f4ed;

    background-image:

        /* Soft gold light - top left */
        radial-gradient(ellipse at 0% 0%,
            rgba(160, 131, 91, 0.13) 0%,
            rgba(160, 131, 91, 0.05) 22%,
            transparent 42%),

        /* Soft gold light - bottom right */
        radial-gradient(ellipse at 100% 100%,
            rgba(160, 131, 91, 0.09) 0%,
            rgba(160, 131, 91, 0.035) 25%,
            transparent 45%),

        /* Fine vertical linen */
        repeating-linear-gradient(90deg,
            rgba(160, 131, 91, 0.018) 0px,
            rgba(160, 131, 91, 0.018) 1px,
            transparent 1px,
            transparent 5px),

        /* Fine horizontal linen */
        repeating-linear-gradient(0deg,
            rgba(160, 131, 91, 0.015) 0px,
            rgba(160, 131, 91, 0.015) 1px,
            transparent 1px,
            transparent 5px),

        /* Very subtle diagonal grain */
        repeating-linear-gradient(135deg,
            transparent 0px,
            transparent 8px,
            rgba(90, 70, 45, 0.012) 9px,
            transparent 10px),

        /* Base paper */
        linear-gradient(145deg,
            #ffffff 0%,
            #faf8f3 35%,
            #f4f0e8 100%);

    box-shadow:
        0 12px 35px rgba(45, 38, 28, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* =========================================================
   TOP GOLD ACCENT
========================================================= */

.luxury-price-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #a0835b;

    z-index: 5;
}


/* =========================================================
   TEXTURE OVERLAY
========================================================= */

.luxury-price-card::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0.35;

    /*
       Very fine fabric/paper grain
    */

    background-image:
        repeating-linear-gradient(90deg,
            rgba(70, 55, 40, 0.018) 0px,
            rgba(70, 55, 40, 0.018) 1px,
            transparent 1px,
            transparent 3px),
        repeating-linear-gradient(0deg,
            rgba(70, 55, 40, 0.015) 0px,
            rgba(70, 55, 40, 0.015) 1px,
            transparent 1px,
            transparent 4px);

    z-index: 1;
}


/* =========================================================
   HOVER
========================================================= */

.luxury-price-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(160, 131, 91, 0.5);

    box-shadow:
        0 22px 55px rgba(45, 38, 28, 0.14);
}


/* =========================================================
   TOP CONTENT
========================================================= */

.price-card-top {

position: relative;

z-index: 3;

display: grid;

grid-template-columns: 40px 1fr auto;

align-items: center;

gap: 7px;

padding: 30px 14px 26px;
}


/* =========================================================
   NUMBER
========================================================= */

.price-number {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background:
        linear-gradient(145deg,
            rgba(160, 131, 91, 0.13),
            rgba(160, 131, 91, 0.035));

    border:
        1px solid rgba(160, 131, 91, 0.30);

    transition:
        all 0.35s ease;
}


.price-number span {

    color: #a0835b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1;
}


/* Number hover */

.luxury-price-card:hover .price-number {

    background: #a0835b;

    border-color: #a0835b;

    transform: rotate(5deg);
}


.luxury-price-card:hover .price-number span {

    color: #ffffff;
}


/* =========================================================
   TYPOLOGY
========================================================= */

.price-typology small,
.price-size small,
.price-info>small {

    display: block;

    color: #a0835b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;

    line-height: 1.3;
}


/* Typology title */

.price-typology h4 {

margin: 5px 0 0;

color: #29251f;

font-family:
        Georgia,
        "Times New Roman",
        serif;

font-size: 20px;

font-weight: 500;

line-height: 1.15;
}


/* =========================================================
   SIZE
========================================================= */

.price-size {

    padding-left: 20px;

    border-left:
        1px solid rgba(160, 131, 91, 0.22);

    text-align: right;
}


.price-size strong {

    display: block;

    margin-top: 5px;

    color: #29251f;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.3;
}


.price-size span {

    display: block;

    margin-top: 2px;

    color: #777168;

    font-size: 9px;

    letter-spacing: 0.5px;

    line-height: 1.2;
}


/* =========================================================
   DIVIDER
========================================================= */

.price-card-line {

    position: relative;

    z-index: 3;

    width: auto;

    height: 1px;

    margin: 0 26px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(160, 131, 91, 0.30),
            rgba(160, 131, 91, 0.65),
            rgba(160, 131, 91, 0.30),
            transparent);
}


/* =========================================================
   BOTTOM
========================================================= */

.price-card-bottom {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 24px 26px 27px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.35),
            rgba(248, 246, 241, 0.65));
}


/* =========================================================
   PRICE INFO
========================================================= */

.price-info {

    min-width: 0;
}


.price-info h5 {

    margin: 6px 0 2px;

    color: #29251f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.2;

    white-space: nowrap;
}


.price-info h5 sup {

    position: relative;

    top: -2px;

    color: #a0835b;

    font-family: Arial, sans-serif;

    font-size: 9px;
}


.price-info>span {

    display: block;

    color: #777168;

    font-size: 10px;

    letter-spacing: 0.4px;

    line-height: 1.3;
}


/* =========================================================
   PRICE BUTTON
========================================================= */

.price-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 125px;

    padding:
        7px 8px 7px 17px;

    border:
        1px solid #a0835b;

    border-radius: 50px;

    outline: none;

    background: #a0835b;

    color: #ffffff;

    font-family: inherit;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.4px;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}


/* Button hover */

.price-btn:hover {

    background: transparent;

    color: #a0835b;

    border-color: #a0835b;

    transform: translateY(-1px);
}


/* =========================================================
   BUTTON ARROW
========================================================= */

.price-btn i {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 27px;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: #ffffff;

    color: #a0835b;

    font-size: 14px;

    font-weight: 400;

    font-style: normal;

    line-height: 1;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


/* Arrow hover */

.price-btn:hover i {

    background: #a0835b;

    color: #ffffff;

    transform: rotate(45deg);
}


/* =========================================================
   FOCUS
========================================================= */

.price-btn:focus {

    outline: none;

    box-shadow:
        0 0 0 3px rgba(160, 131, 91, 0.15);
}


/* =========================================================
   ACTIVE
========================================================= */

.price-btn:active {

    transform: scale(0.97);
}

/* /// */

/* faq */
.faq-section {
    padding: 70px 0;
    background: #f7f5ef;
}

.faq-heading span {
    display: inline-block;
    margin-bottom: 6px;
    color: #b08a4c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-heading h2 {
    margin: 0;
    color: #8c734b;
    font-size: 32px;
    font-weight: 700;
}


/* Accordion */
.luxury-faq {
    /* max-width: 950px; */
    margin: 35px auto 0;
}

.luxury-faq .accordion-item {
    margin-bottom: 12px;

    background: #fff;
    border: 1px solid rgba(180, 145, 82, 0.25);
    border-radius: 4px !important;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}


/* Question */
.luxury-faq .accordion-button {
    position: relative;
    padding: 20px 22px;
    color: #9e8156;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
}


/* Remove Bootstrap blue */
.luxury-faq .accordion-button:focus {
    box-shadow: none;
}


/* Number */
.faq-number {
    min-width: 42px;

    margin-right: 14px;

    color: #b08a4c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Default Arrow */
.luxury-faq .accordion-button::after {
    width: 10px;
    height: 10px;

    background-size: 10px;

    filter: sepia(1) saturate(1.5);
}


/* Active Question */
.luxury-faq .accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(135deg, #9e8156, #9e8156);
}


/* Active Number */
.luxury-faq .accordion-button:not(.collapsed) .faq-number {
    color: #ffffff;
}


/* Active Arrow */
.luxury-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


/* Answer */
.luxury-faq .accordion-body {
    padding: 20px 25px 22px 78px;

    color: #555;
    background: #fff;

    font-size: 14px;
    line-height: 1.8;

    border-top: 1px solid rgba(180, 145, 82, 0.18);
}




.amenities-detail-section .tab-content {
    height: 100%;
}

.amenities-detail-section .tab-content .tab-pane {
    height: 100%;
}

.amenities-detail-section .tab-content .tab-pane .amenity-detail-image {
    height: 100%;
    position: relative;
}

.amenities-detail-section .tab-content .tab-pane .amenity-detail-image .amnt-img-text {
    position: absolute;
    bottom: 0px;
    right: 20px;
    color: rgb(255, 255, 255);
    font-size: 13px;
}

.amenities-detail-section .tab-content .tab-pane .amenity-detail-image img {
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.amenities-detail-section .nav-pills .nav-link.active img {
    filter: invert(1);
}

.amenity-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    padding: 10px 5px !important;
}

.amenity-btn .dark-icon,
.amenity-btn .light-icon {
    width: 40px;
}

.amenity-btn p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0px;
    padding: 8px 0px 3px;
}

.amenities-detail-section {

    position: relative;
}

.amemity-icons-details-section .nav-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.amenities-detail-section ul#pills-tab {
    justify-content: center;
    padding: 40px;
    gap: 150px;
}

.amenities-detail-section .nav-pills .nav-link {
    color: rgb(0, 0, 0);
    font-family: Dropkicker;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 300;
    padding: 10px 30px;
    min-width: 190px;
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 1px solid rgb(0, 0, 0) !important;
}

.amenities-detail-section .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: rgb(255, 255, 255);
    font-family: Dropkicker;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 300;
    padding: 10px 30px;
    background-color: rgb(158, 129, 86) !important;
    border: 1px solid rgb(158, 129, 86) !important;
}

button.amenity-view-btn {
    color: rgb(255, 255, 255);
    padding: 11px 30px;
    border: 0px;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

div#pills-tabContent {
    padding-top: 30px;
}



/* lightbox */
.tower-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.lightbox-img {
    width: 100px;
    display: block;
    cursor: zoom-in;
    transition: transform 0.5s ease;
    display: flex;
    margin: 0 auto;
}

.tower-item:hover .lightbox-img {
    transform: scale(1.04);
}


/* =========================================
   LABEL
========================================= */



/* =========================================
   LIGHTBOX
========================================= */

.lightbox-modal {
    background: rgba(0, 0, 0, 0.88);
}

.lightbox-modal .modal-dialog {
    max-width: 1100px;
}

.lightbox-modal .modal-content {
    position: relative;

    background: transparent;

    border: none;
    border-radius: 0;

    box-shadow: none;
}


/* =========================================
   LARGE IMAGE
========================================= */

.lightbox-image {
    display: block;
    width: 100%;
    max-height: 15vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);
}


/* =========================================
   CLOSE BUTTON
========================================= */

.lightbox-close {
    position: absolute;

    top: -45px;
    right: 0;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.35);

    color: #fff;

    font-size: 27px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #a0835b;
    border-color: #a0835b;

    transform: rotate(90deg);
}
/* loghtbpox */

/* Mobile */
@media (max-width: 767px) {

    /* lighbox */
    .lightbox-modal .modal-dialog {
        margin: 15px;
    }

    .lightbox-image {
        max-height: 22vh;
    }

    .lightbox-close {
        top: -45px;
        right: 0;

        width: 34px;
        height: 34px;

        font-size: 24px;
    }
    /* lightbox */
    /* faq */
    .faq-section {
        padding: 50px 0;
    }

    .faq-heading h2 {
        font-size: 26px;
    }

    .luxury-faq .accordion-button {
        padding: 16px 15px;
        padding-right: 45px;
        font-size: 13px;
        line-height: 1.5;
    }

    .faq-number {
        min-width: 32px;
        margin-right: 8px;
        font-size: 11px;
    }

    .luxury-faq .accordion-body {
        padding: 16px 18px 18px 55px;

        font-size: 13px;
        line-height: 1.7;
    }

    .stats-section {
        padding: 25px 18px;
        border-radius: 15px;
    }

    .stats-logo {
        margin-bottom: 20px;
    }

    .stats-logo img {
        width: 100px;
    }

    .stat-card {
        min-height: 125px;
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-title {
        font-size: 13px;
    }

    .pricing-box h4 {
        font-size: 16px;
        font-weight: 500;
    }

    .pricing-typology,
    .pricing-size,
    .pricing-price {
        display: flex;
        justify-content: space-between;
    }

    .pricing-box p {
        font-size: 15px;
    }

    /* new-price */
    .price-typology h4{
        font-size: 16px;
    }

    .price-card-top{
        gap: 0px;
        padding: 18px 15px 15px;
    }
    .price-card-bottom{
        padding: 18px 15px 15px;
    }
    .price-number span {
        font-size: 15px;
    }
    .price-number{
        width: 30px;
        height: 30px;
    }
    /* new-price */
    .amemity-icons-details-section {
        text-align: center;
    }

    .amemity-icons-details-section .nav-pills {
        flex-wrap: wrap;
        gap: 10px;
    }

    .amemity-icons-details-section .nav-pills li {
        width: 48%;
        margin-bottom: 0px;
    }

    .amenities-detail-section .nav-pills .nav-link {
        width: 100%;
        min-width: auto;
    }

    .amenities-detail-section .tab-content {
        margin-top: 30px;
    }
}