:root {
    --bg-color: #EBF6FF;
    --main-color: #16293C;
    --white-color: #fff;
    --brown-color: #BE8E4E;
    --ligh-blue-color: #EBF6FF;

    --font-family-lindsey: 'LindseySignature';
    /* --font-family-narkiss: 'NarkissBlock'; */
    --font-family-narkiss: "Montserrat", sans-serif;
    --font-family-MonetaSans: 'MonetaSans';
    --font-family-Montserrat: "Montserrat", sans-serif;
    /* --font-family-narkiss-light: 'NarkissBlockLight'; */
    --font-family-narkiss-light: "Montserrat", sans-serif;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-mediun: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 600;
    --font-weight-extrabold: 900;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    font-family: var(--font-family-Montserrat);
}

h1,
h2,
h3,
h4,
h4,
h5 {
    /* font-family: 'FbReadingHebEng-Bold'; */
    font-family: var(--font-family-lindsey);
    font-weight: bold;
}

a {
    text-decoration: none;
}

p {
    font-family: var(--font-family-Montserrat);
}

.signature {
    font-family: var(--font-family-lindsey);
}

.hebrew-text {
    font-family: var(--font-family-Montserrat);
}

.global-btn {
    background-color: var(--main-color);
    font-size: 24px;
    line-height: 28px;
    border-radius: 7px;
    font-weight: 400;
    padding: 10px 38px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    font-family: 'FbReadingHebEng-Light';
}

.global-btn:hover {
    background: none;
    color: var(--main-color);
}

.w-fit-content {
    width: fit-content;
}

#ccil-title {
    font-family: var(--font-family-Montserrat);
}

/****************
Privacy Modal CSS
*****************/
.privacy-wrapper {
    position: fixed;
    top: 2vw;
    right: 10%;
    left: 10%;
    width: 80%;
    height: 86vh !important;
    background-color: #202020;
    padding: 6vh 4vw;
    z-index: 9999999;
}

.privacy-wrapper .privacy-content {
    overflow-y: auto;
    max-height: 95vh;
    direction: ltr;
}

.privacy-wrapper .privacy-content a {
    color: var(--white-color);
    text-decoration: underline;
}

.privacy-wrapper .privacy-content h2 {
    margin-bottom: 3vh;
    font-size: 1.4vw;
    line-height: 2.6vh;
    color: #fff;
}

.privacy-wrapper .privacy-content :where(p, li, a) {
    margin-bottom: 1.3vh;
    font-size: 0.8vw;
    line-height: 2.8vh;
    color: #fff !important;
}

.privacy-close-btn {
    position: absolute;
    top: 2vh;
    right: 1.8vw;
}

.privacy-close-btn>img {
    object-fit: contain;
    object-position: center center;
    width: 1.5vw;
    height: auto;
}


body.modal-open {
    overflow: hidden;
    height: 100vh;
}

.modal-close-btn {
    position: absolute;
    top: 4vh;
    right: 14vw;
}

.modal-close-btn img {
    width: 1.8vw;
    height: auto;
}

.pojo-a11y-toolbar-title {
    font-family: var(--font-family-Montserrat);
}

.pojo-a11y-toolbar-inner {
    direction: ltr;
    font-family: var(--font-family-Montserrat);
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items li.pojo-a11y-toolbar-item a svg {
    padding-right: 0;
    padding-left: 6px;
}





/* Sticky Header */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--main-color);
    padding: 3vh 0;
    z-index: 1000;
}

