﻿
/*<!-- Main Top-- >////////////////<!-- Main Top-- >/////////////<!-- Main Top-- >////////////<!-- Main Top-- >///////////<!-- Main Top-- >////////*/
/* =========================
           HERO SECTION
        ========================= */
/* Mobile */


.parallax-sections {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-image: url('images/Back3.jpg');
    background-size: cover;
    background-position: 50% 80%;
    background-repeat: no-repeat;
}

    /* Luxury Overlay */

    .parallax-sections::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 25%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.05) 100% );
    }

/* =========================
           LOGO
        ========================= */

.logo-container {
    position: absolute;
    top: 35px;
    left: 50px;
    z-index: 10;
    color: black;
}

    .logo-container img {
        width: 170px;
        height: auto;
        display: block;
    }

/* =========================
           TEXT CONTENT
        ========================= */

.bottom-text {
    position: absolute;
    left: 5%;
    top: 75%;
    transform: translateY(-50%);
    z-index: 10;
    width: 650px;
    max-width: 45%;
    color: #d4af37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 2px;
    text-align: left;
    text-shadow: 0 5px 20px rgba(0,0,0,0.85);
}

    .bottom-text span {
        display: block;
        margin-top: 5px;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 4px;
        text-transform: uppercase;
    }

/* =========================
           HOME BUTTON
        ========================= */

.home-link {
    position: absolute;
    top: 35px;
    right: 50px;
    z-index: 10;
    padding: 14px 28px;
    background: linear-gradient( 135deg, #d4af37, #f0d57a );
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(212,175,55,.35);
}

    .home-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(212,175,55,.55);
        background: linear-gradient( 135deg, #e6c253, #ffd86f );
    }

/* =========================
           LARGE DESKTOP
        ========================= */

@media (min-width: 1600px) {

    .bottom-text {
        font-size: 42px;
        width: 750px;
    }

        .bottom-text span {
            font-size: 26px;
        }
}

/* =========================
           TABLET
        ========================= */

@media (max-width: 991px) {

    .logo-container img {
        width: 140px;
    }

    .bottom-text {
        left: 6%;
        max-width: 60%;
        font-size: 46px;
    }

        .bottom-text span {
            font-size: 18px;
        }
}

/* =========================
           MOBILE
        ========================= */

.parallax-sections {
    background-position: center center;
}

.logo-container {
    top: 20px;
    left: 20px;
}

    .logo-container img {
        width: 110px;
    }

.home-link {
    top: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: 2px;
}

.bottom-text {
    left: 20px;
    top: 70%;
    transform: translateY(-50%);
    max-width: 100%;
    font-size: 27px;
}

    .bottom-text span {
        margin-top: 12px;
        font-size: 14px;
        letter-spacing: 2px;
    }


/*About Us////////////////////About Us/////////////About Us//////////////About Us//////////////About Us/////////////About Us///////////About Us///////////*/
/* ==========================================
           FULL SCREEN SPLIT SECTION
        ========================================== */
.split-section {
    display: flex;
    width: 100%;
    /*min-height: 100vh;*/
}

/* LEFT SIDE IMAGE */
.split-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

    .split-image img {
        max-width: 100%;
        max-height: 100vh;
        width: auto;
        height: auto;
        object-fit: contain;
    }

/* RIGHT SIDE CONTENT */
.split-content {
    width: 50%;
    background: #f4f1ec;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    box-sizing: border-box;
}

.content-wrapper ul {
    list-style: none;
    padding-left: 0;
    color: black;
}

    .content-wrapper ul li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 5px;
        line-height: 21px;
        color: black;
    }

        .content-wrapper ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: #b08d57; /* luxury gold */
            font-size: 17px;
            line-height: 1;
        }

.content-wrapper {
    max-width: 650px;
    width: 100%;
}

    /* Typography */
    .content-wrapper h2 {
        font-size: 36px;
        font-weight: 300;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #1a1a1a;
        margin-bottom: -18px;
        font-family: 'Cormorant Garamond', serif;
    }

    .content-wrapper p {
        font-size: 12px;
        line-height: 1.2;
        color: #3a3a3a;
        margin-bottom: 4px;
        font-family: 'Montserrat', sans-serif;
    }

    .content-wrapper b {
        font-weight: 600;
        letter-spacing: 1px;
    }

