/* =========================================================
   GLOBAL FIX
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    overflow-y: auto !important;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: stretch;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND SLIDER
========================================================= */

.slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    z-index: -2;
}

.slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1s ease,
        visibility 1s ease;

    transform: scale(1.03);
}

.slide.active {
    opacity: 1;
    visibility: visible;

    animation: cocoaZoom 7s ease-in-out forwards;
}


/* Image dark overlay */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.42) 45%,
            rgba(0, 0, 0, 0.30) 100%
        );

    z-index: -1;
    pointer-events: none;
}


/* Right side slightly dark */

.hero::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 48%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.25)
    );

    z-index: -1;
    pointer-events: none;
}


@keyframes cocoaZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.10);
    }
}


/* =========================================================
   LEFT CONTENT
========================================================= */

/*.left-content {
    position: relative;

    width: 52%;
    min-height: 100vh;

    padding: 55px 5% 50px 7%;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;

    z-index: 2;
}*/


/* =========================================================
   BRAND LOGO
========================================================= */

.brand-logo {
    margin-bottom: 30px;
}

.brand-name img {
    display: block;

    max-width: 230px;
    width: 100%;
    height: auto;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.main-title {
    margin: 75px 0 35px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 78px);
    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -1px;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {
    width: fit-content;
    max-width: 100%;

    padding: 15px 20px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 12px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.project-logo img {
    display: block;

    max-width: 220px;
    width: 100%;
    height: auto;
}


/* =========================================================
   RIGHT PANEL
========================================================= */

.right-panel {
    position: relative;

    width: 48%;
    min-height: 100vh;

    padding: 45px 6% 35px 4%;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;

    z-index: 3;
}


/* =========================================================
   PROJECT INFO
========================================================= */

.project-info {
    color: #ffffff;

    font-size: 13px;
    line-height: 1.65;

    margin-bottom: 20px;

    max-width: 570px;
}

.project-info strong {
    font-weight: 700;
}

.project-info a {
    color: #ffffff;
}


/* =========================================================
   FORM TITLE
========================================================= */

.form-title {
    color: #ffffff;

    font-size: clamp(25px, 2.2vw, 36px);

    line-height: 1.2;

    margin: 0 0 20px;

    font-weight: 500;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    width: 100%;
    max-width: 570px;
}

.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form .form-control {
    display: block;

    width: 100%;
    height: 48px;

    box-sizing: border-box;

    padding: 0 16px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 5px;

    outline: none;

    background: rgba(255, 255, 255, 0.93);

    color: #2f1d0e;

    font-size: 15px;

    transition: 0.3s ease;
}

.contact-form textarea.form-control {
    height: 82px;

    padding-top: 13px;

    padding-bottom: 13px;

    resize: vertical;
}

.contact-form .form-control:focus {
    background: #ffffff;

    border-color: #c69a5b;

    box-shadow:
        0 0 0 3px rgba(198, 154, 91, 0.20);
}

.contact-form .form-control::placeholder {
    color: #777;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-btn {
    width: 100%;
    max-width: 570px;

    min-height: 50px;

    border: 0;
    border-radius: 5px;

    padding: 13px 25px;

    background: #c69a5b;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.submit-btn:hover {
    background: #a97c40;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   PHONE
========================================================= */

.phone-number {
    margin-top: 150px;
}

.phone-number a {
    display: inline-flex;

    align-items: center;

    color: #ffffff;

    text-decoration: none;

    font-size: 20px;

    font-weight: 700;
}

.phone-number a:hover {
    color: #c69a5b;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.phone-note {
    max-width: 570px;

    margin-top: 13px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 8px;
}

.slider-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 1px solid #ffffff;

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: 0.3s ease;
}

.slider-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #c69a5b;

    border-color: #c69a5b;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.25);

    z-index: 999;
}

.whatsapp span,
.whatsapp img {
    display: block;

    width: 100%;
    height: 100%;
}

.whatsapp img {
    object-fit: contain;
}


/* =========================================================
   CHAT BUTTON
========================================================= */

.chat-button {
    position: fixed;

    right: 25px;
    bottom: 95px;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2f1d0e;

    color: #ffffff;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.25);

    cursor: pointer;

    z-index: 999;

    transition: 0.3s ease;
}

.chat-button:hover {
    background: #c69a5b;

    transform: translateY(-3px);
}

.chat-button i {
    font-size: 19px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero {
        min-height: 100vh;
        height: auto;

        padding: 50px 0;
    }

    .left-content {
        width: 50%;

        min-height: calc(100vh - 100px);

        padding-left: 5%;
        padding-right: 3%;
    }

    .right-panel {
        width: 50%;

        min-height: calc(100vh - 100px);

        padding-left: 3%;
        padding-right: 5%;
    }

    .main-title {
        font-size: clamp(40px, 5vw, 62px);
    }

    .project-info {
        font-size: 12px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .hero {
        height: auto;
        min-height: 100vh;

        display: block;

        padding: 70px 0 80px;
    }

    .left-content,
    .right-panel {
        width: 100%;

        min-height: auto;

        padding-left: 8%;
        padding-right: 8%;
    }

    .left-content {
        padding-top: 20px;
        padding-bottom: 50px;

        justify-content: flex-start;
    }

    .right-panel {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .main-title {
        font-size: clamp(42px, 7vw, 65px);
    }

    .contact-form,
    .submit-btn {
        max-width: 650px;
    }

    .project-info,
    .phone-note {
        max-width: 650px;
    }

    .slider-dots {
        bottom: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero {
        min-height: 100vh;

        padding-top: 35px;
        padding-bottom: 80px;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.68),
                rgba(0, 0, 0, 0.50)
            );
    }

    .hero::after {
        display: none;
    }

    .left-content,
    .right-panel {
        padding-left: 20px;
        padding-right: 20px;
    }

    .left-content {
        padding-top: 10px;
        padding-bottom: 35px;
    }

    .brand-logo {
        margin-bottom: 25px;
    }

    .brand-name img {
        max-width: 180px;
    }

    .main-title {
        font-size: 40px;

        line-height: 1.08;

        margin-bottom: 25px;
    }

    .project-card {
        padding: 12px 15px;
    }

    .project-logo img {
        max-width: 175px;
    }

    .right-panel {
        padding-top: 10px;
    }

    .project-info {
        font-size: 11px;

        line-height: 1.55;

        margin-bottom: 18px;
    }

    .form-title {
        font-size: 27px;

        margin-bottom: 16px;
    }

    .contact-form .form-control {
        height: 47px;

        font-size: 14px;
    }

    .contact-form textarea.form-control {
        height: 75px;
    }

    .submit-btn {
        min-height: 48px;

        font-size: 14px;
    }

    .phone-number a {
        font-size: 18px;
    }

    .phone-note {
        font-size: 9px;

        line-height: 1.5;
    }

    .slider-dots {
        bottom: 22px;
    }

    .whatsapp {
        width: 48px;
        height: 48px;

        right: 15px;
        bottom: 15px;
    }

    .chat-button {
        width: 44px;
        height: 44px;

        right: 15px;
        bottom: 72px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .main-title {
        font-size: 34px;
    }

    .brand-name img {
        max-width: 155px;
    }

    .project-logo img {
        max-width: 150px;
    }

    .form-title {
        font-size: 24px;
    }

    .left-content,
    .right-panel {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* =========================================================
   IMPORTANT:
   PREVENT CHILD SECTIONS FROM GETTING HIDDEN
========================================================= */

/*
   Agar aapke existing CSS me ye laga hua hai:

   body {
       overflow: hidden;
   }

   .hero {
       position: fixed;
   }

   .hero {
       height: 100%;
   }

   to unhe REMOVE/OVERRIDE karein.
*/

body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.hero {
    position: relative !important;
}


/* =========================================================
   NEXT SECTION SAFETY
========================================================= */

.hero + section,
.hero ~ section,
.hero + div,
.hero ~ div {
    position: relative;

    z-index: 5;
}


        
		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		html{ scroll-behavior:smooth; }

        html,
        body {
            width: 100%;
            height: 100%;
            
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #2f1d0e;
			overflow-y: scroll;
        }
		
		:root{ --brown:#2f1d0e; --brown-light:#4a301c; --cream:#f6efe5; --gold:#c69a5b; --white:#ffffff; --text:#5e5145; } 

        /* =========================================
           BACKGROUND SLIDER
        ========================================= */

        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 650px;
            overflow: hidden;
            background: #2f1d0e;
        }

        .slider {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .slide {
            position: absolute;
            inset: 0;

            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;

            opacity: 0;
            transform: scale(1.05);

            transition:
                opacity 1.5s ease,
                transform 7s ease;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Dark overlay */
        .slider::after {
            content: "";
            position: absolute;
            inset: 0;

            background:
                linear-gradient(
                    90deg,
                    rgba(25, 15, 8, 0.72) 0%,
                    rgba(25, 15, 8, 0.38) 28%,
                    rgba(25, 15, 8, 0.08) 65%,
                    rgba(48, 29, 14, 0.25) 100%
                );

            z-index: 2;
        }


        /* =========================================
           LEFT CONTENT
        ========================================= */

        .left-content {
            position: absolute;
            z-index: 10;

            left: 4%;
            top: 5%;

            width: 48%;
            height: 90%;

            color: #fff;
        }

        /* Logo */

        .brand-logo {
            width: 230px;
            margin-bottom: 90px;
        }

        .brand-logo img {
            width: 100%;
            height: auto;
            display: block;
        }

        /*
           If logo image is not available,
           text logo can be used
        */

        .brand-name {
            color: #fff;
            font-family: Georgia, serif;
            font-size: 43px;
            letter-spacing: 3px;
            text-transform: uppercase;
            line-height: 1;
        }

        .brand-sub {
            font-size: 10px;
            letter-spacing: 2px;
            margin-top: 8px;
            text-align: center;
        }


        /* =========================================
           MAIN HEADING
        ========================================= */

        .main-title {
            font-family: 'Cormorant Garamond', serif;

            font-size: clamp(55px, 5.3vw, 92px);

            font-weight: 500;
            font-style: italic;

            line-height: 0.93;

            max-width: 650px;

            text-shadow: 0 3px 10px rgba(0,0,0,0.35);
        }


        /* =========================================
           PROJECT CARD
        ========================================= */

        .project-card {
            position: absolute;

            left: 0;
            bottom: 0;

            width: 310px;
            height: 310px;

            border: 2px solid rgba(255,255,255,0.8);

            display: flex;
            align-items: center;
            justify-content: center;

            background: rgba(72, 36, 9, 0.78);

            padding: 25px;
        }

        .project-card img {
            width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .project-logo {
            text-align: center;
            color: #d9b77b;
        }

        .project-symbol {
            width: 75px;
            height: 75px;

            border: 2px solid #d9b77b;
            border-radius: 50%;

            margin: auto auto 15px;

            position: relative;
        }

        .project-symbol:before,
        .project-symbol:after {
            content: "";
            position: absolute;

            width: 30px;
            height: 30px;

            border: 2px solid #d9b77b;
            border-radius: 50%;
        }

        .project-symbol:before {
            top: 5px;
            left: 20px;
        }

        .project-symbol:after {
            top: 20px;
            left: 5px;
        }

        .project-logo h2 {
            font-family: Georgia, serif;
            font-size: 43px;
            letter-spacing: 3px;
        }

        .project-logo h4 {
            margin-top: 3px;
            font-size: 17px;
            letter-spacing: 4px;
            font-weight: 400;
        }

        .project-logo p {
            margin-top: 15px;
            padding-top: 12px;

            border-top: 1px solid #a98450;

            font-size: 11px;
            letter-spacing: 2px;
        }


        /* =========================================
           RIGHT PANEL
        ========================================= */

        .right-panel {
            position: absolute;

            z-index: 20;

            top: 0;
            right: 0;

            width: 27%;

            min-width: 400px;

            height: 100%;

            background: rgba(67, 39, 20, 0.96);

            color: #fff;

            padding: 45px 4%;
        }


        /* =========================================
           TOP INFORMATION
        ========================================= */

        .project-info {
            text-align: right;

            font-size: 11px;
            line-height: 1.55;

            margin-bottom: 18px;
        }

        .project-info strong {
            font-weight: 600;
        }


        /* =========================================
           FORM TITLE
        ========================================= */

        .form-title {
            font-family: 'Cormorant Garamond', serif;

            font-size: 38px;

            font-style: italic;

            color: #d6b079;

            margin-bottom: 18px;
        }


        /* =========================================
           FORM
        ========================================= */

        .contact-form {
            width: 100%;
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-control {
            width: 100%;

            height: 50px;

            padding: 0 18px;

            background: transparent;

            border: 1px solid #a9824e;

            outline: none;

            color: #fff;

            font-family: 'Cormorant Garamond', serif;

            font-size: 19px;

            font-style: italic;
        }

        .form-control::placeholder {
            color: #fff;
            opacity: 0.85;
        }

        .form-control:focus {
            border-color: #d5b178;
            box-shadow: 0 0 0 1px #d5b178;
        }

        textarea.form-control {
            height: 120px;

            padding-top: 14px;

            resize: none;
        }


        /* =========================================
           BUTTON
        ========================================= */

        .submit-btn {
            margin-top: 22px;

            width: 205px;
            height: 48px;

            border: none;

            background: #b99867;

            color: #21150b;

            font-family: Georgia, serif;

            font-size: 17px;

            cursor: pointer;

            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #d1b181;
            transform: translateY(-2px);
        }


        /* =========================================
           PHONE
        ========================================= */

        .phone-number {
            margin-top: 120px;

            font-size: 38px;

            font-weight: 600;

            letter-spacing: 1px;

            color: #fff;
        }

        .phone-note {
            margin-top: 8px;

            max-width: 380px;

            font-size: 7px;

            line-height: 1.4;

            color: rgba(255,255,255,0.85);
        }


        /* =========================================
           SLIDER DOTS
        ========================================= */

        .slider-dots {
            position: absolute;

            z-index: 30;

            left: 50%;

            bottom: 25px;

            transform: translateX(-50%);

            display: flex;

            gap: 8px;
        }

        .slider-dot {
            width: 35px;
            height: 4px;

            border: none;

            background: rgba(255,255,255,0.35);

            cursor: pointer;
        }

        .slider-dot.active {
            background: #fff;
        }


        /* =========================================
           WHATSAPP
        ========================================= */

        .whatsapp {
            position: fixed;

            z-index: 100;

            right: 25px;
            bottom: 55px;

            width: 62px;
            height: 62px;

            border-radius: 50%;

            background: #25d366;

            display: flex;
            align-items: center;
            justify-content: center;

            box-shadow: 0 5px 20px rgba(0,0,0,0.3);

            text-decoration: none;
        }

        .whatsapp span {
            font-size: 31px;
            color: #fff;
        }


        /* =========================================
           CHAT BUTTON
        ========================================= */

        .chat-button {
            position: fixed;

            z-index: 100;

            left: 22px;
            bottom: 22px;

            width: 58px;
            height: 58px;

            border-radius: 50%;

            background: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            box-shadow: 0 4px 20px rgba(0,0,0,0.3);

            cursor: pointer;
        }

        .chat-button span {
            font-size: 27px;
        }

        .notification {
            position: absolute;

            right: -2px;
            top: -3px;

            width: 22px;
            height: 22px;

            border-radius: 50%;

            background: #c40000;

            color: #fff;

            font-size: 11px;

            display: flex;
            align-items: center;
            justify-content: center;
        }


        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 1200px) {

            .right-panel {
                width: 34%;
                min-width: 380px;
            }

            .left-content {
                width: 60%;
            }

            .main-title {
                font-size: 65px;
            }

        }


        @media (max-width: 900px) {

            html,
            body {
                overflow-y: auto;
            }

            .hero {
                min-height: 100vh;
                height: auto;
            }

            .left-content {
                position: relative;

                width: 100%;
                height: auto;

                min-height: 650px;

                padding: 30px 25px 350px;

                left: 0;
                top: 0;
            }

            .brand-logo {
                margin-bottom: 70px;
            }

            .main-title {
                font-size: 60px;
            }

            .project-card {
                left: 25px;
                bottom: 25px;

                width: 280px;
                height: 280px;
            }

            .right-panel {
                position: relative;

                width: 100%;
                min-width: auto;

                height: auto;

                padding: 35px 25px 70px;
            }

            .project-info {
                text-align: left;
            }

            .whatsapp {
                bottom: 20px;
                right: 20px;
            }

        }


        @media (max-width: 500px) {

            .left-content {
                min-height: 580px;

                padding: 25px 20px 320px;
            }

            .brand-logo {
                width: 180px;
                margin-bottom: 60px;
            }

            .main-title {
                font-size: 52px;
            }

            .project-card {
                width: 245px;
                height: 245px;
                left: 20px;
            }

            .project-logo h2 {
                font-size: 32px;
            }

            .form-title {
                font-size: 34px;
            }

            .phone-number {
                font-size: 31px;
            }

        }
		
		
		/* =============================== HERO ================================ */ .about-hero{ min-height:700px; height:90vh; position:relative; overflow:hidden; display:flex; align-items:center; color:#fff; background:var(--brown); } .hero-slide{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transform:scale(1.08); transition: opacity 1.2s ease, transform 6s ease; } .hero-slide.active{ opacity:1; transform:scale(1); } .hero-slide::after{ content:""; position:absolute; inset:0; background: linear-gradient( 90deg, rgba(47,29,14,.94) 0%, rgba(47,29,14,.78) 42%, rgba(47,29,14,.25) 100% ); } .hero-content{ position:relative; z-index:5; width:min(1180px,92%); margin:auto; } .hero-small{ display:inline-flex; align-items:center; gap:12px; color:#e5c994; font-size:13px; letter-spacing:3px; text-transform:uppercase; margin-bottom:22px; opacity:0; transform:translateY(25px); animation:heroUp .8s .2s forwards; } .hero-small span{ width:45px; height:1px; background:#e5c994; } .hero-content h1{ font-family:'Playfair Display',serif; font-size:clamp(48px,7vw,92px); line-height:1; max-width:850px; margin-bottom:28px; font-weight:600; opacity:0; transform:translateY(30px); animation:heroUp .9s .35s forwards; } .hero-content p{ max-width:600px; font-size:17px; line-height:1.9; color:#f4ece2; opacity:0; transform:translateY(30px); animation:heroUp .9s .5s forwards; } .hero-buttons{ display:flex; gap:15px; margin-top:35px; opacity:0; transform:translateY(30px); animation:heroUp .9s .65s forwards; } .btn{ display:inline-flex; align-items:center; justify-content:center; min-width:155px; padding:15px 25px; border-radius:50px; font-size:14px; font-weight:600; transition:.3s ease; } .btn-primary{ color:var(--brown); background:#fff; } .btn-primary:hover{ transform:translateY(-3px); background:#ead4b2; } .btn-outline{ color:#fff; border:1px solid rgba(255,255,255,.6); } .btn-outline:hover{ background:#fff; color:var(--brown); } .hero-bottom{ position:absolute; z-index:5; left:4%; right:4%; bottom:35px; display:flex; align-items:center; justify-content:space-between; } .slide-counter{ font-size:13px; letter-spacing:2px; } .slider-dots{ display:flex; gap:8px; } .slider-dot{ width:28px; height:3px; background:rgba(255,255,255,.35); cursor:pointer; transition:.3s; } .slider-dot.active{ width:55px; background:#fff; } /* =============================== INTRO ================================ */ .intro{ padding:120px 0; background:#fff; } .container{ width:min(1180px,92%); margin:auto; } .intro-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:90px; align-items:center; } .section-tag{ display:flex; align-items:center; gap:12px; color:var(--gold); text-transform:uppercase; letter-spacing:3px; font-size:12px; font-weight:700; margin-bottom:20px; } .section-tag::before{ content:""; width:35px; height:1px; background:var(--gold); } .intro h2{ color:var(--brown); font-family:'Playfair Display',serif; font-size:clamp(38px,5vw,62px); line-height:1.1; margin-bottom:28px; } .intro h2 em{ color:var(--gold); font-style:normal; } .intro p{ font-size:16px; line-height:1.9; margin-bottom:18px; } .intro-image{ position:relative; min-height:560px; } .intro-image-main{ position:absolute; width:82%; height:470px; right:0; top:0; object-fit:cover; border-radius:4px; } .intro-image-small{ position:absolute; width:48%; height:230px; left:0; bottom:0; object-fit:cover; border:10px solid #fff; box-shadow:0 20px 50px rgba(47,29,14,.15); border-radius:4px; } .image-badge{ position:absolute; right:7%; bottom:35px; background:var(--brown); color:#fff; padding:20px 25px; z-index:2; } .image-badge strong{ display:block; font-family:'Playfair Display',serif; font-size:30px; color:#e7c78e; } .image-badge small{ font-size:11px; text-transform:uppercase; letter-spacing:1px; } /* =============================== STATS ================================ */ .stats{ background:var(--brown); padding:70px 0; color:#fff; } .stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); } .stat{ text-align:center; padding:15px 30px; border-right:1px solid rgba(255,255,255,.15); } .stat:last-child{ border-right:0; } .stat-number{ font-family:'Playfair Display',serif; font-size:48px; color:#e2c18b; margin-bottom:7px; } .stat p{ color:#d8cdc0; font-size:13px; text-transform:uppercase; letter-spacing:1.5px; } /* =============================== STORY ================================ */ .story{ padding:120px 0; background:var(--cream); } .story-heading{ max-width:720px; margin-bottom:70px; } .story-heading h2{ font-family:'Playfair Display',serif; color:var(--brown); font-size:clamp(38px,5vw,60px); line-height:1.1; } .story-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; } .story-card{ background:#fff; padding:45px; position:relative; transition:.4s ease; } .story-card:hover{ transform:translateY(-8px); box-shadow:0 25px 60px rgba(47,29,14,.12); } .story-number{ font-family:'Playfair Display',serif; font-size:65px; color:#eadbc9; line-height:1; margin-bottom:20px; } .story-card h3{ font-family:'Playfair Display',serif; color:var(--brown); font-size:28px; margin-bottom:15px; } .story-card p{ line-height:1.9; } /* =============================== FEATURES ================================ */ .features{ padding:120px 0; background:#fff; } .feature-heading{ text-align:center; max-width:700px; margin:0 auto 65px; } .feature-heading h2{ font-family:'Playfair Display',serif; font-size:clamp(38px,5vw,58px); color:var(--brown); } .feature-heading p{ margin-top:15px; line-height:1.8; } .feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:25px; } .feature{ padding:40px 35px; border:1px solid #eadfd3; transition:.35s ease; position:relative; overflow:hidden; } .feature::before{ content:""; position:absolute; left:0; top:0; width:3px; height:0; background:var(--gold); transition:.4s; } .feature:hover{ transform:translateY(-8px); border-color:#d8c5ad; box-shadow:0 20px 45px rgba(47,29,14,.08); } .feature:hover::before{ height:100%; } .feature-icon{ width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--cream); color:var(--gold); font-size:25px; margin-bottom:25px; } .feature h3{ font-family:'Playfair Display',serif; font-size:25px; color:var(--brown); margin-bottom:12px; } .feature p{ line-height:1.8; font-size:14px; } /* =============================== CTA ================================ */ .cta{ position:relative; padding:110px 20px; background: linear-gradient(rgba(47,29,14,.9),rgba(47,29,14,.9)), url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80") center/cover; text-align:center; color:#fff; } .cta h2{ font-family:'Playfair Display',serif; font-size:clamp(40px,5vw,65px); margin-bottom:20px; } .cta p{ max-width:600px; margin:auto; line-height:1.8; color:#ddd2c7; } .cta .btn{ margin-top:30px; } /* =============================== SCROLL REVEAL ================================ */ .reveal{ opacity:0; transform:translateY(45px); transition:1s ease; } .reveal.show{ opacity:1; transform:translateY(0); } .reveal-left{ opacity:0; transform:translateX(-50px); transition:1s ease; } .reveal-left.show{ opacity:1; transform:translateX(0); } .reveal-right{ opacity:0; transform:translateX(50px); transition:1s ease; } .reveal-right.show{ opacity:1; transform:translateX(0); } @keyframes heroUp{ to{ opacity:1; transform:translateY(0); } } /* =============================== RESPONSIVE ================================ */ @media(max-width:900px){ .intro-grid{ grid-template-columns:1fr; gap:50px; } .intro-image{ min-height:500px; } .stats-grid{ grid-template-columns:repeat(2,1fr); gap:25px; } .stat:nth-child(2){ border-right:0; } .story-grid{ grid-template-columns:1fr; } .feature-grid{ grid-template-columns:1fr 1fr; } } @media(max-width:600px){ .about-hero{ min-height:650px; height:85vh; } .hero-content h1{ font-size:48px; } .hero-content p{ font-size:15px; } .hero-buttons{ flex-direction:column; width:190px; } .intro, .story, .features{ padding:80px 0; } .intro-image{ min-height:400px; } .intro-image-main{ height:330px; } .intro-image-small{ height:170px; } .stats-grid{ grid-template-columns:1fr 1fr; } .stat{ border-right:0; border-bottom:1px solid rgba(255,255,255,.12); padding:25px 10px; } .stat-number{ font-size:38px; } .feature-grid{ grid-template-columns:1fr; } .story-card{ padding:30px; } }

/* ==========================================
   COCOA COMMON
========================================== */

.cocoa-container{
    width:min(1180px,92%);
    margin:auto;
}

.cocoa-section-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#c69a5b;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.cocoa-section-tag::before{
    content:"";
    width:35px;
    height:1px;
    background:#c69a5b;
}

.cocoa-section-heading{
    max-width:720px;
    margin:0 auto 65px;
    text-align:center;
}

.cocoa-section-heading .cocoa-section-tag{
    justify-content:center;
}

.cocoa-section-heading h2,
.cocoa-floor-heading h2,
.cocoa-faq-left h2{
    font-family:'Playfair Display',serif;
    color:#2f1d0e;
    font-size:clamp(38px,5vw,60px);
    line-height:1.1;
}

.cocoa-section-heading h2 span,
.cocoa-floor-heading h2 span,
.cocoa-faq-left h2 span{
    color:#c69a5b;
}

.cocoa-section-heading p{
    margin-top:18px;
    line-height:1.8;
}


/* ==========================================
   AMENITIES
========================================== */

.cocoa-amenities{
    padding:120px 0;
    background:#f6efe5;
}

.cocoa-amenities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.cocoa-amenity-card{
    background:#fff;
    padding:35px 28px;
    min-height:285px;
    position:relative;
    overflow:hidden;
    border:1px solid #eadfd3;
    transition:.4s ease;
}

.cocoa-amenity-card::after{
    content:"";
    position:absolute;
    width:100px;
    height:100px;
    border-radius:50%;
    background:#f6efe5;
    right:-45px;
    bottom:-45px;
    transition:.5s ease;
}

.cocoa-amenity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(47,29,14,.12);
    border-color:#c69a5b;
}

.cocoa-amenity-card:hover::after{
    transform:scale(2.5);
}

.cocoa-amenity-icon{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f6efe5;
    border-radius:50%;
    font-size:25px;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.cocoa-amenity-card > span{
    position:absolute;
    top:28px;
    right:28px;
    font-family:'Playfair Display',serif;
    color:#d8c6b0;
    font-size:18px;
}

.cocoa-amenity-card h3{
    color:#2f1d0e;
    font-family:'Playfair Display',serif;
    font-size:24px;
    margin-bottom:12px;
    position:relative;
    z-index:2;
}

.cocoa-amenity-card p{
    font-size:14px;
    line-height:1.8;
    position:relative;
    z-index:2;
}


/* ==========================================
   FLOOR PLANS
========================================== */

.cocoa-floorplans{
    padding:120px 0;
    background:#fff;
}

.cocoa-floor-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:50px;
    margin-bottom:45px;
}

.cocoa-floor-heading > p{
    max-width:420px;
    line-height:1.8;
}

.cocoa-floor-tabs{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:50px;
}

.cocoa-floor-tab{
    border:1px solid #d9c8b5;
    background:#fff;
    color:#2f1d0e;
    padding:13px 35px;
    border-radius:50px;
    cursor:pointer;
    font-family:'DM Sans',sans-serif;
    font-weight:600;
    transition:.3s ease;
}

.cocoa-floor-tab:hover,
.cocoa-floor-tab.active{
    background:#2f1d0e;
    color:#fff;
    border-color:#2f1d0e;
}

.cocoa-floor-content{
    display:none;
    grid-template-columns:1.25fr .75fr;
    min-height:520px;
    background:#f6efe5;
}

.cocoa-floor-content.active{
    display:grid;
    animation:cocoaFadeIn .6s ease;
}

@keyframes cocoaFadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.cocoa-floor-image{
    position:relative;
    overflow:hidden;
}

.cocoa-floor-image img{
    width:100%;
    height:100%;
    min-height:520px;
    object-fit:cover;
    transition:.7s ease;
}

.cocoa-floor-content:hover .cocoa-floor-image img{
    transform:scale(1.04);
}

.cocoa-view-plan{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:#2f1d0e;
    color:#fff;
    border:0;
    padding:15px 28px;
    border-radius:50px;
    cursor:pointer;
    opacity:0;
    transition:.4s ease;
}

.cocoa-floor-image:hover .cocoa-view-plan{
    opacity:1;
}

.cocoa-floor-info{
    padding:55px 45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.cocoa-floor-number{
    color:#c69a5b;
    font-family:'Playfair Display',serif;
    font-size:60px;
    line-height:1;
    margin-bottom:15px;
}

.cocoa-floor-info h3{
    color:#2f1d0e;
    font-family:'Playfair Display',serif;
    font-size:34px;
    margin-bottom:15px;
}

.cocoa-floor-info > p{
    line-height:1.8;
    margin-bottom:30px;
}

.cocoa-floor-details{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    border-top:1px solid #ddcdbb;
    border-bottom:1px solid #ddcdbb;
    padding:20px 0;
    margin-bottom:30px;
}

.cocoa-floor-details div{
    text-align:center;
    border-right:1px solid #ddcdbb;
}

.cocoa-floor-details div:last-child{
    border:0;
}

.cocoa-floor-details strong{
    display:block;
    color:#2f1d0e;
    font-family:'Playfair Display',serif;
    font-size:27px;
}

.cocoa-floor-details small{
    display:block;
    margin-top:4px;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.cocoa-plan-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 22px;
    background:#2f1d0e;
    color:#fff;
    transition:.3s ease;
}

.cocoa-plan-btn:hover{
    background:#c69a5b;
    color:#2f1d0e;
}

.cocoa-plan-btn span{
    font-size:22px;
}


/* ==========================================
   FAQ
========================================== */

.cocoa-faq{
    padding:120px 0;
    background:#f6efe5;
}

.cocoa-faq-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:100px;
    align-items:start;
}

.cocoa-faq-left{
    position:sticky;
    top:100px;
}

.cocoa-faq-left h2{
    margin-bottom:25px;
}

.cocoa-faq-left > p{
    line-height:1.9;
    margin-bottom:30px;
}

.cocoa-faq-contact{
    display:inline-block;
    color:#2f1d0e;
    font-weight:700;
    border-bottom:1px solid #c69a5b;
    padding-bottom:5px;
}

.cocoa-faq-item{
    border-bottom:1px solid #d8c9b9;
}

.cocoa-faq-question{
    width:100%;
    border:0;
    background:none;
    padding:25px 5px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-align:left;
    cursor:pointer;
    color:#2f1d0e;
    font-family:'DM Sans',sans-serif;
    font-size:16px;
    font-weight:600;
}

.cocoa-faq-question b{
    width:32px;
    height:32px;
    border:1px solid #c69a5b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c69a5b;
    font-size:21px;
    font-weight:400;
    transition:.35s ease;
    flex-shrink:0;
}

.cocoa-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.cocoa-faq-answer p{
    padding:0 50px 25px 5px;
    line-height:1.8;
    font-size:14px;
}

.cocoa-faq-item.active .cocoa-faq-question b{
    transform:rotate(45deg);
    background:#2f1d0e;
    color:#fff;
}

.cocoa-faq-item.active .cocoa-faq-answer{
    max-height:200px;
}


/* ==========================================
   NEW REVEAL
========================================== */

.cocoa-reveal{
    opacity:1;
    transform:translateY(40px);
    transition:1s ease;
}

.cocoa-reveal.cocoa-show{
    opacity:1;
    transform:translateY(0);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1000px){

    .cocoa-amenities-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cocoa-floor-content{
        grid-template-columns:1fr;
    }

    .cocoa-floor-image img{
        min-height:400px;
    }

    .cocoa-floor-info{
        padding:45px;
    }

    .cocoa-faq-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .cocoa-faq-left{
        position:static;
    }

}

@media(max-width:600px){

    .cocoa-amenities,
    .cocoa-floorplans,
    .cocoa-faq{
        padding:80px 0;
    }

    .cocoa-amenities-grid{
        grid-template-columns:1fr;
    }

    .cocoa-floor-heading{
        display:block;
    }

    .cocoa-floor-heading > p{
        margin-top:20px;
    }

    .cocoa-floor-tabs{
        overflow-x:auto;
        justify-content:flex-start;
        padding-bottom:5px;
    }

    .cocoa-floor-tab{
        min-width:110px;
        padding:12px 20px;
    }

    .cocoa-floor-image img{
        min-height:280px;
    }

    .cocoa-floor-info{
        padding:35px 25px;
    }

    .cocoa-floor-number{
        font-size:45px;
    }

    .cocoa-floor-info h3{
        font-size:29px;
    }

    .cocoa-floor-details{
        gap:5px;
    }

    .cocoa-floor-details strong{
        font-size:23px;
    }

    .cocoa-faq-question{
        gap:20px;
        padding:22px 0;
    }

}

/* ==========================================
   COCOA COUNTY FOOTER
========================================== */

.cocoa-footer{
    background:#2f1d0e;
    color:#d8cdc0;
}


/* ==========================================
   MAIN FOOTER
========================================== */

.cocoa-footer-main{
    padding:85px 0 70px;
}

.cocoa-footer-grid{
    display:grid;
    grid-template-columns:1.5fr .8fr .8fr 1fr;
    gap:65px;
}


/* Brand */

.cocoa-footer-logo{
    display:flex;
    flex-direction:column;
    line-height:.85;
    margin-bottom:25px;
    color:#fff;
}

.cocoa-footer-logo span{
    font-size:14px;
    letter-spacing:5px;
    font-weight:500;
    color:#d9b778;
}

.cocoa-footer-logo strong{
    font-family:'Playfair Display',serif;
    font-size:34px;
    letter-spacing:2px;
    margin-top:8px;
}

.cocoa-footer-brand > p{
    max-width:340px;
    font-size:14px;
    line-height:1.9;
    color:#bfb1a2;
}


/* Social */

.cocoa-footer-social{
    display:flex;
    gap:10px;
    margin-top:28px;
}

.cocoa-footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    color:#fff;
    font-size:12px;
    transition:.3s ease;
}

.cocoa-footer-social a:hover{
    background:#c69a5b;
    border-color:#c69a5b;
    color:#2f1d0e;
    transform:translateY(-4px);
}


/* Footer Headings */

.cocoa-footer h4{
    color:#fff;
    font-family:'Playfair Display',serif;
    font-size:20px;
    margin-bottom:25px;
    font-weight:600;
}


/* Footer Links */

.cocoa-footer-links{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.cocoa-footer-links a{
    color:#bfb1a2;
    font-size:14px;
    margin-bottom:13px;
    position:relative;
    transition:.3s ease;
}

.cocoa-footer-links a::before{
    content:"";
    position:absolute;
    width:0;
    height:1px;
    left:0;
    bottom:-2px;
    background:#c69a5b;
    transition:.3s ease;
}

.cocoa-footer-links a:hover{
    color:#e0bd80;
    transform:translateX(5px);
}

.cocoa-footer-links a:hover::before{
    width:100%;
}


/* Contact */

.cocoa-contact-item{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:20px;
}

.cocoa-contact-item > span{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(198,154,91,.5);
    border-radius:50%;
    color:#d9b778;
    font-size:13px;
    flex-shrink:0;
}

.cocoa-contact-item p,
.cocoa-contact-item a{
    color:#bfb1a2;
    font-size:14px;
    line-height:1.7;
}

.cocoa-contact-item a{
    transition:.3s ease;
}

.cocoa-contact-item a:hover{
    color:#d9b778;
}


/* ==========================================
   DISCLAIMER
========================================== */

.cocoa-disclaimer{
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:38px 0;
    background:#28180c;
}

.cocoa-disclaimer-title{
    color:#d9b778;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.cocoa-disclaimer p{
    color:#9f9284;
    font-size:11px;
    line-height:1.9;
    margin-bottom:10px;
}

.cocoa-disclaimer p:last-child{
    margin-bottom:0;
}


/* ==========================================
   BOTTOM BAR
========================================== */

.cocoa-footer-bottom{
    padding:20px 0;
    background:#211309;
}

.cocoa-footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.cocoa-footer-bottom p{
    color:#8e8175;
    font-size:11px;
}

.cocoa-footer-bottom p:last-child{
    color:#a99682;
}


/* ==========================================
   BACK TO TOP
========================================== */

.cocoa-back-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:48px;
    height:48px;
    border:1px solid #c69a5b;
    border-radius:50%;
    background:#2f1d0e;
    color:#e1bd7f;
    font-size:20px;
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s ease;
}

.cocoa-back-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.cocoa-back-top:hover{
    background:#c69a5b;
    color:#2f1d0e;
    transform:translateY(-4px);
}


/* ==========================================
   FOOTER RESPONSIVE
========================================== */

@media(max-width:1000px){

    .cocoa-footer-grid{
        grid-template-columns:1fr 1fr;
        gap:50px;
    }

}

@media(max-width:600px){

    .cocoa-footer-main{
        padding:65px 0 45px;
    }

    .cocoa-footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .cocoa-footer-brand > p{
        max-width:100%;
    }

    .cocoa-footer-bottom-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .cocoa-disclaimer{
        padding:30px 0;
    }

    .cocoa-disclaimer p{
        font-size:10px;
    }

    .cocoa-back-top{
        width:42px;
        height:42px;
        right:18px;
        bottom:18px;
    }

}

```css
/* =========================================================
   FLOATING BUTTONS
   Always stay above all sections
========================================================= */

.whatsapp,
.chat-button {
    position: fixed !important;

    z-index: 2147483647 !important;

    isolation: isolate;

    visibility: visible !important;
    opacity: 1 !important;

    pointer-events: auto !important;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {
    right: 25px !important;
    bottom: 25px !important;

    width: 58px;
    height: 58px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 0 !important;
    margin: 0 !important;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.28);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}

.whatsapp:hover {
    transform: scale(1.08);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   CHAT
========================================================= */

.chat-button {
    right: 25px !important;
    bottom: 95px !important;

    width: 52px;
    height: 52px;

    padding: 0 !important;
    margin: 0 !important;

    border: 0;

    border-radius: 50%;

    background: #2f1d0e;

    color: #ffffff;

    display: flex !important;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.chat-button i {
    font-size: 19px;
}

.chat-button:hover {
    background: #c69a5b;

    transform: scale(1.08);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .whatsapp {
        right: 15px !important;
        bottom: 15px !important;

        width: 50px;
        height: 50px;
    }

    .chat-button {
        right: 15px !important;
        bottom: 75px !important;

        width: 45px;
        height: 45px;
    }

    .chat-button i {
        font-size: 17px;
    }
}


/* =========================================================
   EXTRA SAFETY
========================================================= */

/*
   Kisi parent ke transform ki wajah se fixed button
   section ke andar trap na ho.
*/

.hero,
.slider,
.left-content,
.right-panel {
    /* DO NOT use transform here */
}

/*
   Agar purane CSS mein ye hai:

   .hero {
       transform: translate(...);
   }

   .hero {
       filter: ...;
   }

   .hero {
       will-change: transform;
   }

   to remove kar dein.
*/
/* =========================================
   STICKY / FIXED HEADER
========================================= */

.main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 82px;

    z-index: 99999 !important;

    background: rgba(47, 29, 14, 0.88);

    border-bottom: 1px solid rgba(255,255,255,0.20);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}


/* SCROLL STATE */

.main-header.scrolled {
    height: 68px;
    background: rgba(47, 29, 14, 0.98);

    box-shadow: 0 5px 25px rgba(0,0,0,0.25);
}


/* =========================================
   NAV CONTAINER
========================================= */

.nav-container {
    width: 92%;
    max-width: 1400px;

    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.nav-logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.nav-logo img {
    width: 140px;
    max-height: 60px;

    object-fit: contain;

    transition: 0.3s ease;
}

.main-header.scrolled .nav-logo img {
    width: 120px;
}


/* =========================================
   DESKTOP MENU
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;

    padding: 10px 13px;

    color: #fff !important;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 0.4px;

    transition: 0.3s ease;
}


/* UNDERLINE */

.nav-link:after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 2px;

    height: 1px;

    background: #fff;

    transform: scaleX(0);

    transition: transform 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1);
}


/* =========================================
   ENQUIRE BUTTON
========================================= */

.nav-enquire {
    margin-left: 12px;

    padding: 11px 22px;

    background: #fff;

    color: #2f1d0e !important;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 600;

    border: 1px solid #fff;

    transition: 0.3s ease;
}

.nav-enquire:hover {
    background: transparent;
    color: #fff !important;
}


/* =========================================
   MOBILE BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    background: transparent;

    border: 1px solid rgba(255,255,255,0.6);

    cursor: pointer;

    z-index: 100000;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #fff;

    transition: 0.3s ease;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .main-header {
        height: 70px;
    }

    .nav-container {
        width: 90%;
    }

    .nav-logo img {
        width: 120px;
    }

    .menu-toggle {
        display: block;
    }


    .main-nav {

        position: fixed;

        top: 70px;
        left: 0;

        width: 100%;

        height: auto;
        max-height: calc(100vh - 70px);

        overflow-y: auto;

        padding: 15px 25px 25px;

        background: rgba(47, 29, 14, 0.98);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-20px);

        transition: all 0.3s ease;
    }


    .main-nav.menu-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .nav-link {
        padding: 15px 5px;

        border-bottom: 1px solid rgba(255,255,255,0.12);

        font-size: 15px;
    }

    .nav-link:after {
        display: none;
    }


    .nav-enquire {
        margin: 18px 0 0;

        text-align: center;

        padding: 13px;
    }


    /* HAMBURGER */

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .main-header {
        height: 62px;
    }

    .main-nav {
        top: 62px;
    }

    .nav-logo img {
        width: 105px;
    }

}
.download{
	background:rgba(47, 29, 14, 0.98);
	color:#fff;
}

/* =========================================
   MOBILE BOTTOM BAR
   HIDDEN ON DESKTOP
========================================= */

.mobile-bottom-bar {
    display: none !important;
}


/* =========================================
   SHOW ONLY ON MOBILE
========================================= */

@media only screen and (max-width: 767px) {

    .mobile-bottom-bar {
        display: flex !important;

        position: fixed !important;

        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100% !important;
        height: 65px !important;

        z-index: 999999 !important;

        background: #2f1d0e;

        box-shadow: 0 -5px 20px rgba(0,0,0,0.25);

        border-top: 1px solid rgba(255,255,255,0.15);

        box-sizing: border-box;
    }


    .mobile-action {
        flex: 1;

        height: 65px;

        display: flex !important;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 3px;

        color: #fff !important;

        text-decoration: none !important;

        border-right: 1px solid rgba(255,255,255,0.15);

        box-sizing: border-box;
    }


    .mobile-action:last-child {
        border-right: none;
    }


    .mobile-action .action-icon {
        font-size: 18px;

        width: 25px;
        height: 25px;

        display: flex;

        align-items: center;
        justify-content: center;
    }


    .mobile-action .action-text {
        font-size: 11px;

        font-weight: 500;
    }


    .enquiry-action {
        background: rgba(255,255,255,0.08);
    }


    .whatsapp-action {
        background: rgba(37,211,102,0.10);
    }


    body {
        padding-bottom: 65px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media only screen and (max-width: 380px) {

    .mobile-bottom-bar {
        height: 60px !important;
    }

    .mobile-action {
        height: 60px;
    }

    body {
        padding-bottom: 60px;
    }
}

/* =========================================
   ENQUIRY MODAL
========================================= */

.enquiry-modal {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    visibility: hidden;
    opacity: 0;

    z-index: 2147483647 !important;

    transition: opacity 0.3s ease,
                visibility 0.3s ease;

    box-sizing: border-box;
}


/* OPEN */

.enquiry-modal.show {
    visibility: visible;
    opacity: 1;
}


/* =========================================
   OVERLAY
========================================= */

.enquiry-overlay {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(0,0,0,0.72);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* =========================================
   POPUP
========================================= */

.enquiry-box {
    position: relative !important;

    z-index: 2;

    width: 90%;
    max-width: 900px;

    max-height: 90vh;

    min-height: 500px;

    margin: auto !important;

    display: flex;

    background: #fff;

    border-radius: 5px;

    overflow: hidden;

    box-shadow: 0 25px 80px rgba(0,0,0,0.45);

    transform: scale(0.95);

    transition: transform 0.3s ease;
}


.enquiry-modal.show .enquiry-box {
    transform: scale(1);
}


/* =========================================
   CLOSE
========================================= */

.enquiry-close {
    position: absolute !important;

    top: 15px !important;
    right: 15px !important;

    width: 38px;
    height: 38px;

    z-index: 10;

    border: 0;

    border-radius: 50%;

    background: rgba(47,29,14,0.9);

    color: #fff;

    font-size: 27px;

    line-height: 35px;

    cursor: pointer;
}


/* =========================================
   LEFT IMAGE
========================================= */

.enquiry-image {
    position: relative;

    width: 43%;

    min-height: 500px;

    background-image: url('../img/slide-aerial.jpg');

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;
}


.enquiry-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(47,29,14,0.25),
            rgba(47,29,14,0.9)
        );
}


.enquiry-image-content {
    position: relative;

    z-index: 2;

    text-align: center;

    color: #fff;
}


.enquiry-logo {
    width: 150px;

    margin-bottom: 30px;
}


.enquiry-image-content h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 40px;
}


.enquiry-image-content p {
    margin: 5px 0 0;

    font-size: 16px;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.enquiry-content {
    width: 57%;

    padding: 45px 50px;

    background: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-sizing: border-box;
}


.enquiry-small-title {
    color: #8a6b52;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;
}


.enquiry-content h2 {
    margin: 6px 0;

    color: #2f1d0e;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 38px;
}


.enquiry-description {
    color: #777;

    font-size: 13px;

    line-height: 1.5;

    margin: 5px 0 20px;
}


/* =========================================
   FORM
========================================= */

.popup-form-group {
    margin-bottom: 12px;
}


.popup-form-group label {
    display: block;

    margin-bottom: 5px;

    color: #2f1d0e;

    font-size: 12px;

    font-weight: 600;
}


.popup-form-group input,
.popup-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 11px 12px;

    border: 1px solid #ddd;

    outline: none;

    font-size: 13px;

    background: #fafafa;
}


.popup-form-group input {
    height: 40px;
}


.popup-form-group textarea {
    height: 60px;

    resize: none;
}


.popup-form-group input:focus,
.popup-form-group textarea:focus {
    border-color: #2f1d0e;

    background: #fff;
}


/* =========================================
   BUTTON
========================================= */

.popup-submit-btn {
    width: 100%;

    height: 44px;

    border: 1px solid #2f1d0e;

    background: #2f1d0e;

    color: #fff;

    cursor: pointer;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;
}


.popup-submit-btn:hover {
    background: #fff;

    color: #2f1d0e;
}


/* =========================================
   MOBILE MODAL
========================================= */

@media only screen and (max-width: 767px) {

    .enquiry-modal {
        align-items: center !important;

        justify-content: center !important;
    }


    .enquiry-box {
        width: 92% !important;

        max-width: 92% !important;

        max-height: 90vh !important;

        min-height: 0 !important;

        display: block !important;

        overflow-y: auto !important;

        margin: 0 auto !important;

        border-radius: 5px;
    }


    .enquiry-image {
        width: 100% !important;

        min-height: 140px !important;

        height: 140px !important;
    }


    .enquiry-logo {
        width: 100px;

        margin-bottom: 5px;
    }


    .enquiry-image-content h2 {
        font-size: 28px;
    }


    .enquiry-image-content p {
        font-size: 12px;
    }


    .enquiry-content {
        width: 100% !important;

        padding: 25px 20px !important;
    }


    .enquiry-content h2 {
        font-size: 30px;
    }


    .enquiry-close {
        top: 8px !important;
        right: 8px !important;

        width: 32px;
        height: 32px;

        font-size: 23px;

        line-height: 29px;
    }

}
.cocoa-disclaimer p a{
	color:#fff;
}

.cocoa-disclaimer p a:hover{
	color:#f6efe5;
}

/* =========================================
   PRIVACY POLICY PAGE
========================================= */

.policy-hero {
    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        url('../img/slide-aerial.jpg')
        center center / cover no-repeat;

    margin-top: 0;
}


.policy-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(47,29,14,0.92),
            rgba(47,29,14,0.55)
        );
}


.policy-hero-content {
    position: relative;

    z-index: 2;

    text-align: center;

    color: #fff;

    padding: 120px 20px 60px;
}


.policy-hero-content span {
    font-family: 'Montserrat', sans-serif;

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 600;
}


.policy-hero-content h1 {
    margin: 10px 0 5px;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 64px;

    font-weight: 500;

    line-height: 1;
}


.policy-hero-content p {
    margin: 15px 0 0;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;

    letter-spacing: 0.5px;

    opacity: 0.85;
}


/* =========================================
   PRIVACY SECTION
========================================= */

.privacy-section {
    padding: 90px 20px;

    background: #faf8f5;
}


.privacy-container {
    width: 90%;

    max-width: 1050px;

    margin: 0 auto;
}


/* =========================================
   INTRO
========================================= */

.privacy-intro {
    text-align: center;

    margin-bottom: 55px;
}


.privacy-label {
    color: #96765a;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;
}


.privacy-intro h2 {
    margin: 10px 0;

    color: #2f1d0e;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 48px;

    font-weight: 600;
}


.privacy-date {
    color: #777;

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;
}


/* =========================================
   CONTENT
========================================= */

.privacy-content {

    background: #fff;

    padding: 55px 65px;

    box-shadow:
        0 10px 40px rgba(47,29,14,0.07);

    border: 1px solid #eee7df;
}


.privacy-content > p {

    color: #555;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;

    line-height: 1.9;

    margin: 0 0 20px;
}


.privacy-content strong {
    color: #2f1d0e;
}


/* =========================================
   HIGHLIGHT
========================================= */

.policy-highlight {

    margin: 30px 0 45px;

    padding: 18px 22px;

    background: #f7f2ed;

    border-left: 3px solid #2f1d0e;

    color: #4c3a2b;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   POLICY BLOCK
========================================= */

.policy-block {

    padding: 0 0 35px;

    margin-bottom: 35px;

    border-bottom: 1px solid #eee5dd;
}


.policy-block:last-child {
    border-bottom: none;

    margin-bottom: 0;

    padding-bottom: 0;
}


.policy-block h3 {

    display: flex;

    align-items: center;

    gap: 15px;

    margin: 0 0 17px;

    color: #2f1d0e;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 29px;

    font-weight: 600;
}


.policy-block h3 span {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #2f1d0e;

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;

    font-weight: 600;
}


.policy-block p {

    color: #5b5b5b;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    line-height: 1.9;

    margin: 0 0 15px;
}


/* =========================================
   LIST
========================================= */

.policy-block ul {

    margin: 10px 0 20px;

    padding: 0;

    list-style: none;
}


.policy-block li {

    position: relative;

    padding-left: 23px;

    margin-bottom: 10px;

    color: #5b5b5b;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


.policy-block li::before {

    content: '';

    position: absolute;

    left: 3px;

    top: 9px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #96765a;
}


/* =========================================
   CONTACT BOX
========================================= */

.policy-contact-box {

    margin-top: 25px;

    padding: 28px;

    background: #f7f2ed;

    border: 1px solid #eadfd4;
}


.policy-contact-box h4 {

    margin: 0 0 18px;

    color: #2f1d0e;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 27px;
}


.policy-contact-box p {

    margin: 8px 0;

    font-size: 12px;
}


.policy-contact-box a {

    color: #76563d;

    text-decoration: none;
}


.policy-contact-box a:hover {

    text-decoration: underline;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .policy-hero {
        min-height: 310px;
    }


    .policy-hero-content {
        padding: 105px 20px 45px;
    }


    .policy-hero-content h1 {
        font-size: 45px;
    }


    .policy-hero-content p {
        font-size: 12px;
    }


    .privacy-section {
        padding: 55px 15px;
    }


    .privacy-container {
        width: 100%;
    }


    .privacy-intro {
        margin-bottom: 35px;
    }


    .privacy-intro h2 {
        font-size: 39px;
    }


    .privacy-content {
        padding: 30px 22px;
    }


    .privacy-content > p {
        font-size: 12px;

        line-height: 1.8;
    }


    .policy-block h3 {
        font-size: 25px;

        gap: 10px;
    }


    .policy-block h3 span {
        width: 30px;
        height: 30px;

        font-size: 9px;
    }


    .policy-block p,
    .policy-block li {
        font-size: 12px;

        line-height: 1.8;
    }


    .policy-highlight {
        font-size: 11px;

        padding: 15px;
    }


    .policy-contact-box {
        padding: 20px;
    }


    .policy-contact-box h4 {
        font-size: 24px;
    }

}
.rera {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--cream-050);
    font-size: clamp(9px, 0.62vw, 11px);
    line-height: 1.6;
    text-align: right;
    letter-spacing: 0.01em;
}



/* =========================================
   SITE PLAN & LOCATION
========================================= */

.site-location-section {
    position: relative;

    padding: 100px 20px;

    background:
        linear-gradient(
            180deg,
            #f8f3eb 0%,
            #ffffff 100%
        );

    overflow: hidden;
}


.site-location-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(47,29,14,0.07);

    border-radius: 50%;
}


.site-location-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -150px;

    border: 1px solid rgba(47,29,14,0.06);

    border-radius: 50%;
}


.site-location-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.site-location-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-kicker {
    display: block;

    margin-bottom: 12px;

    color: #b89a65;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 4px;
}


.site-location-heading h2 {
    margin: 0;

    color: #2f1d0e;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(44px, 5vw, 64px);

    font-weight: 500;

    line-height: 1;
}


.site-location-heading h2 em {
    color: #b89a65;

    font-weight: 400;
}


.heading-line {
    width: 65px;
    height: 1px;

    margin: 22px auto;

    background: #b89a65;
}


.site-location-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: #655b53;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.site-location-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}


/* =========================================
   CARD
========================================= */

.site-location-card {
    background: #fff;

    box-shadow:
        0 20px 50px rgba(47,29,14,0.10);

    overflow: hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


.site-location-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 65px rgba(47,29,14,0.16);
}


/* =========================================
   IMAGE
========================================= */

.card-image-wrap {
    position: relative;

    height: 430px;

    background: #eee;

    overflow: hidden;
}


.site-location-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


.site-location-card:hover .site-location-image {
    transform: scale(1.045);
}


/* =========================================
   VIEW BUTTON
========================================= */

.plan-view-btn {
    position: absolute;

    right: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 17px;

    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(47,29,14,0.90);

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition: 0.3s ease;
}


.plan-view-btn i {
    color: #d2b887;
}


.plan-view-btn:hover {
    background: #b89a65;
    color: #2f1d0e;
}


.plan-view-btn:hover i {
    color: #2f1d0e;
}


/* =========================================
   CARD CONTENT
========================================= */

.site-location-card-content {
    display: flex;

    gap: 22px;

    padding: 28px 30px 32px;
}


.card-number {
    flex-shrink: 0;

    color: #b89a65;

    font-family: 'Cormorant Garamond', serif;

    font-size: 22px;
    font-weight: 600;
}


.site-location-card-content h3 {
    margin: 0 0 8px;

    color: #2f1d0e;

    font-family: 'Cormorant Garamond', serif;

    font-size: 31px;

    font-weight: 600;
}


.site-location-card-content p {
    margin: 0;

    color: #6a6058;

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================
   LOCATION HIGHLIGHTS
========================================= */

.location-highlights {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 55px;

    border-top: 1px solid rgba(47,29,14,0.12);
    border-bottom: 1px solid rgba(47,29,14,0.12);
}


.location-highlight {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 25px 30px;

    border-right: 1px solid rgba(47,29,14,0.12);
}


.location-highlight:last-child {
    border-right: 0;
}


.location-highlight > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(184,154,101,0.45);

    color: #b89a65;

    font-size: 16px;
}


.location-highlight strong {
    display: block;

    margin-bottom: 4px;

    color: #2f1d0e;

    font-family: 'Cormorant Garamond', serif;

    font-size: 19px;

    font-weight: 600;
}


.location-highlight small {
    display: block;

    color: #756b63;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;

    letter-spacing: .5px;
}


/* =========================================
   LIGHTBOX
========================================= */

.plan-lightbox {
    position: fixed;

    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 25px;

    z-index: 2147483647;
}


.plan-lightbox.active {
    display: flex;
}


.plan-lightbox-overlay {
    position: absolute;

    inset: 0;

    background: rgba(20,10,5,0.90);

    backdrop-filter: blur(5px);
}


.plan-lightbox-box {
    position: relative;

    z-index: 2;

    width: min(1100px, 95vw);
    max-height: 92vh;

    padding: 22px;

    background: #fff;

    box-shadow: 0 30px 100px rgba(0,0,0,0.45);

    animation: planZoom .35s ease;
}


@keyframes planZoom {

    from {
        opacity: 0;
        transform: scale(.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


.plan-lightbox-image-wrap {
    width: 100%;
    max-height: 82vh;

    overflow: auto;

    text-align: center;
}


.plan-lightbox-image-wrap img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 78vh;

    margin: 0 auto;
}


.plan-lightbox-title {
    margin-bottom: 15px;

    color: #2f1d0e;

    font-family: 'Cormorant Garamond', serif;

    font-size: 28px;
}


.plan-lightbox-close {
    position: absolute;

    top: -45px;
    right: 0;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,0.3);

    background: rgba(47,29,14,0.9);

    color: #fff;

    cursor: pointer;

    font-size: 17px;

    transition: 0.3s ease;
}


.plan-lightbox-close:hover {
    background: #b89a65;
    color: #2f1d0e;
}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width: 767px) {

    .site-location-section {
        padding: 65px 15px;
    }


    .site-location-heading {
        margin-bottom: 35px;
    }


    .section-kicker {
        font-size: 9px;
        letter-spacing: 3px;
    }


    .site-location-heading h2 {
        font-size: 44px;
    }


    .site-location-heading p {
        font-size: 12px;
    }


    .site-location-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .card-image-wrap {
        height: 280px;
    }


    .plan-view-btn {
        right: 12px;
        bottom: 12px;

        padding: 10px 13px;

        font-size: 9px;
    }


    .site-location-card-content {
        gap: 15px;

        padding: 22px 20px 25px;
    }


    .site-location-card-content h3 {
        font-size: 28px;
    }


    .site-location-card-content p {
        font-size: 11px;
    }


    .location-highlights {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }


    .location-highlight {
        border-right: 0;

        border-bottom: 1px solid rgba(47,29,14,0.12);

        padding: 20px;
    }


    .location-highlight:last-child {
        border-bottom: 0;
    }


    .plan-lightbox {
        padding: 15px;
    }


    .plan-lightbox-box {
        padding: 12px;
    }


    .plan-lightbox-title {
        font-size: 23px;
    }


    .plan-lightbox-close {
        top: -45px;
        right: 0;
    }

}