/* Inner layout */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo */
.header-logo {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-main-heading {
    font-family: var(--font-family-MonetaSans);
    font-size: 2.563vw;
    margin-top: 3vh;
    margin-bottom: -1vh;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    opacity: 1;
    max-height: 100px;
    overflow: hidden;
    order: 2;
    letter-spacing: 7%;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease;
}

.site-header.header-sticky .header-main-heading {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    margin-top: 0;
}

.header-logo img {
    height: auto;
    display: block;
    width: 13vw;
}

/* Menu toggle */

.header-menu-toggle {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 9999;
}

/* Icons base state */

.header-menu-toggle .menu-icon {
    height: auto;
    display: none;
}

/* Default icon */

.header-menu-toggle .menu-open {
    display: block;
    width: 2.12vw;
}

.header-menu-toggle .menu-close {
    width: 1.8vw;
}

/* Active state */

.header-menu-toggle.active .menu-open {
    display: none;
}

.header-menu-toggle.active .menu-close {
    display: block;
}

/* Slide menu */

.header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background: var(--main-color);
    transition: right 0.4s ease;
    padding: 11vh 6vw;
    z-index: 999;
    margin-top: 30px;
}

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

/* Menu list */

.header-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu li {
    position: relative;
    padding-bottom: 4vh;
    margin-bottom: 4vh;
}

.header-menu li:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brown-color);
}

.header-menu a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.4vw;
    font-family: var(--font-family-Montserrat);
    transition: color 0.3s;
}

.header-menu a:hover,
.header-menu a.active {
    color: var(--brown-color);
}



/* Footer CSS */

.sticky-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 1000;
    background: var(--main-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}


.sticky-btn {
    flex: 1;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.464vw;
    font-family: var(--font-family-Montserrat);
    background-color: var(--brown-color);
    color: var(--main-color);
}


.sticky-btn:hover {
    color: var(--white-color);
}

/* Vertical divider line */

.appointment-btn {
    position: relative;
}

.call-btn::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 2px;
    height: 60%;
    background-color: #16293C;
}

.call-btn:hover .call-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(207deg) brightness(107%) contrast(101%);
}

/* Call button icon */

.call-btn {
    gap: 8px;
    position: relative;
}

.call-btn .call-icon {
    width: 2vw;
    height: 3vh;
    background-image: url('../images/call.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
}

/* Hover effect */


/* Footer wrapper */

.site-footer {
    background-color: var(--main-color);
    padding: 9vh 0px;
    color: #ffffff;
    margin-top: 3vh;
}

/* Inner layout */

.footer-inner {
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
    padding: 0 16px;
}

/* Logo side */

.footer-logo-wrap {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 49.9%;
    gap: 2vh;
}

/* Footer Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 1vw;
    margin-top: 5vh;
    justify-content: center;
}

.footer-links a {
    color: var(--white-color);
    font-size: 0.9vw;
    font-family: var(--font-family-Montserrat);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brown-color);
}

.footer-link-divider {
    color: var(--brown-color);
    font-size: 0.9vw;
}

/* Footer Disclaimer */
.footer-disclaimer {
    color: var(--white-color);
    font-size: 0.75vw;
    font-family: var(--font-family-Montserrat);
    text-align: center;
    max-width: 28vw;
    line-height: 1.6;
    margin-top: 2vh;
    opacity: 0.8;
}

/* Footer Modals */
.footer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.footer-modal.active {
    display: flex;
}

.footer-modal-content {
    background: var(--main-color);
    width: 80%;
    max-width: 57vw;
    max-height: 90vh;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 95vh;
display: flex;
align-items: center;
justify-content: center;
}

.footer-modal-close {
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-size: 30px;
    color: var(--white-color);
    text-decoration: none;
    z-index: 1;
    line-height: 1;
}

.footer-modal-close:hover {
    color: var(--brown-color);
}

.footer-modal-body {
    padding: 4vw 2vw;
    color: var(--white-color);
    font-family: var(--font-family-Montserrat);
    overflow-y: auto;
    max-height: 95vh;
    direction: ltr;
}

.footer-modal-body h1,
.footer-modal-body h2,
.footer-modal-body h3,
.footer-form-heading {
    color: var(--brown-color);
    font-family: var(--font-family-Montserrat);
    margin-bottom: 1.5vh;
    font-size: 1.4vw;
}

.footer-modal-body p {
    font-size: 1vw;
    margin-bottom: 2vh;
}

.footer-modal-body h3 {
    font-size: 1.2vw;
    margin-bottom: 2vh;
    margin-top: 4vh;
}

.footer-modal-body td {
    font-size: 0.9vw;
    padding: 1vw;
}

.footer-modal-body th {
    font-size: 1vw;
    padding: 1vw;
}

#exit-popup-modal .footer-modal-body form p {
    font-size: 0.585vw;
}