.btn-explore {
    display: inline-block;
    margin-top: 10px;
    padding: 16px 42px;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

    .btn-explore:hover {
        background: #1a1a1a;
        color: #fff;
    }

/* ==========================================
           TABLET
        ========================================== */

@media (max-width: 1024px) {

    .split-content {
        padding: 50px;
    }

    .content-wrapper h2 {
        font-size: 42px;
    }

    .content-wrapper p {
        font-size: 16px;
    }
}

/* ==========================================
           MOBILE
        ========================================== */

@media (max-width: 768px) {

    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-image {
        width: 100%;
        /*height: 45vh;*/
    }

    .split-content {
        width: 100%;
        height: auto; /* IMPORTANT */
        padding: 40px 25px;
        align-items: flex-start;
    }

    .content-wrapper {
        max-width: 100%;
    }

        .content-wrapper h2 {
            font-size: 22px;
            line-height: 1.1;
            margin-bottom: 15px;
        }

        .content-wrapper p {
            font-size: 12px;
            line-height: 1.7;
            margin-bottom: 16px;
        }

    .btn-explore {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

/*Club Laureate///////////////////////Club Laureate////////////////////////Club Laureate///////////Club Laureate///////////Club Laureate/////////////Club Laureate*/
/* ==========================================
           CLUB LAUREATE OVERRIDE
        ========================================== */

#services p {
    margin: 0;
    line-height: 1.2;
}

#services .section-content {
    max-width: 1700px !important;
    width: 100% !important;
    padding: 0 !important;
}

.club-feature-list {
    margin: 10px 0 0 80px;
    padding-left: 20px;
    text-align: left;
    font-family: Calibri;
    /*list-style-type: disc;*/
    /*color: darkgoldenrod;*/
    font-size: 17px;
}

    .club-feature-list li::marker {
        font-size: 1.2em;
        color: darkgoldenrod;
        padding-top: 40px;
    }

    .club-feature-list li {
        text-align: left;
        margin-bottom: 0px;
    }


/* ==========================================
           CLUB INTRO AREA
        ========================================== */

.club-intro-wrapper {
    max-width: 1400px;
    margin: 0 auto 10px;
    padding: 10px 10px 0px;
    text-align: left;
}

/* Logo */

.club-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    margin-top: 20px;
}

    .club-logo img {
        width: 250px;
        max-width: 80%;
        height: auto;
        display: block;
    }

/* Subtitle */

#services .section-subtitle {
    color: #d4af37;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    text-align: center;
}

    #services .section-subtitle::before,
    #services .section-subtitle::after {
        /*content: "";
                        display: inline-block;
                        width: 80px;
                        height: 1px;
                        background: rgba(212,175,55,.45);
                        vertical-align: middle;
                        margin: 0 8px;*/
    }

/* Main Description */

#services .club-intro {
    max-width: 1100px;
    margin: 0 auto;
    color: #ffffff;
    font-family: Calibri, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.4px;
    text-align: center;
}

/* Tagline */

#services .club-tagline {
    margin-top: 35px;
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

    #services .club-tagline::before {
        content: "";
        display: block;
        width: 140px;
        height: 2px;
        margin: 0 auto 18px;
        background: linear-gradient( 90deg, transparent, #d4af37, transparent );
    }

/* ==========================================
           CONTENT SECTIONS
        ========================================== */

#services .section {
    overflow: hidden;
    margin: 0 auto;
}

    #services .section:not(.wide-section) {
        width: 100%;
        max-width: 1400px;
    }

#services .wide-section {
    width: 100%;
    max-width: none;
    min-height: 260px;
}

#services .row {
    display: flex;
    align-items: center;
    min-height: 260px;
}

/* TEXT SIDE */

#services .left-side,
#services .left-sidesmall {
    width: 100%;
    padding: 40px 45px;
}

/* IMAGE SIDE */

#services .right-side {
    flex: 0 0 45%;
    width: 45%;
    padding: 15px;
}

#services .right-top,
#services .right-topsmall {
    height: 100%;
}

    #services .right-top img,
    #services .right-topsmall img {
        width: 100%;
        height: 100%;
        min-height: 260px;
        object-fit: cover;
        display: block;
        padding-right: 80px;
    }

/* REMOVE WIDTH RESTRICTIONS */

#services .top-content,
#services .content-grid,
#services .description,
#services .descriptionsmall {
    width: 100% !important;
    max-width: none !important;
}

/* HEADINGS */

#services .small-title,
#services .small-titlesmall {
    font-size: 20px !important;
    color: darkgoldenrod;
    line-height: 1.5;
    padding-left: 80px;
}

/* DESCRIPTION */

#services .description,
#services .descriptionsmall {
    font-size: 18px !important;
    line-height: 1.9;
    font-family: Arial, sans-serif;
    letter-spacing: 0.2px;
    padding-left: 80px;
    padding-right: 60px;
}

#services .descriptionsmall {
    text-align: left;
}

/* ==========================================
           BOXES
        ========================================== */

.hospitality-box {
    background: #ffffff;
    color: #000;
    box-shadow: 0 25px 40px rgba(111,78,55,.25);
}

.wellness-box {
}

.leisure-box {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(29,78,137,.25);
}

.vitality-box {
}

.care-box {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(91,59,122,.25);
}

.business-box {
}

/* ==========================================
           MOBILE
        ========================================== */

