* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;
}

@font-face {
    font-family: 'alta_caption';
    src: url('assets/fonts/alta_caption.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'nunito_regular';
    src: url('assets/fonts/nunito_regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    color: #121212;
    line-height: 150%;
    overflow-x: hidden;
    font-size: 15px;
    font-family: 'nunito_regular';
}

.container {
    width: 1280px;
    max-width: 85%;
    margin: 0 auto;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

.marginTopBottom {
    padding-top: 45px;
    padding-bottom: 65px;
}

.heading h1 {
    font-size: 36px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 120%;
    font-family: 'alta_caption';
    text-transform: uppercase;
}

.dHide {
    display: none !important;
}

.mHide {
    display: block !important;
}

/* AOS Animation Fix - Prevent elements from being hidden initially */
[data-aos] {
    pointer-events: auto;
}

[data-aos].aos-animate {
    pointer-events: auto;
}


/* banner */
.hero_banner {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
}

.hero_banner_content {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 00px;
    z-index: 9;
    padding: 200px 0px 50px 0px;
    color: #ffffff;
    background: #000;
    background: transparent;
}

.banneroverlay img {
    width: 200px;
}

.banneroverlay {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.banneroverlay h2 {
    font-size: 47px;
    text-transform: uppercase;
    font-weight: 100;
    font-family: 'alta_caption';
    text-align: right;
}

.artisticimp {
   position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 15px;
    /* margin: 10px; */
    padding: 8px;
    color: #fff;
    font-size: 8px;
    /* width: 200px; */
    text-align: center;
    /* transform: rotate(90deg); */
    /* writing-mode: vertical-rl; */
    margin-left: 15px;
    /* background-color: #00000085; */
}

/*-------------------
 header css starts 
 ---------------------*/
.main-header {
    position: static;
    width: 100%;
    padding: 15px 0px;
    padding-top: 20px;
    z-index: 999;
    background-color: #fff;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

/* Logo Styling */
.logo {
    display: flex;
    flex-direction: column;
}

.logo img {
    width: 55%;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.tagline {
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Nav & Icons Styling */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    /* text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-family: 'alta_caption'; */
    background-color: #ccbb97;
    color: var(--white);
    border: 0 solid var(--headbrown);
    padding: 8px;
    border-radius: 0;
    font-size: 16px;
    width: 190px;
    font-family: 'nunito_regular';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 0;
    cursor: pointer;
    text-align: center;
}

/* Hamburger Menu (hidden on desktop, shown on mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding-left: 10px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: rgb(0, 0, 0);
}

/* Side Nav Container */
.side-nav {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: white;
    z-index: 99999;
    transform: translateX(0);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.side-nav.active {
    right: 0;
}

.side-nav .main-menu {
    width: 100%;
    margin: 0;
    padding: 40px 20px;
    flex-grow: 1;
    padding-top: 80px;
    flex-direction: column;
    gap: 0;
}

.side-nav .menu-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #666;
    font-size: 16px;
    letter-spacing: normal;
    display: block;
}

/* Background Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Menu Content Styling */
.main-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-grow: 0;
}

.menu-item {
    padding: 0;
    border-bottom: none;
    color: #000000;
    display: inline-block;
    justify-content: flex-start;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    font-family: 'alta_caption';
}

.menu-item:hover {
    opacity: 0.7;
}

/* Close Button */
.closeBtn {
    position: absolute;
    top: 20px;
    right: 5px;
    font-size: 36px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.close-btn {
    font-size: 30px;
    background: none;
    border: none;
    float: right;
    padding: 20px;
    cursor: pointer;
}


/* m3mResidency  css starts*/
.m3mResidency {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #e5d7b9;
}

.m3mResidency_content h2 {
    margin-top: 30px;
}

.m3mResidency_content p {
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
}

.m3mResidency_flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.m3mResidency_flex img {
    width: 55px;
    margin: 0 auto;
}

.m3mResidency_image_txt {
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
    line-height: 110%;
    font-family: 'alta_caption';
}

/* m3mResidency  css ends*/


/* about_elieSaabMain */
.about_elieSaabMain {
    background-image: url("assets/images/about_elieSaabBg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 100px 0px;
}

.about_elieSaab_content P {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
}

.bb_logo {
    width: 30%;
    margin: 90px auto;
}

.worldsBestBelong_section p {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}

.exclusive_clubhouse {
    background-color: #e5d7b9;
    position: relative;
    padding-bottom: 0;
}

.exclusive_clubhouse p {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}


/* Exclusive clubhouse slider - center large, sides small */
.exclusive_clubhouseSlider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    overflow: hidden;
    padding: 160px 0;
    position: relative;
    /* allow absolute-positioned arrows inside */
}

.exclusive_clubhouseSlide {
    flex: 0 0 44%;
    /* base width for side slides */
    max-width: 44%;
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), opacity 0.45s ease;
    transform-origin: center center;
    opacity: 0.6;
    position: relative;
}

.exclusive_clubhouseSlide img {
    display: block;
    width: 100%;
    height: auto;
}

.exclusive_clubhouseSlide h3 {
    text-align: center;
    font-family: 'alta_caption';
    font-weight: 200;
    padding-top: 20px;
    width: 70%;
    margin: 0 auto;
    font-size: 20px !important;
}

.exclusive_clubhouseSlide.center,
.exclusive_clubhouseSlide.active {
    flex: 0 0 44%;
    /* enlarged center slide */
    max-width: 44%;
    transform: scale(1.06);
    opacity: 1;
    z-index: 5;
}

/* Slight 3D effect for side slides */
.exclusive_clubhouseSlide.left {
    transform: translateX(-10px) scale(0.95);
}

.exclusive_clubhouseSlide.right {
    transform: translateX(10px) scale(0.95);
}

/* Slick-specific adjustments so center slide appears larger and side slides have gaps */
.exclusive_clubhouseSlider .slick-list {
    overflow: visible;
}

.exclusive_clubhouseSlider .slick-slide {
    padding: 0 86px;
    /* increased gap between slides */
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), opacity 0.45s ease;
    transform: scale(0.96);
    opacity: 0.6;
}

.exclusive_clubhouseSlider .slick-center {
    transform: scale(1.7) !important;
    opacity: 1 !important;
    z-index: 5;
}

/* Reduce overflow gutters so 3 slides visible with gaps */
.exclusive_clubhouseSlider .slick-list {
    margin: 0 -36px;
    /* match negative gutter to slide padding */
}


.exclusive_clubhouseSlider .exclusive_clubhouseSlide img {
    display: block;
    width: 100%;
    height: auto;
}

.slider_arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    cursor: pointer;
}

.prev_arrow_floorPlan,
.next_arrow_floorPlan,
.prev_arrow_amenities,
.next_arrow_amenities,
.prev_arrow,
.next_arrow {
    position: absolute;
    left: 110px;
    width: 25px;
}

.next_arrow_floorPlan,
.next_arrow_amenities,
.next_arrow {
    right: 110px;
    left: auto;
}

/* amenities */

.amenities {
    position: relative;
}

.amenitiesVerticLBtn {
    width: 20px;
    height: 100%;
    background-color: #000;
}

.amenities_item_flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.amenities .slider_arrows {
    top: 45%;
}

.amenities_slider {
    position: relative;
    margin: 0 auto;

}

.amenities_item {
    padding: 0 30px;
    /* larger gap so vertical bar sits between slides */
    box-sizing: border-box;
}

.amenities_slider .slick-list {
    margin: 0 -30px
}


/* Make arrows sit outside the slider visually for amenities */
.amenities .slider_arrows .prev_arrow_amenities {
    left: 70px;
}

.amenities .slider_arrows .next_arrow_amenities {
    right: 70px;
}

.downloadBrochure {
    width: 13%;
    margin: 0 auto;
    margin-top: 30px;
}


/* floorPlan */
.floorPlan_section {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
    position: relative;
}

.floorPlan_image {
    width: 95%;
    margin: 0 auto;
    margin-top: 25px;
    position: relative;
}
.floore_plan_img{
    filter: blur(4px);
    transition: filter 0.3s ease;
}

.floorPlan_section p {
    text-align: center;
    font-family: 'alta_caption';
    font-size: 18px;
    margin-top: 20px;
}

.floorPlan_section .prev_arrow_floorPlan, 
.floorPlan_section .next_arrow_floorPlan {
    left: 70px;
}
 
.floorPlan_section .next_arrow_floorPlan{
    right: 70px;
    left: auto;
}

.floorPlan_image_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.downloadBrochure button,
.floorPlan_image_overlay button {
    background-color: #000;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: 0;
}

/* aboutscda */

.aboutscda {
    background-color: #fff9e7;
    /* background-image: url("assets/images/scda.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    width: 100%;
    /* min-height: 100vh; */
    /* make background cover full viewport height */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 0;
}

.aboutscda p {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}

.aboutscda_image img {
    width: 100%;
    margin-top: 60px;
}

.aboutscda_image
{
    position: relative;
}

.aboutscda_image .artisticimp {
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0px;
    margin-left: 0px;
}

/* location  */

.location {
    background-color: #e5d7b9;
}

.locationMap {
    margin: 0 auto;
    width: 80%;
    margin-top: 30px;
    text-align: center;
}

.locationMap img {
    width: 100%;
}

/* additionalInfo */
.additionalInfo {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.additionalFormFlex {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    justify-content: space-between;
    margin-top: 30px;
    font-family: 'alta_caption';
    gap: 20px;
}

.additionalFormitem {
    width: 28%;
}

.additionalForm label {
    display: block;
    text-align: left;
}

.additionalForm .enquire-form input {
    width: 100%;
    padding: 8px 10px;
    margin-top: 8px;
    border-radius: 0;
    border: 1px solid #c4a655;
    outline: none
}

.additionalForm button {
    width: 10%;
    margin: 0 auto;
    margin-top: 20px;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 0;
    font-family: 'alta_caption';
}

/* footer */
.footer {
    padding: 25px 0;
    background-color: #e5d7b9;
}

.footerContent {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: 'alta_caption';
}

.footerLinks a {
    margin-left: 15px;
}

/* Enquire modal styles */
.enquire-modal {
    display: none;
}

.enquire-modal.active {
    display: block;
}

.enquire-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
}

.enquire-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 360px;
    max-width: calc(100% - 40px);
    border-radius: 8px;
    padding: 24px;
    z-index: 10001;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.enquire-dialog h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
}

.enquire-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.enquire-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enquire-form label {
    font-size: 13px;
    color: #222;
}

.enquire-form input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.enquire-submit {
    margin-top: 6px;
    background: #c4a655;
    color: #333;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.enquire-submit:active {
    transform: translateY(1px);
}

/* Privacy Policy modal styles */
.privacy-modal {
    display: none;
}

.privacy-modal.active {
    display: block;
}

.privacy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
}

.privacy-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 600px;
    max-width: calc(100% - 40px);
    max-height: 85vh;
    border-radius: 8px;
    padding: 24px;
    z-index: 10001;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
}