.exit-popup-description {
    font-size: 1.3vw !important;
}

.footer-modal-body a {
    color: var(--brown-color);
}

.footer-logo {
    width: 19vw;
    height: auto;
}

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;
}

.footer-number {
    width: 12vw;
    height: auto;
    margin-top: 5vh;
}

/* Vertical divider */

.footer-divider {
    width: 2px;
    background-color: var(--brown-color);
}

/* Form side */

.footer-form-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    max-width: 47vw;
    margin: 0 auto;
}

/* .footer-form-heading {
    font-size: 2.635vw;
    line-height: 6vh;
    margin-bottom: 30px;
    font-family: var(--font-family-Montserrat);
    text-align: center;
} */



/* Section 1 */
.section-one {
    width: 100%;
    min-height: 100vh;
    border-top: 4px solid var(--brown-color);
    padding-top: 16px;
    /* padding-bottom: 16px; */
    box-sizing: border-box;
    overflow: hidden;
}

.section-one video,
.section-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop/Mobile banner visibility */


/* Vimeo wrapper for mobile */
.vimeo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.vimeo-wrapper iframe {
    position: absolute;
    /* top: 2%; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* transform: scale(1.1);
    padding-top: 3vh; */
}

.video-wrapper.banner-desktop iframe {
    width: 100vw !important;
    height: 100vh !important;
}

.video-wrapper {
    position: relative;
    min-height: 118vh
}

.video-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, rgba(53, 63, 72, 0) 69.63%, rgba(13, 43, 67, 0.71) 109.26%);
    z-index: 1;
}

.section-complex-location {
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 9vh;
    margin-top: 20vh;
    border-bottom: 4px solid var(--brown-color);
}

/* Section-2 */
.section-two {
    width: 100%;
    box-sizing: border-box;
    border-top: 4px solid var(--brown-color);
    margin-top: 16px;
    margin-bottom: 9vh;
}

.section-two-header {
    text-align: center;
    margin-bottom: 20vh;
    padding-top: 6vh;
}

.section-two-header img {
    margin-bottom: 10vh;
    margin-top: 6vh;
    min-width: 9vw;
    width: 11vw;
}

.section-two-header h2 {
    font-family: var(--font-family-MonetaSans);
    font-weight: 300;
    font-size: 6vw;
    width: 80% !important;
    margin: 0 auto !important;
    line-height: 12vh;
    color: var(--main-color);
    margin: 0 auto;
    text-transform: uppercase;
}

.section-two-rows {
    display: flex;
    flex-direction: column;
    gap: 20vh;
}

.section-location-rows {
    display: flex;
    flex-direction: column;
    gap: 20vh;
}

.dream-row {
    display: flex;
    align-items: center;
    gap: 7vw;
}

.dream-row.reverse {
    flex-direction: row-reverse;
}

.dream-content {
    flex: 1;
}

.dream-row:not(.reverse) .dream-content {
    padding-left: 5vw;
    display: flex;
    /* justify-content: center; */
}

.dream-row.reverse .dream-content {
    padding-right: 5vw;
    display: flex;
    /* justify-content: center; */
}

.dream-script-text {
    display: block;
    font-family: var(--font-family-lindsey);
    font-size: 8vw;
    margin-bottom: 0;
    text-align: left;
    line-height: 5vh;
    color: var(--main-color);
    margin-left: -3vw;
}

.dream-script-image {
    margin-bottom: 7vh;
}

.dream-script-image img {
    min-width: 10vw;
    width: 75%;
    height: auto;
    display: block;
}

.dream-bold-heading {
    font-family: var(--font-family-Montserrat);
    font-size: 1.4vw;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1.019vh;
}