@media (max-width:768px) {

    .club-intro-wrapper {
        padding: 0px 15px 5px;
        margin-top: -60px;
        margin-bottom: 5px;
    }

    .club-feature-list {
        margin: 15px 0 0 0px;
        font-size: 15px;
        line-height: 1.8;
    }

    .club-logo img {
        width: 180px;
        margin-top: 1px;
    }

    #services .section-subtitle {
        font-size: 17px;
        letter-spacing: 3px;
    }

        #services .section-subtitle::before,
        #services .section-subtitle::after {
            width: 35px;
            margin: 0 8px;
        }

    #services .club-intro {
        font-size: 15px;
        line-height: 1.8;
    }

    #services .club-tagline {
        font-size: 14px;
        letter-spacing: 2px;
        margin-top: 25px;
    }

        #services .club-tagline::before {
            width: 80px;
        }

    #services .section,
    #services .wide-section {
        width: 95%;
        max-width: 95%;
        margin: 0 auto;
    }

    #services .row {
        flex-direction: column;
        min-height: auto;
    }

    #services .left-side,
    #services .left-sidesmall {
        width: 100%;
        padding: 25px;
    }

    #services .right-side {
        width: 100%;
        padding: 20px;
    }

    #services .right-top,
    #services .right-topsmall {
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

        #services .right-top img,
        #services .right-topsmall img {
            width: 100%;
            height: 100%;
            min-height: auto;
            object-fit: cover;
            padding: 0;
            display: block;
        }

    #services .small-title,
    #services .small-titlesmall {
        font-size: 18px !important;
        padding-left: 0;
        text-align: left;
    }

    #services .description,
    #services .descriptionsmall {
        font-size: 16px !important;
        line-height: 1.8;
        padding-left: 0;
        padding-right: 0;
    }
}

/*an address//////////////////////////an address//////////////////an address*/
/*an address*/
/*an address*/
/*an address*/
.appreciation-section .right-content {
    border-top: none !important;
}

.appreciation-section .stats-row {
    border-top: none !important;
}

    .appreciation-section .right-content::before,
    .appreciation-section .right-content::after,
    .appreciation-section .stats-row::before,
    .appreciation-section .stats-row::after {
        display: none !important;
        content: none !important;
    }
/* ==========================================
           APPRECIATION SECTION
        ========================================== */

.appreciation-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #050505 0%, #0b0b0b 40%, #151515 100% );
}

    .appreciation-section .section-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 90px 50px;
        box-sizing: border-box;
    }

    /* Layout */
    .appreciation-section .content-grid {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 20px;
        align-items: center;
    }

    /* Left Content */
    .appreciation-section .left-content p {
        color: rgba(255,255,255,.85);
        font-size: 18px;
        line-height: 1.9;
        margin-bottom: 15px;
        text-align: justify;
    }

        .appreciation-section .left-content p:first-child {
            color: #d4af37 !important;
            font-size: 20px !important;
            line-height: 1.2;
            text-align: left;
            margin-bottom: 15px;
        }

        .appreciation-section .left-content p:nth-child(2) {
            color: #d4af37 !important;
            font-size: 16px !important;
            line-height: 1.5;
            text-align: left;
            font-style: italic;
            font-family: "Cormorant Garamond", serif;
            margin-bottom: 10px;
        }

    /* Right Side */
    .appreciation-section .right-content {
        width: 100%;
        padding-top: 0px; /* removes line effect */
    }

    /* Cards Grid */
    .appreciation-section .stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        width: 100%;
    }

    /* Cards */
    .appreciation-section .stat-card {
        background: rgba(255,255,255,.04);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(212,175,55,.25);
        border-radius: 24px;
        min-height: 210px;
        padding: 15px 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
        transition: all .35s ease;
    }

        /* Push first row down */
        .appreciation-section .stat-card:nth-child(1),
        .appreciation-section .stat-card:nth-child(2) {
            margin-top: 0px;
        }

        .appreciation-section .stat-card:hover {
            transform: translateY(-6px);
            border-color: #d4af37;
            box-shadow: 0 15px 35px rgba(212,175,55,.15);
        }

        .appreciation-section .stat-card h4 {
            color: #d4af37;
            font-size: 22px;
            margin-bottom: 18px;
            letter-spacing: 1px;
            line-height: 1.4;
        }

        .appreciation-section .stat-card p {
            color: rgba(255,255,255,.82);
            font-size: 16px;
            line-height: 1.8;
            margin: 0;
        }

/* Mobile */
@media (max-width: 991px) {

    .appreciation-section .section-content {
        padding: 60px 25px;
    }

    .appreciation-section .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .appreciation-section .stats-row {
        grid-template-columns: 1fr;
    }

    .appreciation-section .stat-card:nth-child(1),
    .appreciation-section .stat-card:nth-child(2) {
        margin-top: 0;
    }

    .appreciation-section .left-content p:first-child {
        font-size: 30px !important;
    }

    .appreciation-section .left-content p:nth-child(2) {
        font-size: 24px !important;
    }
}
/* Mobile */
@media (max-width: 768px) {

    .appreciation-section .section-content {
        padding: 60px 25px;
    }

    .appreciation-section .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .appreciation-section .stats-row {
        grid-template-columns: 1fr;
    }

    .appreciation-section .stat-card:nth-child(1),
    .appreciation-section .stat-card:nth-child(2) {
        margin-top: 0;
    }

    .appreciation-section .left-content p:first-child {
        font-size: 20px !important;
    }

    .appreciation-section .left-content p:nth-child(2) {
        font-size: 16px !important;
    }
}

/*Club/////////////////Club/////////////Club////////////////////Club///////////////////Club//////////////Club//////////////////Club//////////////////*/
.section {
    max-width: 1000px;
    margin: 0 auto;
}