.privacy-dialog h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-family: 'alta_caption';
    text-transform: uppercase;
}

.privacy-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.privacy-close:hover {
    color: #000;
}

.privacy-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.privacy-content h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'alta_caption';
    text-transform: uppercase;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 8px;
}



/* Disclaimer modal styles */
.disclaimer-modal {
    display: none;
}

.disclaimer-modal.active {
    display: block;
}

.disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
}

.disclaimer-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 600px;
    max-width: calc(100% - 40px);
    max-height: 85vh;
    border-radius: 8px;
    padding: 24px;
    z-index: 10001;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
}

.disclaimer-dialog h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-family: 'alta_caption';
    text-transform: uppercase;
}

.disclaimer-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.disclaimer-close:hover {
    color: #000;
}

.disclaimer-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.disclaimer-content p {
    margin-bottom: 15px;
}


.floatingButton {
    position: fixed;
    right: -72px;
    z-index: 999;
    top: 50%;
    transform: rotate(-90deg);
    float: right;
    cursor: pointer;
}

.floatingButton button {
    background-color: #ccbb97;
    color: var(--white);
    border: 0 solid var(--headbrown);
    padding: 13px;
    border-radius: 0;
    font-size: 16px;
    width: 190px;
    font-family: 'nunito_regular';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 0;
    cursor: pointer;
}