.dream-description {
    font-family: var(--font-family-Montserrat);
    font-size: 1.1vw;
    line-height: 1.4;
    color: var(--main-color);
    max-width: 28vw;
    margin-top: 4vh;
}

.dream-description .bold-text {
    color: #000;
    font-weight: 400;
}

.reverse .dream-description {
    max-width: 100%;
}

.dream-image {
    flex: 1;
    overflow: hidden;
    min-width: 57%;
    position: relative;
}

.dream-container-wrapper {
    max-width: 32vw;
}

.dream-icon-list {
    font-family: var(--font-family-Montserrat);
    font-size: 1.1vw;
    line-height: 3.5vh;
    color: var(--main-color);
    margin-top: 4vh;
    max-width: 25vw;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.dream-icon-list li {
    margin-bottom: 2vh;
    display: flex;
    gap: 1vw;
}

.dream-icon-list img {
    width: 2.4vw;
    height: 100%;
    margin-top: 0.3vw;
}

.section-two-rows .dream-row:last-of-type .dream-description {
    max-width: 27vw;
}

.section-location-rows .dream-row:last-of-type .dream-description {
    max-width: 27vw;
}

.dream-image img,
.dream-image video {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
}

.dream-row:not(.reverse) .dream-image img,
.dream-row:not(.reverse) .dream-image video {
    border-top-left-radius: 26vw;
}

.dream-row.reverse .dream-image img,
.dream-row.reverse .dream-image video {
    border-top-right-radius: 26vw;
}

/* Video Performance Optimizations */
video {
    /* Prevent layout shift while video loads */
    background-color: #000;

    /* Ensure video fills container properly */
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pricing-text {
    font-family: var(--font-family-Montserrat);
    font-size: 1.7vw;
    line-height: 3.5vh;
    color: var(--main-color);
    font-weight: 400;
    position: absolute;
    left: 0;
    z-index: 1;
    background: var(--brown-color);
    padding: 1vw 2vw 1vw 1.5vw;
    bottom: 0.8vw;
    text-transform: uppercase;
    border-radius: 0 50px 50px 0;
}

.pricing-text strong {
    font-family: var(--font-family-Montserrat);
    font-weight: 700;
}

.brochure-button {
    display: inline-block;
    padding: 1vw 2vw;
    background-color: #BE8E4E;
    color: #16353C;
    font-size: 1.3vw;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    line-height: 2.5vh;
    margin-top: 5vh;
}

.brochure-button:hover {
    color: #fff;
}


/* Section 3 CSS */
.section-three {
    width: 100%;
    border-top: 4px solid var(--brown-color);
    border-bottom: 4px solid var(--brown-color);
    margin-bottom: 10vh;
}

.section-three .video-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 16px 0;
}

.section-three video,
.section-three img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Section-4 */
.section-four {
    width: 100%;
    padding-top: 0;
}

.section-four-header {
    text-align: center;
    margin-bottom: 12vh;
}

.lifestyle-main-heading {
    font-family: var(--font-family-MonetaSans);
    font-size: 6.663vw;
    margin-bottom: 2vh;
    font-weight: 300;
}

.lifestyle-sub-text {
    font-size: 1.464vw;
    margin-bottom: 2vh;
}

.lifestyle-description {
    font-size: 1.464vw;
    max-width: 64vw;
    margin: 0 auto;
    line-height: 4vh;
}

.lifestyle-rows {
    display: flex;
    flex-direction: column;
    gap: 12vh;
}

.lifestyle-row {
    display: flex;
    align-items: center;
    gap: 10vw;
    position: relative;
}

.lifestyle-row.reverse {
    flex-direction: row-reverse;
}

.lifestyle-content {
    flex: 1;
    padding-right: 8vw;
}

.lifestyle-row.reverse .lifestyle-content {
    padding-left: 8vw;
    padding-right: 0;
}

.reverse .lifestyle-bg-text {
    position: absolute;
    top: -2%;
    right: 48%;
}

.lifestyle-bg-text {
    display: block;
    font-family: var(--font-family-lindsey);
    font-size: 16vw;
    opacity: 0.2;
    margin-bottom: -2vh;
    color: var(--brown-color);
    position: absolute;
    top: -2%;
    left: 52%;
    right: unset;
}

.lifestyle-content-heading {
    font-family: var(--font-family-MonetaSans);
    color: var(--main-color);
    font-size: 2.5vw;
    margin-bottom: 2vh;
    font-weight: 400;
}

.lifestyle-content-description {
    font-family: var(--font-family-Montserrat);
    font-size: 1.4vw;
    line-height: 4vh;
    margin-bottom: 5vh;
    color: var(--main-color);
    max-width: 23vw;
}

.lifestyle-row:last-of-type .lifestyle-content-description {
    max-width: 21vw;
}

.lifestyle-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.lifestyle-icon-list li {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

.lifestyle-icon-list img {
    width: 3vw;
    height: auto;
}

.lifestyle-icon-list span {
    font-size: 1.4vw;
    line-height: 4vh;
    color: var(--main-color);
}

.lifestyle-image {
    flex: 1;
    overflow: hidden;
    min-width: 57%;
}

.lifestyle-image img,
.lifestyle-image video {
    width: 100%;
    height: 100vh;
    display: block;
    border-top-right-radius: 26vw;
    object-fit: cover;
}

.lifestyle-row.reverse .lifestyle-image img,
.lifestyle-row.reverse .lifestyle-image video {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 26vw;
}




/* SECTION BASE Slider */
.section-five {
    position: relative;
    width: 100%;
    min-height: 100vh;
    border-top: 4px solid var(--brown-color);
    padding-top: 16px;
    margin-top: 24.883vh;
}

.section-five-slider {
    width: 100%;
    min-height: 100vh;
}

.section-five-slider .owl-stage-outer,
.section-five-slider .owl-stage,
.section-five-slider .owl-item {
    min-height: 100vh;
}

.section-five-slider .slide {
    width: 100%;
    min-height: 100vh;
    display: flex;
}

.section-five-slider .slide img {
    width: 100%;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    display: block;
}

.section-five .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
}

.section-five .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: block;
}