.row {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.left-side {
    width: 52%;
}

.right-side {
    width: 48%;
}

.small-title {
    font-size: 16px;
    color: #caa35b;
    font-style: italic;
    margin-bottom: 8px;
}

.main-title {
    font-size: 34px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.club-content-grid {
    display: flex;
    gap: 25px;
}

.description {
    width: 100%;
    font-size: 16px;
    /*line-height: 1.8;*/
    color: white;
    text-align: justify;
}

.features {
    width: 55%;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features li {
        border-left: 2px solid #caa35b;
        padding-left: 12px;
        margin-bottom: 10px;
        color: #fff;
        font-size: 14px;
    }

/* Bottom Image */
.bottom-images img {
    width: 100%;
    height: 220px; /* reduced from 340+ */
    object-fit: cover;
    display: block;
    margin-top: 25px;
}

.right-side {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.right-top img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.right-bottom img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {

    .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .left-side,
    .right-side {
        width: 100%;
    }

    /* Content first */
    .top-content {
        order: 1;
    }

    /* q1 second */
    .bottom-images {
        order: 2;
    }

    /* Right side container after q1 */
    .right-side {
        order: 3;
        display: flex;
        flex-direction: column;
    }

    /* q2 third */
    .right-top {
        order: 1;
    }

    /* q3 fourth */
    .right-bottom {
        order: 2;
    }

    .content-grid {
        flex-direction: column;
        gap: 15px;
    }

    .description,
    .features {
        width: 100%;
    }

    .bottom-images img,
    .right-top img,
    .right-bottom img {
        width: 100%;
        height: auto;
    }
}

/*Studios ////////////////Studios//////////////////////////Studios/////////////////Studios/////////////////Studios////////////////Studios////////////*/
/* =========================================
           STUDIO SECTION
           ========================================= */
.studio-section {
    padding: 50px 0;
    background: #faf9f6;
    margin-top: -90px;
}

.studio-block {
    max-width: 1350px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

@media (max-width:991px) {
    .studio-block {
        padding: 0 20px;
    }
}

@media (max-width:768x) {
    .studio-block {
        padding: 0 20px;
    }
}

/* =========================================
   HEADER
========================================= */

.unit-header {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d9b16f;
}

    .unit-header:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 120px;
        height: 4px;
        background: #16243b;
    }

    .unit-header h2 {
        margin: 0;
        font-size: 40px;
        /*font-weight: 700;*/
        color: #16243b;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .unit-header h3 {
        margin: 0;
        margin-top: -15px;
        font-size: 17px;
        /*font-weight: 700;*/
        color: #16243b;
        /*letter-spacing: 2px;*/
        text-transform: uppercase;
    }

    .unit-header h4 {
        margin: 1px 0 0;
        max-width: 900px;
        font-size: 20px;
        line-height: 1.2;
        color: darkgreen;
        font-weight: 400;
        font-family: 'Monotype Corsiva';
    }

/* =========================================
   MAIN LAYOUT
========================================= */

.studio-container {
    display: flex;
    gap: 25px;
    align-items: stretch;
}

.studio-image-area {
    width: 70%;
}

.studio-details {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* =========================================
   IMAGE CARDS
========================================= */

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(176,138,71,.18);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

    .image-card img {
        transition: transform 0.3s ease;
    }
/* MAIN UNIT IMAGE */

.studio-image-area .image-card {
    height: 560px;
}

    .studio-image-area .image-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Blur */
        /*filter: blur(3px);*/
        transition: all .4s ease;
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }

    .studio-image-area .image-card:hover img {
        /*filter: blur(2px);*/
        transform: scale(1.02);
    }

/* LOCATION IMAGE////////////////////////LOCATION IMAGE/////////////////////////LOCATION IMAGE/////////////////////LOCATION IMAGE///////////////// */

.location-card {
    height: 390px;
}

    .location-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        /*filter: blur(3px);*/
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }

    .location-card:hover img {
        /*filter: blur(2px);*/
    }

/* =========================================
   WATERMARK
========================================= */

.plan-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(184,148,91,.30);
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* =========================================
   PROTECTION LAYER
========================================= */

.image-protection {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 5;
}

/* =========================================
   ZOOM BUTTONS
========================================= */

.zoom-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .zoom-controls button {
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: #16243b;
        color: #fff;
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
        transition: .3s;
    }

        .zoom-controls button:hover {
            background: #b08a47;
            transform: scale(1.05);
        }

/* =========================================
   AREA BOXES
========================================= */

.area-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.area-box {
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    border: 1px solid rgba(176,138,71,.2);
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
    transition: .3s;
}

    .area-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,.08);
    }

    .area-box h4 {
        margin: 0;
        font-size: 30px;
        font-weight: 700;
        color: #16243b;
    }

    .area-box span {
        display: block;
        margin-top: 8px;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #b08a47;
    }


.area-summary {
    padding: 0;
    overflow: hidden;
}

.area-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    border-bottom: 1px solid rgba(176,138,71,.15);
}

    .area-row:last-child {
        border-bottom: none;
    }

.area-label {
    font-size: 18px;
    font-weight: 900;
    color: #16243b;
    letter-spacing: 1px;
}

.area-value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

@media (max-width:768px) {
    .area-row {
        padding: 4px 10px;
    }

    .area-label,
    .area-value {
        font-size: 14px;
    }
}
/* =========================================
   EXTRA SECURITY
========================================= */