@media (max-width: 800px) {

    .hero_banner_content{
        background-color: transparent;
    }


    .privacy-dialog {
        width: 90%;
        max-height: 90vh;
        padding: 20px;
    }

    .privacy-dialog h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .privacy-content {
        font-size: 13px;
    }

    .privacy-content h3 {
        font-size: 16px;
    }

    .disclaimer-dialog {
        width: 90%;
        max-height: 90vh;
        padding: 20px;
    }

    .disclaimer-dialog h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .disclaimer-content {
        font-size: 13px;
    }
}

@media (max-width: 800px) {

    .dHide {
        display: block !important;
    }

    .mHide {
        display: none !important;
    }

    .container {
        width: 800px;
        max-width: 92%;
        margin: 0 auto;
    }

    .logo img {
        width: 43%;
    }

    .heading h1 {
        font-size: 26px;
    }

    .marginTopBottom {
        padding-top: 30px;
        /* padding-bottom: 20px; */
    }

    .nav-item{
       white-space: nowrap;
       width: 147px;
    }

    .hero_banner {
        /* height: 67vh; */
        height: 100%;
    }

    .banneroverlay {
        align-items: center;
    }

    .banneroverlay h2 {
        font-size: 28px;
    }

    .locationMap {
        margin-top: 15px;
    }

    .footer {
        padding-top: 20px;
    }

    /* Show hamburger and hide desktop menu on small screens */
    .hamburger {
        display: flex;
    }

    /* hide desktop main menu if present */
    .nav-links .main-menu {
        display: none;
    }

    .nav-links {
        gap: 8px;
    }

    /* make side-nav full-width on smaller screens */
    .side-nav {
        right: -100%;
        width: 100%;
        max-width: 100%;
        padding-top: 80px;
    }

    .side-nav.active {
        right: 0;
    }

    .worldsBestBelong_section p {
        width: 93%;
    }

    .about_elieSaab_content P {
        width: 90%;
    }

    .m3mResidency_content p {
        width: 95%;
    }

    .exclusive_clubhouseSlider .slick-slide {
        padding: 0 25px;
        transition: none;
        transform: none;
    }

    .exclusive_clubhouseSlider .slick-list {
        margin: 0 -25px;
    }

    .exclusive_clubhouseSlide {
        flex-basis: 28%;
        max-width: 28%;
    }

    .exclusive_clubhouseSlide.center,
    .exclusive_clubhouseSlide.active {
        flex-basis: 44%;
        max-width: 44%;
    }

    .exclusive_clubhouseSlide h3 {
        font-size: 13px;
    }


    .exclusive_clubhouseSlider .slick-center {
        transform: none !important;
    }

    .exclusive_clubhouseSlider {
        padding: 0px;
        width: 100%;
        margin: 0 auto;
        padding-top: 20px;
    }

    .prev_arrow_floorPlan,
    .next_arrow_floorPlan,
    .prev_arrow_amenities,
    .next_arrow_amenities,
    .prev_arrow,
    .next_arrow {
        width: 17px;
    }

    .amenities .slider_arrows .prev_arrow_amenities,
    .prev_arrow_floorPlan,
    .prev_arrow {
        left: 8px;
    }

    .amenities .slider_arrows .next_arrow_amenities,
    .next_arrow_floorPlan,
    .next_arrow {
        right: 8px;
        left: auto;
    }

    .amenities_slider {
        width: 80%;
    }

    /* about_elieSaabMain */
    .about_elieSaabMain {
        background-image: url("assets/images/mobile/about_elieSaabBgM.png");
        padding: 50px 0px;
    }

    .bb_logo {
        width: 80%;
        margin: 40px auto;
    }

    .downloadBrochure {
        width: 38%;
    }

    /* floor plan */

    .floorPlan_image {
        width: 90%;
    }

    /* aboutscda */

    /* .aboutscda {
        background-image: url("assets/images/mobile/scda.png");
        background-size: contain;
    } */

    .aboutscda p {
        width: 95%;
    }

    /* additional info */

    .additionalFormFlex {
        flex-direction: column;
    }

    .additionalFormitem {
        width: 80%;
        margin: 0 auto;
    }

    .additionalForm label {
        text-align: center;
    }

    .additionalForm button {
        width: 30%;
    }

    .footerContent {
        flex-direction: column;
        gap: 10px;
    }

    .footerLinks a {
        margin-left: 0;
    }

    .footerLinks .privacyPolicy {
        margin-left: 20px;
    }
}