.section-five .owl-dot.active span {
    background: #ffffff;
}



.bold-text {
    font-family: var(--font-family-MonetaSans);
    color: var(--main-color);
    letter-spacing: 1px;
}



.video-wrapper {
    position: relative;
}

/* Media Overlay Text */
.media-overlay-text {
    position: absolute;
    bottom: 1vh;
    right: 1vw;
    color: var(--white-color);
    font-family: var(--font-family-Montserrat);
    font-size: 0.5vw;
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.dream-image,
.lifestyle-image,
.image-wrapper,
.slide {
    position: relative;
}

.mute-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.mute-icon,
.unmute-icon {
    width: 3vw !important;
    height: auto !important;
}

.lifestyle-description,
.lifestyle-content-description,
.lifestyle-icon-list span,
.dream-description,
.lifestyle-sub-text {
    font-family: var(--font-family-Montserrat);
}

.image-wrapper img {
    padding-top: 21px;
    padding-bottom: 21px;
}


.header-contact-number {
    position: absolute;
    left: 80px;
}

.contact-button {
    border-radius: 100px;
    padding: 1vh 2vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brown-color);
    color: var(--main-color);
    font-size: 1.5vw;
    font-weight: 600;
    line-height: 5vh;
}

.contact-button:hover {
    background-color: var(--brown-color);
    color: #fff;
}

.brown-footer-heading {
    color: #BE8E4E;
}

.feature-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 83vw;
    margin: 0 auto;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
}

.feature-image-container {
    position: relative;
    width: 99%;
    height: auto;
    margin-bottom: 1vw;
}

.feature-image {
    width: 100%;
    height: 36vh;
    object-fit: cover;
    border-radius: 50% 50% 0 0;
}