img {
    -webkit-touch-callout: none;
}

/*body {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}*/

/* =========================================
   MOBILE
========================================= */

@media (max-width:991px) {

    .studio-container {
        flex-direction: column;
    }

    .studio-image-area,
    .studio-details {
        width: 100%;
    }

        .studio-image-area .image-card {
            height: 400px;
        }

    .location-card {
        height: 220px;
    }

    .unit-header h2 {
        font-size: 28px;
    }

    .unit-header h4 {
        font-size: 14px;
    }

    .area-box h4 {
        font-size: 24px;
    }

    .plan-watermark {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .studio-image-area .image-card img,
    .location-card img {
        /*filter: blur(2px);*/
    }
}

@media (max-width:768px) {

    .studio-container {
        flex-direction: column;
    }

    .studio-image-area,
    .studio-details {
        width: 100%;
    }

        .studio-image-area .image-card {
            height: 400px;
        }

    .location-card {
        height: 220px;
    }

    .unit-header h2 {
        font-size: 28px;
    }

    .unit-header h4 {
        font-size: 14px;
        font-family: 'Monotype Corsiva';
    }

    .area-box h4 {
        font-size: 24px;
    }

    .plan-watermark {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .studio-image-area .image-card img,
    .location-card img {
        /*filter: blur(2px);*/
    }
}

/*Image scroll//////////////////Image scroll/////////////////////Image scroll/////////////////Image scroll/////////////////Image scroll//////////////*/

/* ==========================================
   3D COVERFLOW SLIDER
========================================== */

.coverflow-section {
    width: 100%;
    padding: 0px 0;
    background: #fff;
    overflow: hidden;
}

.coverflow-container {
    width: 100%;
    height: 400px;
    perspective: 1200px;
    position: relative;
}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

    .coverflow-track img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 650px;
        height: 420px;
        object-fit: cover;
        transform-style: preserve-3d;
        transition: all 0.8s ease;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,.25);
    }

        /* Center */
        .coverflow-track img:nth-child(1) {
            transform: translate(-50%, -50%) translateZ(120px);
            z-index: 5;
        }

        /* Right */
        .coverflow-track img:nth-child(2) {
            transform: translate(-5%, -50%) rotateY(-45deg) scale(.8);
            z-index: 4;
        }

        .coverflow-track img:nth-child(3) {
            transform: translate(45%, -50%) rotateY(-55deg) scale(.65);
            z-index: 3;
        }

        /* Left */
        .coverflow-track img:nth-child(4) {
            transform: translate(-95%, -50%) rotateY(45deg) scale(.8);
            z-index: 4;
        }

        .coverflow-track img:nth-child(5) {
            transform: translate(-145%, -50%) rotateY(55deg) scale(.65);
            z-index: 3;
        }

/* Mobile */
@media (max-width:768px) {

    .coverflow-container {
        height: 280px;
    }

    .coverflow-track img {
        width: 85vw;
        height: auto;
    }

        .coverflow-track img:nth-child(2),
        .coverflow-track img:nth-child(4) {
            opacity: .6;
        }

        .coverflow-track img:nth-child(3),
        .coverflow-track img:nth-child(5) {
            opacity: .3;
        }
}

/*CLUB LAUREATE -SEP///////////////CLUB LAUREATE -SEP//////////////////CLUB LAUREATE -SEP/////////////////CLUB LAUREATE -SEP///////////CLUB LAUREATE -SEP*/
.luxury-ecosystem {
    padding: 10px 0;
    background: #f4f1ec;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: auto;
    align-items: stretch;
}

.eco-card {
    background: linear-gradient( 180deg, #111111 0%, #1a1a1a 50%, #000000 100% );
    /* Remove visible border line */
    border: none;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,.15), inset 0 0 0 1px rgba(176,138,71,.15);
    transition: all .4s ease;
}

    .eco-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,.35), inset 0 0 0 1px rgba(176,138,71,.4);
    }

.overlay {
    /*padding: 30px;*/
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .overlay h5 {
        color: #c9a66b;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        letter-spacing: .5px;
        margin-left: 22px;
        margin-top: 10px;
    }

    .overlay h4 {
        color: #c9a66b;
        font-size: 20px;
        font-weight: 700;
        line-height: 0;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: .5px;
        min-height: 5px;
        margin-left: 22px;
        margin-top: 5px;
    }

    .overlay img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        /*margin: 20px 0 25px;*/
        flex-shrink: 0;
    }

    .overlay ul {
        padding-left: 22px;
        margin: 0;
        line-height: 1.15px;
        flex-grow: 1;
        margin-left: 22px;
        margin-top: 10px;
    }

    .overlay li {
        color: #c9a66b;
        font-size: 17px;
        line-height: 1.8;
        /*margin-bottom: 12px;*/
    }

        .overlay li::marker {
            color: #c9a66b;
        }

/* Tablet */
@media (max-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .overlay h4 {
        font-size: 24px;
        min-height: auto;
    }

    .eco-card {
        min-height: auto;
    }

    .overlay img {
        height: 200px;
    }
}

/*Location Story/////////////////////Location Story///////////////////////Location Story/////////////////////Location Story//////////////*/
/* ==========================================
           BRAND STORY SECTION
        ========================================== */

.brand-story-section {
    width: 100%;
    overflow: hidden;
    background-color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ==========================================
           COMMON PANEL
        ========================================== */

.story-panel {
    box-sizing: border-box;
    min-height: 500px;
}

/* ==========================================
           LEFT PANEL
        ========================================== */

.dark-panel {
    background-color: white;
    color: #fff;
    text-align: center;
    padding-left: 40px;
}

    .dark-panel h2 {
        /*font-family: "Cormorant Garamond", serif;
                font-size: 22px;
                line-height: 1.05;
                font-weight: 400;
                /*margin: 0 0 25px;*/
        text-transform: uppercase;
    }

.intro-text {
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    /*margin: 0 0 50px;*/
    max-width: 620px;
}

.gateway-block {
    margin-bottom: 40px;
}

    .gateway-block h4 {
        font-size: 22px;
        letter-spacing: 2px;
        margin: 0 0 20px;
        text-transform: uppercase;
    }

.gateway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

    .gateway-grid h5 {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 8px;
    }

    .gateway-grid span {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(255,255,255,0.35);
        margin-bottom: 15px;
    }

    .gateway-grid p {
        font-size: 17px;
        line-height: 1.8;
        margin: 0;
        text-align: justify;
    }

.statement {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 620px;
}

/* ==========================================
           RIGHT PANEL
        ========================================== */

.light-panels {
    background-color: white;
    color: #111;
    padding: 10px;
    padding-top: 20px;
}

    .light-panels h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        line-height: 1.1;
        font-weight: 400;
        margin: 0 0 20px;
        padding-top: 40px;
        text-transform: uppercase;
    }

.taglines {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 19px;
    margin: 0 0 30px;
}

.content-texts {
    margin-top: 10px;
}

    .content-texts p {
        font-size: 16px;
        line-height: 2.2;
        margin: 0 0 0px;
        text-align: justify;
        max-width: 700px;
        color: black;
        padding-right: 40px;
        padding-top: 20px;
    }

.architecture-notes {
    margin-top: 80px;
}

.architecture-note h4 {
    font-size: 22px;
    letter-spacing: 1.6px;
    margin: 0 0 25px;
    padding-top: 20px;
    text-transform: uppercase;
}

.architecture-notes p {
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
           TABLET
        ========================================== */

@media (max-width: 991px) {

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-panel {
        min-height: auto;
    }

    .dark-panel,
    .light-panel {
        padding: 50px 40px;
    }

        .dark-panel h2,
        .light-panel h3 {
            font-size: 38px;
        }

    .gateway-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

        .intro-text,
        .gateway-grid p,
        .content-text p {
            font-size: 17px;
        }

    .architecture-note p {
        font-size: 22px;
    }
}

/* ==========================================
           MOBILE
        ========================================== */

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-panel {
        min-height: auto;
    }

    /* Left panel */
    .dark-panel {
        padding: 10px 0;
        text-align: center;
    }

        .dark-panel img {
            width: 100%;
            max-width: 450px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

    /* Right panel */
    .light-panels {
        padding: 15px 20px 25px;
    }

        .light-panels h3 {
            font-size: 18px;
            line-height: 1.1;
            margin: 0 0 12px;
            padding-top: 0;
        }

    .taglines {
        font-size: 15px;
        line-height: 1.3;
        margin: 0 0 15px;
    }

    .content-texts {
        margin-top: 0;
    }

        .content-texts p {
            font-size: 15px;
            line-height: 1.45; /* tighter line spacing */
            margin: 0;
            padding-top: 10px; /* space between paragraphs */
            padding-right: 0;
            text-align: justify;
        }

    .gateway-block h4,
    .architecture-note h4 {
        font-size: 18px;
    }

    .architecture-note p {
        font-size: 16px;
        line-height: 1.4;
    }

    .statement {
        font-size: 15px;
        line-height: 1.4;
    }
}

/*Location Advantage//////////////Location Advantage/////////////////////////////Location Advantage//////////////////Location Advantage//////////*/
/* ==========================================
   LOCATION ADVANTAGE SECTION
========================================== */

.brand-story-sectionADV {
    width: 100%;
    background-color: white;
    padding: 10px 0;
}

/* ==========================================
   HEADING
========================================== */

.locadv2-header {
    text-align: center;
    margin-bottom: 10px;
}

.locadv2-subtitle {
    font-size: 28px;
    letter-spacing: 4px;
    color: #9b6f4a;
    text-transform: uppercase;
    display: inline-block;
}

/* ==========================================
   GRID
========================================== */

.locadv2-grid {
    width: 92%;
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 50px;
    align-items: stretch;
}

/* ==========================================
   LEFT PANEL
========================================== */

.locadv2-left {
    background: #fff;
    color: #000;
    padding: 10px 10px;
}

    .locadv2-left h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        line-height: 0.95;
        font-weight: 300;
        color: #000;
        margin-bottom: 10px;
    }

.locadv2-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

.locadv2-connectivity h4 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
}

.locadv2-columns {
    display: flex;
    gap: 40px;
}

.locadv2-column {
    flex: 1;
}

    .locadv2-column h5 {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 10px;
    }