.feature-line {
    width: 50px;
    height: 2px;
    background-color: #BE8E4E;
    /* The small line before the text */
    margin: 0 auto;
}

.feature-heading {
    font-size: 1.1vw;
    font-weight: bold;
    text-align: center;
    font-family: var(--font-family-Montserrat);
    margin-top: 2vh;
    margin-bottom: 3vh;
    color: var(--main-color);
    text-transform: uppercase;
}

.feature-description {
    font-size: 1vw;
    text-align: center;
    color: var(--main-color);
    font-family: var(--font-family-Montserrat);
}

.feature-text {
    text-align: center;
}




.location-icon-list {
    font-family: var(--font-family-Montserrat);
    font-size: 1.1vw;
    line-height: 3.5vh;
    color: var(--main-color);
    margin-top: 4vh;
    max-width: 32vw;
    list-style: none;
    padding: 0;
    margin-bottom: 5vh;
}

.location-icon-list li {
    margin-bottom: 2vh;
    display: flex;
    gap: 1vw;
    align-items: start;
}

.location-icon-list img {
    width: auto;
    height: 100%;
    margin-top: 1vh;
}

.location-row {
    display: flex;
    align-items: center;
    gap: 7vw;
}

.location-row.reverse {
    flex-direction: row-reverse;
}


.location-row:not(.reverse) .dream-content {
    padding-left: 5vw;
    display: flex;
    justify-content: center;
}

.location-row.reverse .dream-content {
    padding-right: 4vw;
    display: flex;
    justify-content: center;
}

.location-row:not(.reverse) .dream-image img,
.location-row:not(.reverse) .dream-image video {
    border-top-left-radius: 26vw;
}

.location-row.reverse .dream-image img,
.location-row.reverse .dream-image video {
    border-top-right-radius: 26vw;
}

.location-row.reverse .location-icon-list img {
    width: 3vw;
    height: 100%;
    margin-top: 0;
}

.location-row.reverse .location-icon-list li {
    align-items: center;
}

/* .location-icon-list li:nth-child(2) img {
    width: 2vw;
    height: 100%;
} */

.section-live-link {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin: 16px 0;
}


.live-link-wrapper {
    border-bottom: 4px solid var(--brown-color);
}

.resort-living-script-text {
    font-size: 4vw;
    font-family: var(--font-family-MonetaSans);
    text-transform: uppercase;
    color: var(--main-color);
    line-height: 14vh;
}

.section-seven {
    padding-top: 10vh;
    border-top: 4px solid var(--brown-color);
}

.section-seven .section-two-header {
    margin-bottom: 15vh;
}

.section-seven .dream-bold-heading {
    max-width: 21vw;
}

.section-eight {
    margin-top: 5vh;
}


.hagag-section {
    background-color: #f0f7ff;
    /* Light blue background */
    padding: 60px 20px;
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-family-Montserrat);
}

.stats-logo-wrapper {
    margin-bottom: 5vh;
    padding-top: 18vh;
    text-align: center;
}

.stats-main-logo {
    width: auto;
    height: 5vw;
}

.stats-heading {
    font-size: 1.2vw;
    font-weight: bold;
    letter-spacing: 1px;
    padding-bottom: 2vh;
    text-transform: uppercase;
    font-family: var(--font-family-Montserrat);
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    color: var(--main-color);
}

.stats-description {
    font-size: 1vw;
    line-height: 1.6;
    color: #000;
    max-width: 45vw;
    margin: 0 auto 2.5vh;
    font-weight: 400;
    text-align: center;
}

/* Stats Styling */
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 52vw;
    margin: 3vh auto 0 auto;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 11vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-family-MonetaSans);
    font-size: 4vw;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--main-color);
}

.stat-label {
    font-size: 1vw;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--font-family-Montserrat);
    text-align: center;
    color: #000;
}

.footer-note {
    margin-top: 8vh;
    font-size: 1vw;
    margin-bottom: 2vh;
    color: #000;
    text-align: center;
}

.stats-content {
    font-family: var(--font-family-Montserrat);
}