.locadv2-line {
    width: 100%;
    height: 1px;
    background: #d6d6d6;
    margin-bottom: 18px;
}

.locadv2-column p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.locadv2-footer-text {
    margin-top: 70px;
    font-size: 24px;
    line-height: 1.5;
    color: #000;
    text-transform: uppercase;
}
/* ==========================================
   RIGHT SIDE
========================================== */

.locadv2-right {
    width: 100%;
}

/* ==========================================
   MAP
========================================== */

.locadv2-map {
    text-align: center;
    margin-bottom: 30px;
}

    .locadv2-map img {
        width: 100%;
        max-width: 320px;
        height: auto;
        display: inline-block;
    }

/* ==========================================
   ACCORDION
========================================== */

.locadv2-accordion {
    background: #f7f5f2;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid #ebe6df;
}

.locadv2-item {
    border-bottom: 1px solid #e5dfd8;
}

    .locadv2-item:last-child {
        border-bottom: none;
    }

.locadv2-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: all .35s ease;
    background: #f7f5f2;
}

.locadv2-item.active .locadv2-title {
    background: #a8836b;
}

.locadv2-item:first-child.active .locadv2-title {
    /*border-radius: 28px 28px 0 0;*/
}

.locadv2-title span {
    font-size: 15px;
    font-family: Calibri;
    font-weight: 500;
    color: #1f1f1f;
    transition: .3s ease;
}

.locadv2-item.active .locadv2-title span {
    color: #fff;
}

.locadv2-title svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #555;
    transition: .35s ease;
}

.locadv2-item.active .locadv2-title svg {
    color: #fff;
    transform: rotate(180deg);
}

.locadv2-content-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
    background: #f7f5f2;
}

.locadv2-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 12px;
    border-top: 1px solid #ebe6df;
}

    .locadv2-row span {
        font-size: 13px;
        color: #000;
    }

    .locadv2-row strong {
        font-size: 13px;
        font-weight: 600;
        color: #000;
    }

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .locadv2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .locadv2-left {
        padding: 10px 5px;
    }

        .locadv2-left h3 {
            font-size: 42px;
        }

    .locadv2-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .locadv2-columns {
        flex-direction: column;
        gap: 25px;
    }

    .locadv2-column h5 {
        font-size: 22px;
    }

    .locadv2-column p {
        font-size: 15px;
    }

    .locadv2-footer-text {
        font-size: 18px;
        margin-top: 40px;
    }

    .locadv2-map img {
        max-width: 280px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .brand-story-sectionADV {
        padding: 00px 0;
    }

    .locadv2-grid {
        width: 92%;
        gap: 30px;
    }

    .locadv2-header {
        margin-bottom: 25px;
    }

    .locadv2-subtitle {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .locadv2-left {
        padding: 10px 10px;
    }

        .locadv2-left h3 {
            font-size: 18px;
            line-height: 1;
        }

    .locadv2-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .locadv2-connectivity h4 {
        font-size: 18px;
    }

    .locadv2-column h5 {
        font-size: 18px;
    }

    .locadv2-column p {
        font-size: 16px;
    }

    .locadv2-footer-text {
        font-size: 16px;
        margin-top: 30px;
    }

    .locadv2-title {
        padding: 18px;
    }

        .locadv2-title span {
            font-size: 16px;
        }

    .locadv2-row {
        padding: 14px 18px;
    }

        .locadv2-row span,
        .locadv2-row strong {
            font-size: 13px;
        }
}

/*IMAGE SECTION //////////////////////IMAGE SECTION/////////////////////////////IMAGE SECTION///////////////////////IMAGE SECTION////////////////*/

/* ==========================================
           IMAGE SECTION
        ========================================== */

.image-parallax-section {
    position: relative;
    width: 100%;
    background: #fff;
}

.image-section-content {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.image-container {
    width: 100%;
    line-height: 0;
}

.image-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* Large Desktop */
@media (min-width: 1600px) {

    .image-section-content {
        max-width: 1920px;
    }
}

/* Laptop */
@media (max-width: 1366px) {

    .image-bg {
        width: 100%;
        height: auto;
    }
}

/* Tablet */
@media (max-width: 992px) {

    .image-section-content {
        width: 100%;
    }

    .image-bg {
        width: 100%;
        height: auto;
    }
}

/* Mobile */
/* Mobile */
@media (max-width: 768px) {

    .image-parallax-section {
        padding: 0;
    }

    .image-bg {
        width: 100%;
        height: 500px; /* Increase as needed */
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .image-bg {
        height: 600px; /* Taller on smaller screens */
        object-fit: cover;
        object-position: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .image-bg {
        width: 100%;
        height: auto;
    }
}

/*video Section ////////////////////// video Section////////////////////////////// video Section//////////////////////////////////////////*/
/* ==========================================
           VIDEO SECTION
        ========================================== */

.parallax-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Luxury Light Background */
    background-color: #f7f5f2;
}

.video-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background-color: #f7f5f2;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background-color: #f7f5f2;
    z-index: 2;
}

.section-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1600px;
    text-align: center;
    color: #222;
    padding: 80px 20px;
}

.hero-title,
.section-title {
    font-size: clamp(42px, 6vw, 80px);
    letter-spacing: 6px;
    margin-bottom: 40px;
    font-weight: 300;
    color: #b8945b;
    text-transform: uppercase;
}

.video-container {
    width: 95%;
    max-width: 1500px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

    .video-container video {
        width: 100%;
        display: block;
        border-radius: 25px;
    }

.home-link {
    position: absolute;
    top: 35px;
    right: 60px;
    z-index: 10;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 4px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,.5);
    backdrop-filter: blur(5px);
    transition: all .3s ease;
}

    .home-link:hover {
        background: rgba(255,255,255,.15);
        border-color: #fff;
    }

/* ==========================================
           MOBILE
        ========================================== */

@media (max-width: 768px) {

    .parallax-section {
        min-height: auto;
        padding: 60px 0;
        background-color: #f7f5f2;
    }

    .section-content {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 34px;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }

    .video-container {
        width: 100%;
        border-radius: 15px;
    }

        .video-container video {
            border-radius: 15px;
        }

    .home-link {
        right: 20px;
        top: 20px;
    }
}

/*Contact ////////////////////////Contact//////////////////////////////////////Contact//////////////////////////////////////////////////*/

.video-container {
    width: 95%;
    max-width: 1500px;
    margin: 0 auto;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

    .video-container iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        border: 0;
        display: block;
    }

.contact-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
    margin-top: 50px;
}

.contact-info,
.contact-form-wrap {
    flex: 1;
}

.contact-info {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
}

    .contact-info h3 {
        margin-bottom: 30px;
        color: #fff;
        font-size: 28px;
    }

.info-box {
    margin-bottom: 30px;
}

    .info-box h4 {
        color: #fff;
        margin-bottom: 8px;
        font-size: 18px;
        letter-spacing: 1px;
    }

    .info-box p {
        color: rgba(255,255,255,0.85);
        line-height: 1.8;
    }

.contact-form-wrap {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 15px;
}

.contact-form .form-row {
    display: flex;
    gap: 15px;
}

    .contact-form .form-row input {
        flex: 1;
    }

.contact-form textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Mobile */
/* CONTACT SECTION MOBILE FIX */
@media (max-width: 768px) {

    #contacts .section-content {
        padding: 40px 15px !important;
    }

    .contact-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .contact-info,
    .contact-form-wrap {
        width: 100%;
        padding: 25px 20px;
        box-sizing: border-box;
    }

        .contact-info h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }

    .info-box {
        margin-bottom: 20px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        margin-bottom: 15px;
        padding: 14px 16px;
        font-size: 16px; /* prevents iOS zoom */
        box-sizing: border-box;
    }

    .contact-form textarea {
        min-height: 140px;
    }

    .btn-submit {
        width: 100%;
        padding: 15px;
    }

    /* prevent content from being cut */
    #contacts {
        height: auto !important;
        min-height: auto !important;
    }

        #contacts .parallax-bg {
            background-attachment: scroll !important;
        }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {

    .contact-info,
    .contact-form-wrap {
        padding: 20px 15px;
        border-radius: 15px;
    }

        .contact-info h3 {
            font-size: 20px;
        }

    .info-box p,
    .info-box a {
        font-size: 14px;
        line-height: 1.7;
    }
}

/*/*Bottom Strip///////////////////////////////Bottom Strip///////////////////////////////Bottom Strip//////////////////////////////////////*/

/* ==========================================
           STICKY BOTTOM ACTION BAR
        ========================================== */
/* Disclaimer - Normal Flow */



/* =========================
   GLOBAL RESET FIX
========================= */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
}

/* ASP.NET FORM FIX (IMPORTANT) */
form {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

/* =========================
   PAGE WRAPPER (CRITICAL FIX)
========================= */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================
   DISCLAIMER
========================= */
.site-disclaimer {
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 40px 0px;
    box-sizing: border-box;

}

/* =========================
   FIXED BOTTOM BAR
========================= */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    z-index: 9999;
   
}

/* =========================
   ACTION BUTTONS
========================= */
.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
  
}

    .action-btn i {
        font-size: 12px;
    }

.whatsapp-btn {
    background: darkgreen;
}

.enquire-btn {
    background: darkgoldenrod;
    color: black;
}

.call-btn {
    background: #3F84A6;
}

/* Hover Effects */
.whatsapp-btn:hover {
    background: darkgreen;
}

.enquire-btn:hover {
    background: #a8864f;
}

.call-btn:hover {
    background: #3F84A6;
}

/* =========================
   IMPORTANT FIX (NO WHITE SPACE)
========================= */

/* NEVER USE BODY PADDING FOR FIXED BAR */
body {
    padding-bottom: 0 !important;
}

/* SAFE SPACING CONTROL */
.page-wrapper {
    /*padding-bottom: 40px;*/

}

/* =========================
   MOBILE FIX (CRITICAL)
========================= */
@media (max-width:768px) {

    html, body {
        height: auto;
    }

    body {
        padding-bottom: 0 !important;
    }
    .action-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-decoration: none;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .3px;
        margin-top: -15px;

    }

    .page-wrapper {
        padding-bottom: 40px;
    }

    .site-disclaimer {
        margin-bottom: 0 !important;
    }

    .bottom-action-bar {
        height: 40px;
    }
}