.hagag-stats-section {
    border-bottom: 4px solid var(--brown-color);
    border-top: 4px solid var(--brown-color);
    margin-top: 16px;
}


.footer-form-heading {
    text-align: center;
    font-family: var(--font-family-Montserrat);
    font-size: 2vw;
    text-transform: uppercase;
    margin-bottom: 2vh !important;
}

.exit-popup-heading {
    text-align: center;
    font-family: var(--font-family-Montserrat);
    font-size: 2vw;
    text-transform: uppercase;
}

.exit-popup-description,
.footer-form-desc {
    text-align: center;
    font-family: var(--font-family-Montserrat);
    max-width: 38vw;
    margin: 0 auto;
    font-size: 1.3vw;
    padding-bottom: 4vh;
}
.exit-popup-description{
    max-width: 39vw;
}

#exit-popup-modal .cf7-col p {
    margin-bottom: 4vh !important;
}

#exit-popup-modal .footer-modal-body {
    padding: 2.5vw 4vw 2vw 4vw;
}

.footer-modal-close img {
    width: 2vw;
}





.footer-container {
    background-color: var(--main-color);
    color: #ffffff;
    padding: 2vw;
    font-family: var(--font-family-Montserrat);
    font-size: 1.2vw;
    line-height: 1.4;
    border-top: 4px solid var(--brown-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 25% 21% 27% 15%;
    gap: 4%;
    max-width: 80vw;
    margin: 0 auto;
    padding: 2vh 0;
}

.footer-content .footer-column:first-child p {
    max-width: 16vw;
}

.footer-social-link {
    color: var(--white-color);
    gap: 1vw;
    display: flex;
    margin-bottom: 1vw;
    align-items: center;
}

.footer-social-link:hover {
    color: var(--brown-color);
}

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

.footer-link:hover {
    color: var(--brown-color);
}

.footer-column {
    margin-bottom: 3vh;
}

.footer-bottom-wapper {
    padding-top: 8vh;
    margin-top: 8vh;
    border-top: 4px solid var(--brown-color);
}

.footer-column h3 {
    font-weight: 700;
    margin-bottom: 2vh;
    font-family: var(--font-family-Montserrat);
    font-size: 1.3vw;
}

.footer-column p {
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
    font-size: 1.1vw;
}

.logo-column {
    display: flex;
    justify-content: flex-end;
}

.logo-column img {
    max-height: 150px;
    /* Adjust based on original image scale */
}

.footer-bottom {
    text-align: center;
    margin-top: 5vh;
    font-size: 1.2vw;
}

.sticky-brochure-btn {
    position: fixed;
    bottom: 7vw;
    right: 0;
    z-index: 999;
    border-radius: 50px 0 0 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-brochure-btn.visible {
    opacity: 1;
    visibility: visible;
}


.wpcf7 form.invalid .wpcf7-response-output {
    color: #ffb900 !important;
    border-color: #ffb900 !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232 !important;
    color: #dc3232 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450 !important;
    border-color: #46b450 !important;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
}

/* Thumbnail on top initially */
.video-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

/* Hide thumbnail */
.video-thumbnail.hide {
    opacity: 0;
}

/* Vimeo iframe MUST be layered */
.section-three .video-wrapper iframe {
    transform: scale(1.1);
}

.video-wrapper iframe,
.video-wrapper video {
    position: relative;
    z-index: 1;
    transform: scale(1.5);
}

/* Iframe Click-to-Activate Overlay */
.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: default;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5vh;
}

.iframe-overlay.active {
    display: none;
}

.iframe-overlay-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 230px;
}

.iframe-overlay-text {
    font-family: var(--font-family-MonetaSans);
    font-size: 30px;
    color: #16293c;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.iframe-overlay-btn {
    background: transparent;
    border: 2px solid #16293c;
    color: #16293c;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.iframe-overlay-btn:hover {
    background: #16293c;
    color: #fff;
}
.social-icons{
    width: auto;
    height: 1.5vw;
}