/* =========================================================
   BHARAT ALTAVISTAS
   PREMIUM REAL ESTATE WEBSITE
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    /* Brand Gold */
    --gold: #F8DA8F;
    --gold-dark: #B9934A;
    --gold-light: #FFE8B2;

    /* Dark */
    --black: #080808;
    --black-2: #111111;
    --black-3: #181818;

    /* Light */
    --white: #FFFFFF;
    --ivory: #FCF8EF;
    --cream: #F7F1E4;

    /* Text */
    --dark-text: #222222;
    --body-text: #555555;
    --light-text: #F5F5F5;
    --muted-text: #777777;

    /* Borders */
    --gold-border: rgba(185, 147, 74, 0.35);
    --light-border: #E8E2D6;

    /* Layout */
    --container: 1240px;

    /* Animation */
    --transition: all 0.35s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: 'Poppins', sans-serif;

    color: var(--dark-text);

    background: var(--ivory);

    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(90%, var(--container));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

header {
    width: 100%;
    height: 85px;
    padding: 0 35px;

    display: flex;
    align-items: center;

    /* CHANGE THIS */
    justify-content: flex-start;

    background: var(--black);

    position: sticky;
    top: 0;
    z-index: 9999;

    border-bottom: 1px solid rgba(248, 218, 143, 0.18);
}

/* LOGO */

.logo {
    width: 180px;
    height: 65px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;

    width: 180px;
    max-width: 180px;

    height: auto;
    max-height: 65px;

    object-fit: contain;
}


/* NAVIGATION */

nav {
    display: flex;

    align-items: center;
    margin-left: auto;


    gap: 24px;
}

nav a {
    color: var(--white);

    font-size: 15px;
    font-weight: 400;

    letter-spacing: 1.5px;

    transition: var(--transition);
}

nav a:hover {
    color: var(--gold);
}


/* =========================================
   MOBILE SIDE MENU
========================================= */

@media (max-width: 900px) {

    nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;

        width: 78%;
        max-width: 360px;
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 100px 0 30px;

        background: var(--black);

        border-left: 1px solid var(--gold-border);

        transform: translateX(100%);
        transition: transform 0.35s ease;

        z-index: 99999;

        overflow-y: auto;
    }

    /* OPEN SIDE PANEL */

    nav.active {
        display: flex;
        transform: translateX(0);
    }

    /* MENU LINKS */

    nav a {
        width: 100%;

        padding: 18px 30px;

        color: var(--white);

        font-size: 13px;
        letter-spacing: 0.8px;

        border-bottom: 1px solid rgba(248,218,143,0.12);

        transition: all 0.3s ease;
    }

    nav a:hover,
    nav a:active {
        color: var(--gold);
        padding-left: 38px;
        background: rgba(248,218,143,0.05);
    }

    /* HAMBURGER ABOVE PANEL */

    .menu-btn {
        display: flex;
        position: relative;
        z-index: 100001;
    }

}

@media (max-width: 900px) {

    body.menu-open::before {
        content: "";

        position: fixed;
        inset: 0;

        background: rgba(0, 0, 0, 0.65);

        z-index: 99998;

        opacity: 1;
        transition: opacity 0.3s ease;
    }

}


/* =========================================================
   MOBILE MENU - FINAL FIX
========================================================= */

@media (max-width: 900px) {

    /* =========================
       HAMBURGER
    ========================= */

    .menu-btn {
        display: flex !important;

        width: 42px;
        height: 42px;

    margin-left: auto;  
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 6px;

        cursor: pointer;

        position: relative;
        z-index: 10001;

        background: transparent;
        border: none;
    }

    .menu-btn span {
        display: block !important;

        width: 26px;
        height: 2px;

        background: var(--gold) !important;

        border-radius: 2px;

        transition: all 0.3s ease;
    }


    /* =========================
       HAMBURGER → X
    ========================= */

    .menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* =========================
       SIDE MENU
    ========================= */

    header nav {
        position: fixed !important;

        top: 0 !important;
        right: 0 !important;
        left: auto !important;

        width: 78% !important;
        max-width: 360px;

        height: 100vh !important;

        display: flex !important;

        flex-direction: column !important;

        /* THIS FIXES THE HUGE TOP GAP */
        justify-content: flex-start !important;

        align-items: stretch !important;

        /* REDUCED TOP SPACE */
        padding: 80px 0 30px !important;

        background: var(--black) !important;

        border-left: 1px solid var(--gold-border);

        transform: translateX(100%);

        transition: transform 0.35s ease;

        /* Must be above overlay */
        z-index: 10000 !important;

        overflow-y: auto;
    }


    /* =========================
       OPEN MENU
    ========================= */

    header nav.active {
        transform: translateX(0) !important;
    }


    /* =========================
       MENU LINKS
    ========================= */

    header nav a {
        display: block !important;

        width: 100% !important;

        padding: 18px 30px !important;

        color: var(--white) !important;

        font-size: 13px !important;

        letter-spacing: 0.8px;

        border-bottom: 1px solid rgba(248,218,143,0.12);

        transition: all 0.3s ease;

        cursor: pointer;

        position: relative;
        z-index: 10002;
    }

    header nav a:hover {
        color: var(--gold) !important;

        padding-left: 38px !important;

        background: rgba(248,218,143,0.05);
    }


    /* =========================
       DARK OVERLAY
    ========================= */

    body.menu-open::before {
        content: "";

        position: fixed;

        inset: 0;

        background: rgba(0,0,0,0.65);

        /* BELOW HEADER + MENU */
        z-index: 9998;

        pointer-events: auto;
    }

}

/* =========================================================
   HEADER CONTACT BUTTON
========================================================= */

.header-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-left: 50px;

    padding: 15px 25px;

    background: var(--gold-dark);
    color: var(--white);

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    transition: var(--transition);
}

.header-contact-btn i {
    font-size: 14px;
}

.header-contact-btn:hover {
    background: var(--gold);
    color: var(--black);

    transform: translateY(-2px);
}
/* =========================================================
   HERO
   SINGLE IMAGE ONLY
========================================================= */

.hero {
    width: 100%;

    margin: 0;
    padding: 0;

    background: var(--black);

    overflow: hidden;
}

.hero .right {
    width: 100%;

    margin: 0;
    padding: 0;

    background: var(--black);

    line-height: 0;
}

.hero .right img {
    width: 100%;
    height: auto;

    max-width: 100%;

    display: block;

    margin: 0;
    padding: 0;

    object-fit: contain;
}


/* =========================================================
   SECTION COMMON
========================================================= */

section {
    width: 100%;
}

section h2 {
    margin: 0;

    color: var(--dark-text);

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.15;
}

.title-line {
    width: 100px;
    height: 1px;

    margin: 20px auto 45px;

    position: relative;

    background: var(--gold-dark);
}

.title-line::before,
.title-line::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 7px;
    height: 7px;

    background: var(--gold);

    transform: translateY(-50%) rotate(45deg);
}

.title-line::before {
    left: -10px;
}

.title-line::after {
    right: -10px;
}


/* =========================================================
   OVERVIEW
========================================================= */

.overview {
    padding: 100px 0;

    background: var(--ivory);

    overflow: hidden;
}

.overview-container {
    width: min(90%, var(--container));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 52% 48%;

    gap: 50px;

    align-items: start;
}

.overview-content {
    padding-top: 35px;
}

.section-label {
    display: block;

    margin-bottom: 15px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;
}

.overview-content h1 {
    margin: 0;

    color: var(--dark-text);

     font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.overview-line {
    width: 85px;
    height: 1px;

    margin: 25px 0 30px;

    background: var(--gold-dark);

    position: relative;
}

.overview-line::before,
.overview-line::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 7px;
    height: 7px;

    background: var(--gold);

    transform: translateY(-50%) rotate(45deg);
}

.overview-line::before {
    left: -10px;
}

.overview-line::after {
    right: -10px;
}

.overview-intro {
    margin-bottom: 20px;

    color: var(--gold-dark);

    font-size: 19px;

    line-height: 1.6;
}

.description {
    margin-bottom: 18px;

    color: var(--body-text);

    font-size: 14px;

    line-height: 1.9;
}

.brochure-btn {
    display: inline-flex;

    margin-top: 15px;

    padding: 13px 28px;

    border: 1px solid var(--gold-dark);

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: var(--transition);
}

.brochure-btn:hover {
    background: var(--gold);

    color: var(--black);

    border-color: var(--gold);
}


/* OVERVIEW IMAGE */

.overview-image {
    display: flex;

    align-items: flex-start;

    justify-content: flex-end;
}

.overview-image-frame {
    width: 100%;

    max-width: 420px;

    margin-left: auto;

    padding: 8px;

    background: var(--white);

    border: 1px solid var(--gold-border);

    box-shadow: 0 15px 45px rgba(40, 30, 10, 0.10);

    position: relative;
}

.overview-image-frame img {
    width: 100%;
    height: auto;

    display: block;
}

.image-gold-border {
    position: absolute;

    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;

    border: 1px solid rgba(248, 218, 143, 0.55);

    pointer-events: none;
}


@media (max-width: 600px) {

    .overview-content h1 {
        font-size: 28px !important;
        line-height: 1.25;
        letter-spacing: -0.5px;
        max-width: 100%;
    }

}

@media (max-width: 900px) {

    .header-contact-btn {
        display: none;
    }

}


/* =========================================================
   SITE & FLOOR PLAN
========================================================= */

.floor-plan {
    width: 100%;
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

.floor-plan .container {
    width: min(90%, var(--container));
    margin: 0 auto;
    text-align: center;
}


/* ---------------------------------------------------------
   TABS
--------------------------------------------------------- */

.floor-plan-tabs {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 15px;

    margin-top: -75px;
    margin-bottom: 45px;
}

.floor-tab {
    padding: 12px 25px;

    border: 1px solid var(--gold-dark);

    border-radius: 30px;

    background: transparent;

    color: var(--gold-dark);

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition: var(--transition);
}

.floor-tab:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.floor-tab.active {
    background: var(--gold-dark);
    color: var(--white);
}


/* ---------------------------------------------------------
   MAIN CARD
--------------------------------------------------------- */

.master-plan-card {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;

    background: var(--white);

    border: 1px solid #e3e0da;

    border-radius: 14px;

    padding: 25px;

    box-shadow:
        0 15px 45px rgba(40, 30, 10, 0.08);

    position: relative;

    overflow: hidden;
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.floor-plan-content {
    display: none;

    position: relative;

    width: 100%;
}

.floor-plan-content.active {
    display: block;
}


/* ---------------------------------------------------------
   AREA BADGE
--------------------------------------------------------- */

.plan-area {
    position: absolute;

    top: 5px;
    left: 5px;

    z-index: 5;

    padding: 11px 17px;

    border: 1px solid #777;

    border-radius: 30px;

    background: var(--white);

    color: #555;

    font-size: 15px;

    font-weight: 500;
}


/* ---------------------------------------------------------
   FLOOR PLAN IMAGE
--------------------------------------------------------- */

.floor-plan-content img {
    width: 100%;

    height: 480px;

    display: block;

    object-fit: contain;

    margin: 20px auto 0;

    filter: blur(5px);

    opacity: 0.65;

    transition: 0.4s ease;
}


/* ---------------------------------------------------------
   VIEW BUTTON
--------------------------------------------------------- */

.view-floor-plan {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 10;

    padding: 16px 30px;

    border: 0;

    border-radius: 7px;

    background: var(--white);

    color: var(--gold-dark);

    font-size: 15px;

    font-weight: 500;

    white-space: nowrap;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);

    transition: var(--transition);
}

.view-floor-plan:hover {
    background: var(--gold-dark);

    color: var(--white);
}


/* ---------------------------------------------------------
   POPUP
--------------------------------------------------------- */

.floor-plan-popup {
    position: fixed;

    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.85);

    z-index: 10000;
}

.floor-plan-popup.active {
    display: flex;
}

.floor-plan-popup-inner {
    position: relative;

    width: min(95vw, 1200px);

    max-height: 90vh;

    padding: 20px;

    background: var(--white);

    border-radius: 10px;
}

.floor-plan-popup-inner img {
    width: 100%;

    max-height: 85vh;

    display: block;

    object-fit: contain;
}


/* ---------------------------------------------------------
   CLOSE BUTTON
--------------------------------------------------------- */

.floor-plan-close {
    position: absolute;

    top: -15px;
    right: -15px;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background: var(--gold-dark);

    color: var(--white);

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    z-index: 5;
}

/* =========================================================
   FLOOR PLAN - MOBILE
========================================================= */

@media (max-width: 900px) {

    .floor-plan {
        padding: 65px 0;
    }

    .floor-plan-tabs {
        justify-content: center;

        margin-top: 0;
        margin-bottom: 30px;
    }

    .floor-tab {
        padding: 11px 20px;

        font-size: 13px;
    }

    .master-plan-card {
        padding: 18px;

        border-radius: 10px;
    }

    .floor-plan-content img {
        height: 380px;

        margin-top: 25px;
    }

    .plan-area {
        font-size: 13px;

        padding: 9px 13px;
    }

    .view-floor-plan {
        padding: 13px 22px;

        font-size: 13px;
    }

}


@media (max-width: 600px) {

    .floor-plan {
        padding: 50px 0;
    }

    .floor-plan-tabs {
        gap: 10px;

        margin-bottom: 25px;
    }

    .floor-tab {
        padding: 10px 18px;

        font-size: 12px;
    }

    .master-plan-card {
        padding: 12px;
    }

    .floor-plan-content img {
        height: 300px;

        margin-top: 30px;
    }

    .plan-area {
        top: 3px;
        left: 3px;

        padding: 8px 11px;

        font-size: 11px;
    }

    .view-floor-plan {
        padding: 12px 18px;

        font-size: 12px;
    }

    .floor-plan-popup {
        padding: 15px;
    }

    .floor-plan-popup-inner {
        padding: 10px;
    }

}


/* =========================================================
   CONFIGURATION
========================================================= */

.configuration {
    background: var(--cream);

    padding: 100px 0;
}

.configuration .container {
    text-align: center;
}

.configuration table {
    width: 100%;

    border-collapse: collapse;

    margin-top: 30px;

    background: var(--white);
}

.configuration th {
    padding: 18px;

    background: var(--black);

    color: var(--gold);

    font-size: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.configuration td {
    padding: 18px;

    border-bottom: 1px solid var(--light-border);

    color: var(--body-text);

    font-size: 14px;
}

.price-btn {
    display: inline-block;

    padding: 9px 16px;

    border: 1px solid var(--gold-dark);

    color: var(--gold-dark);

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.price-btn:hover {
    background: var(--gold);

    color: var(--black);
}


/* =========================================================
   AMENITIES
   LOTUS DEVELOPERS
========================================================= */

.amenities-section {

    width: 100%;

    padding: 90px 0 75px;

    background: var(--ivory);

    text-align: center;

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.amenities-section .section-label {

    display: block;

    margin-bottom: 12px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.amenities-section h2 {

    margin: 0;

    color: var(--dark-text);

    font-size: clamp(36px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.15;
}


.amenities-section .title-line {

    margin: 20px auto 45px;
}




/* =========================================================
   SLIDER
========================================================= */


.amenities-slider {

    width: 100%;

    position: relative;
}


.amenities-slide {
    display: none;

    width: 100%;

    animation: amenitiesSlideIn 0.7s ease;
}

.amenities-slide.active {
    display: block;
}


@keyframes amenitiesSlideIn {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* =========================================================
   GRID
========================================================= */

.amenities-grid {

    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

    column-gap: 20px;

    row-gap: 70px;

    align-items: start;

    justify-items: center;
}


/*
   The last two items should sit in the
   center like your reference image.
*/

.amenity-item:nth-child(9) {

    grid-column: 4;
}


.amenity-item:nth-child(10) {

    grid-column: 5;
}


/* =========================================================
   AMENITY ITEM
========================================================= */

.amenity-item {

    width: 100%;

    max-width: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    color: var(--gold-dark);

    transition: var(--transition);
}


/* =========================================================
   ICON
========================================================= */

.amenity-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold-dark);

    font-size: 40px;
}

.amenity-icon i {
    font-weight: 900;
}






/* =========================================================
   LABEL
========================================================= */

.amenity-item h3 {

    margin: 0;

    color: var(--dark-text);

    font-size: 15px;

    font-weight: 400;

    line-height: 1.3;

    white-space: nowrap;
}


/* =========================================================
   HOVER
========================================================= */

.amenity-item:hover {

    transform: translateY(-5px);
}


.amenity-item:hover .amenity-icon {

    color: var(--gold);

    transform: scale(1.05);
}


.amenity-item:hover h3 {

    color: var(--gold-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .amenities-grid {

        grid-template-columns:
            repeat(5, 1fr);

        column-gap: 15px;

        row-gap: 55px;
    }


    .amenity-item:nth-child(9),
    .amenity-item:nth-child(10) {

        grid-column: auto;
    }


    .amenity-item {

        max-width: 120px;
    }


    .amenity-icon {

        width: 60px;

        height: 60px;

        font-size: 36px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .amenities-section {

        padding: 60px 0 50px;
    }


    .amenities-section h2 {

        font-size: 32px;
    }


    .amenities-section .title-line {

        margin-bottom: 35px;
    }


    /*
       2 columns on mobile
    */

    .amenities-grid {

        grid-template-columns:
            repeat(2, 1fr);

        column-gap: 10px;

        row-gap: 35px;

        padding: 0 10px;
    }


    .amenity-item {

        max-width: 140px;
    }


    .amenity-icon {

        width: 55px;

        height: 55px;

        margin-bottom: 9px;

        font-size: 32px;
    }


    .amenity-item h3 {

        font-size: 13px;

        white-space: normal;

        text-align: center;
    }


  
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .amenities-section {

        padding: 50px 0 45px;
    }


    .amenities-section h2 {

        font-size: 29px;
    }


    .amenities-grid {

        row-gap: 30px;

        padding: 0 5px;
    }


    .amenity-icon {

        width: 50px;

        height: 50px;

        font-size: 29px;
    }


    .amenity-item h3 {

        font-size: 12px;
    }

}


/* =========================================================
   GALLERY
   PREMIUM MULTI-CARD CAROUSEL
========================================================= */

.gallery-section {
    padding: 100px 0 110px;

    background: var(--cream);

    overflow: hidden;

    text-align: center;
}


/* =========================================================
   GALLERY HEADING
========================================================= */

.gallery-heading {
    text-align: center;

    margin-bottom: 50px;
}

.gallery-heading .section-label {
    display: block;

    margin-bottom: 12px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.gallery-heading h2 {
    margin: 0;

    color: var(--dark-text);

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.15;
}

.gallery-heading .title-line {
    margin: 20px auto 0;
}


/* =========================================================
   CAROUSEL
========================================================= */

.gallery-carousel {
    width: 100%;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   SWIPER
========================================================= */

.gallerySwiper {
    width: 100%;

    overflow: visible;
}


/* =========================================================
   SLIDES
========================================================= */

.gallerySwiper .swiper-slide {

    width: 38vw;

    max-width: 560px;

    height: 390px;

    border-radius: 12px;

    overflow: hidden;

    flex-shrink: 0;

    background: var(--white);

    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}


/* =========================================================
   IMAGE
========================================================= */

.gallerySwiper .swiper-slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.6s ease;
}


/* IMAGE HOVER */

.gallerySwiper .swiper-slide:hover img {
    transform: scale(1.04);
}


/* =========================================================
   GOLD NAVIGATION BUTTONS
========================================================= */

.gallery-button {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 68px;

    height: 68px;

    border-radius: 50%;

    background: var(--gold-dark);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 20;

    cursor: pointer;

    transition: var(--transition);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);
}


.gallery-button i {
    font-size: 20px;
}


/* LEFT */

.gallery-button-prev {
    left: 25px;
}


/* RIGHT */

.gallery-button-next {
    right: 25px;
}


/* HOVER */

.gallery-button:hover {

    background: var(--gold);

    color: var(--black);

    transform: translateY(-50%) scale(1.05);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .gallery-section {
        padding: 75px 0 85px;
    }


    .gallery-heading {
        margin-bottom: 40px;
    }


    .gallerySwiper .swiper-slide {

        width: 55vw;

        height: 350px;
    }


    .gallery-button {

        width: 55px;

        height: 55px;
    }


    .gallery-button-prev {
        left: 15px;
    }


    .gallery-button-next {
        right: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .gallery-section {

        padding: 60px 0 70px;
    }


    .gallery-heading {

        margin-bottom: 30px;
    }


    .gallery-heading .section-label {

        font-size: 10px;

        letter-spacing: 3px;
    }


    .gallery-heading h2 {

        font-size: 32px;
    }


    .gallery-heading .title-line {

        margin-top: 15px;
    }


    /* SHOW PART OF NEXT IMAGE */

    .gallerySwiper .swiper-slide {

        width: 82vw;

        height: 280px;

        border-radius: 10px;
    }


    /* SMALLER ARROWS */

    .gallery-button {

        width: 46px;

        height: 46px;
    }


    .gallery-button i {

        font-size: 14px;
    }


    .gallery-button-prev {

        left: 10px;
    }


    .gallery-button-next {

        right: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .gallery-section {

        padding: 50px 0 60px;
    }


    .gallerySwiper .swiper-slide {

        width: 86vw;

        height: 245px;
    }


    .gallery-button {

        width: 42px;

        height: 42px;
    }


    .gallery-button i {

        font-size: 12px;
    }

}


/* =========================================================
   VIDEO
========================================================= */

/* =========================================================
   PROJECT PRESENTATION
========================================================= */

.video-section {
    width: 100%;
    padding: 100px 0;

    background: var(--ivory);

    text-align: center;
}


/* =========================================================
   VIDEO PREVIEW
========================================================= */

.video-preview {

    position: relative;

    width: 100%;
    max-width: 1100px;

    margin: 45px auto 0;

    height: 430px;

    overflow: hidden;

    background: #111;

    border: 1px solid var(--gold-border);

    cursor: pointer;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.12);
}


/* VIDEO BACKGROUND */

.video-preview video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    pointer-events: none;

    filter: blur(8px);

    transform: scale(1.08);

    opacity: 0.75;
}


/* DARK / GOLD OVERLAY */

.video-blur {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(8,8,8,0.25),
            rgba(8,8,8,0.45)
        );

    z-index: 2;
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.video-play {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 82px;
    height: 82px;

    border-radius: 50%;

    background: var(--gold-dark);

    color: var(--white);

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 3;

    transition: var(--transition);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.25);
}


.video-play i {

    font-size: 25px;

    margin-left: 4px;
}


.video-preview:hover .video-play {

    background: var(--gold);

    color: var(--black);

    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* =========================================================
   PREVIEW TEXT
========================================================= */

.video-preview-text {

    position: absolute;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    z-index: 3;

    color: var(--white);

    font-size: 11px;

    letter-spacing: 4px;

    white-space: nowrap;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.video-lightbox {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.92);

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    z-index: 999999;
}


.video-lightbox.active {

    display: flex;
}


/* NATURAL VIDEO */

.video-lightbox video {

    display: block;

    width: auto;

    height: auto;

    max-width: 95vw;

    max-height: 90vh;

    object-fit: contain;

    background: #000;
}


/* CLOSE */

.video-lightbox-close {

    position: absolute;

    top: 25px;
    right: 30px;

    width: 50px;
    height: 50px;

    border: 2px solid var(--white);

    border-radius: 50%;

    background: transparent;

    color: var(--white);

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    z-index: 5;
}


.video-lightbox-close:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: var(--black);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .video-section {

        padding: 60px 0;
    }


    .video-preview {

        height: 240px;

        margin-top: 30px;
    }


    .video-play {

        width: 62px;
        height: 62px;
    }


    .video-play i {

        font-size: 19px;
    }


    .video-preview-text {

        bottom: 20px;

        font-size: 9px;

        letter-spacing: 2.5px;
    }


    .video-lightbox {

        padding: 15px;
    }


    .video-lightbox video {

        max-width: 100vw;

        max-height: 80vh;
    }


    .video-lightbox-close {

        top: 12px;
        right: 12px;

        width: 42px;
        height: 42px;

        font-size: 26px;
    }

}



/* =========================================================
   LOCATION ADVANTAGE
========================================================= */

/* =========================================================
   LOCATION ADVANTAGE
========================================================= */

.location-advantage {
    padding: 55px 0;
    background: var(--cream);
}


/* CENTERED SECTION TITLE */

.location-advantage > .container {
    width: min(94%, 1300px);
    margin: 0 auto;
    text-align: center;
}


.location-advantage h2 {
    margin: 0;
    text-align: center;
}


/* TITLE DECORATION */

.location-advantage .title-line {
    margin: 25px auto 55px;
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.location-wrapper {
    display: grid;

    grid-template-columns: 45% 55%;

    gap: 45px;

    align-items: stretch;

    text-align: left;
}


/* =========================================================
   ACCORDION
========================================================= */

.location-left {
    width: 100%;
}


.accordion-item {
    background: #ffffff;

    border: 1px solid #e4ded2;

    border-radius: 10px;

    margin-bottom: 14px;

    overflow: hidden;

    transition: all 0.3s ease;
}


.accordion-item:last-child {
    margin-bottom: 0;
}


/* HEADER */

.accordion-header {
    width: 100%;

    min-height: 82px;

    padding: 18px 25px;

    display: flex;

    align-items: center;

    gap: 18px;

    background: #ffffff;

    border: none;

    cursor: pointer;

    text-align: left;

    color: var(--gold-dark);

    font-family: 'Poppins', sans-serif;
}


/* ICON */

.accordion-icon {
    width: 42px;

    min-width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold-dark);

    font-size: 25px;
}


/* TITLE */

.accordion-title {
    flex: 1;

    font-size: 20px;

    font-weight: 500;

    color: var(--gold-dark);
}


/* ARROW */

.accordion-arrow {
    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold-dark);

    font-size: 15px;

    transition: transform 0.35s ease;
}


/* CLOSED ARROW */

.accordion-item:not(.active) .accordion-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   ACCORDION CONTENT
========================================================= */

.accordion-content {
    max-height: 0;

    overflow: hidden;

    background: #ffffff;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}


/* OPEN */

.accordion-item.active .accordion-content {
    max-height: 500px;

    padding: 0 30px 25px 85px;
}


/* DIVIDER ABOVE CONTENT */

.accordion-content::before {
    content: "";

    display: block;

    height: 1px;

    background: #ded8cc;

    margin-bottom: 20px;
}


/* LIST */

.accordion-content ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


/* LIST ITEM */

.accordion-content li {
    position: relative;

    margin-bottom: 13px;

    padding-left: 20px;

    color: #46515f;

    font-size: 15px;

    line-height: 1.6;
}


.accordion-content li:last-child {
    margin-bottom: 0;
}


/* BULLET */

.accordion-content li::before {
    content: "";

    position: absolute;

    left: 0;

    top: 10px;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--gold-dark);
}


/* =========================================================
   MAP
========================================================= */

.location-right {
    min-height: 100%;

    border-radius: 10px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4ded2;
}


.map-zoom {
    width: 100%;

    height: 100%;

    min-height: 550px;

    overflow: hidden;
}


.map-zoom img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.8s ease;
}


.location-right:hover .map-zoom img {
    transform: scale(1.03);
}


@media (max-width: 768px) {

    .location-advantage {
        padding: 65px 0;
    }


    .location-advantage h2 {
        font-size: 34px;
        line-height: 1.2;
    }


    .location-advantage .title-line {
        margin-bottom: 35px;
    }


    /* STACK COLUMNS */

    .location-wrapper {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* ACCORDION */

    .accordion-header {
        min-height: 70px;

        padding: 15px 18px;

        gap: 12px;
    }


    .accordion-icon {
        width: 35px;

        min-width: 35px;

        height: 35px;

        font-size: 21px;
    }


    .accordion-title {
        font-size: 16px;
    }


    .accordion-arrow {
        width: 25px;

        height: 25px;

        font-size: 13px;
    }


    .accordion-item.active .accordion-content {
        padding: 0 18px 20px 65px;
    }


    .accordion-content li {
        font-size: 13px;

        margin-bottom: 10px;
    }


    /* MAP BELOW ACCORDION */

    .location-right {
        min-height: 350px;
    }


    .map-zoom {
        min-height: 350px;
    }

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    display: grid;

    grid-template-columns: 50% 50%;

    min-height: 600px;

    background: var(--black);
}

.contact-map {
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;

    min-height: 500px;

    display: block;

    border: 0;
}

.contact-form-area {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 60px;

    background: var(--black);
}

.contact-form-area .overlay {
    width: 100%;
    max-width: 500px;
}

.contact-form-area h2 {
    color: var(--gold);

    margin-bottom: 12px;
}

.contact-form-area p {
    margin-bottom: 30px;

    color: var(--muted-text);

    font-size: 13px;
}

.contact-form-area form {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.contact-form-area input {
    width: 100%;

    padding: 15px;

    border: 1px solid rgba(248, 218, 143, 0.25);

    outline: none;

    background: var(--black-2);

    color: var(--white);
}

.contact-form-area button {
    padding: 15px;

    border: 1px solid var(--gold);

    background: var(--gold);

    color: var(--black);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;
}

.contact-form-area h3 {
    margin-top: 25px;

    color: var(--white);

    font-size: 14px;

    font-weight: 400;
}

.contact-form-area h3 a {
    color: var(--gold);
}


/* =========================================================
   ABOUT LOTUS DEVELOPERS
========================================================= */

.about-developers {
    width: 100%;
    padding: 80px 0 100px;
    background: var(--ivory);
    overflow: hidden;
}


/* CONTAINER */

.about-developers-container {
    width: min(90%, var(--container));
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

/* =========================================================
   ABOUT LOTUS DEVELOPERS - SECTION TITLE
========================================================= */

.about-developers-heading {
    text-align: center;
    margin-bottom: 45px;
}




/* SAME TITLE LINE AS OTHER SECTIONS */

.about-developers-heading .title-line {
    width: 100px;
    height: 1px;

    margin: 20px auto 45px;

    position: relative;

    background: var(--gold-dark);
}


/* DIAMONDS */

.about-developers-heading .title-line::before,
.about-developers-heading .title-line::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 7px;
    height: 7px;

    background: var(--gold);

    transform: translateY(-50%) rotate(45deg);
}

.about-developers-heading .title-line::before {
    left: -10px;
}

.about-developers-heading .title-line::after {
    right: -10px;
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.about-developers-grid {
    display: grid;

    grid-template-columns: 52% 48%;

    gap: 55px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-developers-content {
    padding-left: 5px;
    padding-right: 25px;
}

.about-developers-content p {
    margin: 0 0 20px;

    color: var(--body-text);

    font-size: 16px;
    font-weight: 400;

    line-height: 1.9;
}

.about-developers-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.about-developers-image {
    display: flex;

    justify-content: flex-end;
    align-items: center;
}

.about-image-frame {
    width: 100%;
    max-width: 560px;

    position: relative;

    padding: 0;

    background: var(--white);

    border: 1px solid var(--gold-border);

    box-shadow:
        0 15px 45px rgba(40, 30, 10, 0.10);

    overflow: hidden;
}


/* IMAGE */

.about-image-frame img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
}


/* INNER GOLD BORDER */

.about-image-border {
    position: absolute;

    top: 14px;
    right: 14px;
    bottom: 14px;
    left: 14px;

    border: 1px solid rgba(248, 218, 143, 0.65);

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-developers {
        padding: 70px 0 80px;
    }

    .about-developers-heading {
        margin-bottom: 45px;
    }

    .about-developers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .about-developers-content {
        padding-right: 10px;
    }

    .about-developers-content p {
        font-size: 14px;
        line-height: 1.8;
    }

}


/* =========================================================
   MOBILE
========================================================= */


@media (max-width: 700px) {

    .about-developers-heading {
        margin-bottom: 35px;
    }

    .about-developers-heading h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .about-developers-heading .title-line {
        margin: 18px auto 35px;
    }

}


    /* STACK CONTENT */

    .about-developers-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* TEXT */

    .about-developers-content {
        padding: 0;
    }

    .about-developers-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 17px;
    }


    /* IMAGE */

    .about-developers-image {
        justify-content: center;
    }

    .about-image-frame {
        max-width: 100%;
    }

    .about-image-border {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
    }



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-developers {
        padding: 45px 0 55px;
    }

    .about-developers-heading h2 {
        font-size: 28px;
    }

    .about-developers-content p {
        font-size: 13px;
        line-height: 1.75;
    }

}

/* =========================================================
   STICKY CONTACT BAR
========================================================= */

/* =========================================================
   STICKY CONTACT BAR
========================================================= */

.sticky-contact-bar {
    position: fixed;

    left: 50%;
    bottom: 15px;

    transform: translateX(-50%);

    z-index: 9998;

    display: flex;

    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.sticky-btn {
    min-width: 145px;

    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    /* INCREASED FONT */
    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.7px;

    /* LOGO GOLD */
    background: var(--gold);

    /* BLACK TEXT */
    color: var(--black);

    transition: all 0.3s ease;
}


/* ALL THREE BUTTONS - SAME GOLD */

.sticky-btn.whatsapp,
.sticky-btn.call,
.sticky-btn.enquiry {
    background: var(--gold);
    color: var(--black);
}


/* HOVER */

.sticky-btn:hover {
    background: var(--gold-light);
    color: var(--black);
}


/* ICONS */

.sticky-btn i {
    font-size: 17px;
}


@media (max-width: 600px) {

    .sticky-contact-bar {
        width: calc(100% - 10px);
        bottom: 8px;
    }

    .sticky-btn {
        min-width: 0;
        flex: 1;

        padding: 13px 6px;

        font-size: 11px;

        font-weight: 600;

        gap: 5px;

        background: var(--gold) !important;
        color: var(--black) !important;
    }

    .sticky-btn i {
        font-size: 15px;
    }
}


/* Hide sticky bar on desktop */
@media (min-width: 901px) {
    .sticky-contact-bar {
        display: none !important;
    }
}

/* =========================================================
   FOOTER
========================================================= */

/* =========================================================
   PREMIUM BLACK FOOTER
========================================================= */

.premium-footer {

    width: 100%;

    background: var(--black);

    color: var(--white);

    padding: 55px 20px 35px;

    text-align: center;

    overflow: hidden;
}


.premium-footer-container {

    width: min(100%, 1400px);

    margin: 0 auto;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-brand {

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 65px;
}


.footer-brand img {

    width: 320px;

    max-width: 70%;

    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   FOOTER TITLE
========================================================= */

.premium-footer h2 {

    margin: 0 0 65px;

    color: var(--gold);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(28px, 2.5vw, 38px);

    font-weight: 400;

    line-height: 1.3;
}


/* =========================================================
   ENQUIRY FORM
========================================================= */

.footer-enquiry-form {

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(180px, 1fr)
        minmax(180px, 1fr)
        minmax(180px, 1fr)
        180px;

    gap: 30px;

    align-items: center;

    margin-bottom: 100px;
}


/* INPUTS */

.footer-enquiry-form input {

    width: 100%;

    height: 68px;

    padding: 0 20px;

    background: var(--black-3);

    border: 1px solid rgba(248, 218, 143, 0.35);

    border-radius: 6px;

    outline: none;

    color: var(--white);

    font-size: 15px;

    font-weight: 400;

    transition: var(--transition);
}


.footer-enquiry-form input::placeholder {

    color: #8d8d8d;

    opacity: 1;
}


.footer-enquiry-form input:focus {

    border-color: var(--gold);

    box-shadow:
        0 0 0 2px rgba(248, 218, 143, 0.08);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.footer-enquiry-form button {

    height: 60px;

    padding: 0 25px;

    border: 1px solid var(--gold-dark);

    border-radius: 6px;

    background: var(--gold-dark);

    color: var(--white);

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);
}


.footer-enquiry-form button:hover {

    background: var(--gold);

    color: var(--black);

    border-color: var(--gold);
}


/* =========================================================
   QR / RERA
========================================================= */

.footer-bottom-area {

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 50px;
}


.footer-qr {

    text-align: center;
}


/* QR WHITE BOX */

.qr-box {

    width: 165px;

    height: 165px;

    padding: 10px;

    margin: 0 auto 15px;

    background: var(--white);

    border-radius: 7px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.qr-box img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;
}


/* RERA TITLE */

.rera-title {

    margin: 0 0 3px;

    color: #aaa;

    font-size: 18px;

    font-weight: 400;
}


/* RERA NUMBER */

.rera-number {

    margin: 0 0 8px;

    color: #aaa;

    font-size: 18px;

    font-weight: 400;
}


/* RERA WEBSITE */

.footer-qr a {

    color: #1685e5;

    font-size: 16px;

    transition: var(--transition);
}


.footer-qr a:hover {

    color: var(--gold);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.premium-footer .footer-links {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 35px;

    padding-top: 25px;

    margin-bottom: 18px;

    border-top: 1px solid rgba(248, 218, 143, 0.15);
}


.premium-footer .footer-links a {

    color: #999;

    font-size: 12px;

    transition: var(--transition);
}


.premium-footer .footer-links a:hover {

    color: var(--gold);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copyright {

    color: #666;

    font-size: 11px;

    letter-spacing: 0.5px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .footer-enquiry-form {

        grid-template-columns:
            1fr 1fr;

        gap: 20px;

        max-width: 800px;

        margin-left: auto;

        margin-right: auto;
    }

    .footer-enquiry-form button {

        width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .premium-footer {

        padding: 45px 18px 30px;
    }


    /* LOGO */

    .footer-brand {

        margin-bottom: 45px;
    }

    .footer-brand img {

        width: 230px;

        max-width: 80%;
    }


    /* TITLE */

    .premium-footer h2 {

        font-size: 26px;

        line-height: 1.35;

        margin-bottom: 40px;
    }


    /* FORM */

    .footer-enquiry-form {

        display: flex;

        flex-direction: column;

        gap: 15px;

        width: 100%;

        margin-bottom: 65px;
    }


    .footer-enquiry-form input {

        width: 100%;

        height: 58px;

        font-size: 14px;
    }


    .footer-enquiry-form button {

        width: 100%;

        height: 58px;

        font-size: 14px;
    }


    /* QR */

    .footer-bottom-area {

        margin-bottom: 40px;
    }


    .qr-box {

        width: 145px;

        height: 145px;
    }


    .rera-title,
    .rera-number {

        font-size: 15px;
    }


    .footer-qr a {

        font-size: 13px;

        word-break: break-word;
    }


    /* LINKS */

    .premium-footer .footer-links {

        flex-direction: column;

        gap: 12px;

        padding-top: 20px;
    }


    .premium-footer .footer-links a {

        font-size: 11px;
    }


    .footer-copyright {

        font-size: 10px;

        line-height: 1.6;
    }

}

/* =========================================================
   COMPACT PREMIUM FOOTER
========================================================= */

.premium-footer {
    padding: 35px 20px 25px;
}


/* LOGO */
.footer-brand {
    margin-bottom: 35px;
}

.footer-brand img {
    width: 250px;
    max-width: 65%;
}


/* HEADING */
.premium-footer h2 {
    font-size: clamp(25px, 2.2vw, 32px);
    margin-bottom: 45px;
}


/* FORM */
.footer-enquiry-form {
    gap: 25px;
    margin-bottom: 65px;
}


/* INPUTS */
.footer-enquiry-form input {
    height: 55px;
    padding: 0 18px;
    font-size: 14px;
}


/* BUTTON */
.footer-enquiry-form button {
    height: 55px;
    font-size: 14px;
}


/* QR */
.footer-bottom-area {
    margin-bottom: 35px;
}

.qr-box {
    width: 140px;
    height: 140px;
}


/* RERA */
.rera-title,
.rera-number {
    font-size: 15px;
}

.footer-qr a {
    font-size: 13px;
}


/* LINKS */
.premium-footer .footer-links {
    padding-top: 18px;
    margin-bottom: 12px;
    gap: 25px;
}


/* COPYRIGHT */
.footer-copyright {
    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .premium-footer {
        padding: 35px 18px 25px;
    }

    .footer-brand {
        margin-bottom: 30px;
    }

    .footer-brand img {
        width: 210px;
    }

    .premium-footer h2 {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .footer-enquiry-form {
        gap: 12px;
        margin-bottom: 50px;
    }

    .footer-enquiry-form input,
    .footer-enquiry-form button {
        height: 52px;
    }

    .footer-bottom-area {
        margin-bottom: 30px;
    }

    .qr-box {
        width: 125px;
        height: 125px;
    }
}


/* =========================================================
   FOOTER DISCLAIMER
========================================================= */

.footer-disclaimer {

    width: 100%;

    margin-top: 35px;

    padding-top: 28px;

    border-top: 1px solid rgba(248, 218, 143, 0.20);

    text-align: left;
}


.footer-disclaimer-inner {

    width: min(100%, 1480px);

    margin: 0 auto;

    padding: 0 5px;
}


.footer-disclaimer p {

    margin: 0;

    color: #9b9b9b;

    font-size: 14px;

    line-height: 1.8;

    font-weight: 400;
}


.footer-disclaimer strong {

    color: #aaa;

    font-weight: 700;
}


.footer-disclaimer a {

    color: #1685e5;

    text-decoration: none;

    transition: var(--transition);
}


.footer-disclaimer a:hover {

    color: var(--gold);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-disclaimer {

        margin-top: 25px;

        padding-top: 22px;
    }


    .footer-disclaimer-inner {

        padding: 0;
    }


    .footer-disclaimer p {

        font-size: 11px;

        line-height: 1.7;

        text-align: left;
    }

}

/* =========================================================
   INTEREST BUTTON
========================================================= */



/* =========================================================
   I'M INTERESTED BUTTON
   DESKTOP / LAPTOP ONLY
========================================================= */

.interest {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 28px;

    min-width: 175px;

    background: var(--gold);
    color: var(--black);

    border: 1px solid var(--gold);
    border-radius: 4px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    position: fixed;
    right: 30px;
    bottom: 30px;

    z-index: 9997;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18);

    transition: all 0.3s ease;
}

.interest:hover {
    background: var(--gold-light);
    color: var(--black);

    transform: translateY(-2px);
}

.interest i {
    font-size: 16px;
}


@media (max-width: 600px) {

    .interest {
        min-width: 165px;

        padding: 13px 22px !important;

        font-size: 14px !important;
    }

    .interest i {
        font-size: 15px;
    }

}

/* =========================================================
   HIDE ON MOBILE
========================================================= */

@media (max-width: 900px) {

    .interest {
        display: none !important;
    }

}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    /* HEADER */

    header {
        height: 75px;

        padding: 0 20px;
    }

    .logo {
        width: 145px;
        height: 55px;
    }

    .logo img {
        width: 145px;
        max-width: 145px;
        max-height: 55px;
    }

    nav {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: var(--black);

        border-top: 1px solid var(--gold-border);
    }

    nav.active {
        display: flex;
    }

    nav a {
        width: 100%;

        padding: 15px 25px;

        border-bottom: 1px solid rgba(248,218,143,0.10);

        color: var(--white);
    }

    .menu-btn {
        display: flex;
    }


    /* HERO */

    .hero {
        width: 100%;

        background: var(--black);
    }

    .hero .right {
        width: 100%;

        margin: 0;
        padding: 0;

        line-height: 0;
    }

    .hero .right img {
        width: 100%;
        height: auto;

        max-width: none;

        display: block;

        object-fit: contain;
    }


    /* OVERVIEW */

    .overview {
        padding: 65px 0;
    }

    .overview-container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .overview-content {
        padding-top: 0;
    }

    .overview-content h1 {
        font-size: 34px;
    }

    .overview-intro {
        font-size: 17px;
    }

    .description {
        font-size: 13px;

        line-height: 1.8;
    }

    .overview-image {
        justify-content: center;
    }

    .overview-image-frame {
        width: 100%;

        max-width: 500px;

        margin: 0 auto;
    }


    /* FLOOR PLAN */

    .floor-plan {
        padding: 60px 0;
    }

    .floor-plan h2 {
        font-size: 32px;
    }

    .master-plan-card {
        margin-bottom: 35px;
    }

    .plan-wrapper {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* CONFIGURATION */

    .configuration {
        padding: 65px 0;
    }

    .configuration table {
        font-size: 12px;
    }

    .configuration th,
    .configuration td {
        padding: 12px 8px;
    }


    /* VIDEO */

    .video-section {
        padding: 65px 0;
    }


    
    /* LOCATION */

    .location-advantage {
        padding: 65px 0;
    }

    .location-wrapper {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .map-zoom {
        min-height: 350px;
    }


    /* CONTACT */

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-map iframe {
        min-height: 350px;
    }

    .contact-form-area {
        padding: 50px 25px;
    }


    /* STICKY BAR */

    .sticky-contact-bar {
        width: calc(100% - 20px);

        bottom: 10px;
    }

    .sticky-btn {
        min-width: 0;

        flex: 1;

        padding: 12px 8px;

        font-size: 9px;
    }

    .sticky-btn i {
        font-size: 14px;
    }

    .interest {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    /* HEADER */

    header {
        height: 70px;

        padding: 0 15px;
    }

    .logo {
        width: 135px;
        height: 50px;
    }

    .logo img {
        width: 135px;
        max-width: 135px;
        max-height: 50px;
    }

    nav {
        top: 70px;
    }

    .menu-btn {
        width: 44px;
        height: 40px;
    }


    /* HERO */

    .hero .right img {
        width: 100%;

        height: auto;

        object-fit: contain;
    }


    /* SECTIONS */

    .overview {
        padding: 50px 0;
    }

    .overview-content h1 {
        font-size: 30px;

        line-height: 1.2;
    }

    .overview-intro {
        font-size: 16px;
    }

    .floor-plan {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .floor-plan h2 {
        font-size: 30px;
    }

    .configuration {
        padding: 50px 0;
    }

    .video-section,
    .gallery-section,
    .location-advantage {
        padding: 50px 0;
    }



    /* CONTACT */

    .contact-form-area {
        padding: 40px 20px;
    }


    /* STICKY BAR */

    .sticky-contact-bar {
        width: calc(100% - 10px);

        bottom: 5px;
    }

    .sticky-btn {
        padding: 11px 5px;

        font-size: 8px;

        gap: 5px;
    }
}

/* =========================================================
   LEAD FORM POPUP
========================================================= */
/* =========================================================
   LEAD FORM POPUP
========================================================= */

.lead-popup {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 15px;

    background: rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    z-index: 99999;

    /* IMPORTANT */
    overflow: hidden;
}

.lead-popup.active {
    display: flex;
}


/* =========================================================
   POPUP BOX
========================================================= */

.lead-popup-box {
    position: relative;

    width: 100%;
    max-width: 625px;

    /*
       FIT INSIDE SCREEN
    */
    max-height: calc(100vh - 30px);

    padding: 25px 30px 25px;

    background: var(--white);

    border-radius: 10px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);

    /*
       REMOVE SCROLLBAR
    */
    overflow: hidden;

    animation: leadPopupIn 0.3s ease;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.lead-popup-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 52px;
    height: 52px;

    border: 2px solid var(--black);

    border-radius: 50%;

    background: var(--white);

    color: var(--black);

    font-size: 28px;
    font-weight: 300;

    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;
}


/* =========================================================
   LOGO - SMALLER
========================================================= */

.lead-popup-logo {
    width: 170px;

    margin: 5px auto 20px;

    text-align: center;
}

.lead-popup-logo img {
    width: 100%;

    height: auto;

    max-height: 80px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   TITLE
========================================================= */

.lead-popup-box h2 {
    margin: 0 0 5px;

    color: var(--dark-text);

    text-align: center;

    font-size: 24px;

    line-height: 1.25;

    font-weight: 400;
}


.lead-popup-subtitle {
    max-width: 470px;

    margin: 0 auto 18px;

    color: var(--muted-text);

    text-align: center;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   INPUTS
========================================================= */

.lead-field {
    width: 100%;

    margin-bottom: 14px;
}

.lead-field input {
    width: 100%;

    height: 58px;

    padding: 0 18px;

    border: 0;

    border-radius: 7px;

    outline: none;

    background: #eeeeee;

    color: var(--dark-text);

    font-family: 'Poppins', sans-serif;

    font-size: 14px;
}

.lead-field input::placeholder {
    color: #777;

    opacity: 1;
}


/* =========================================================
   CONSENT
========================================================= */

.lead-consent {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin: 3px 0 18px;
}

.lead-consent input {
    appearance: none;
    -webkit-appearance: none;

    width: 19px;
    height: 19px;

    min-width: 19px;

    margin: 2px 0 0;

    border: 0;

    border-radius: 4px;

    background: var(--gold-dark);

    cursor: pointer;

    position: relative;
}

.lead-consent input:checked::after {
    content: "✓";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    color: #fff;

    font-size: 13px;

    font-weight: 700;
}

.lead-consent label {
    color: #777;

    font-size: 12px;

    line-height: 1.45;

    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.lead-submit {
    width: 100%;

    height: 56px;

    border: 0;

    border-radius: 6px;

    background: var(--gold-dark);

    color: var(--white);

    font-family: 'Poppins', sans-serif;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);
}

.lead-submit:hover {
    background: var(--black);

    color: var(--gold);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .lead-popup {
        padding: 10px;
    }

    .lead-popup-box {
        width: 100%;

        max-width: 100%;

        /*
           KEEP ENTIRE FORM INSIDE SCREEN
        */
        max-height: calc(100vh - 20px);

        padding: 22px 16px 18px;

        border-radius: 9px;

        overflow: hidden;
    }


    /* CLOSE */

    .lead-popup-close {
        top: 10px;
        right: 10px;

        width: 42px;
        height: 42px;

        font-size: 23px;
    }


    /* SMALL LOGO */

    .lead-popup-logo {
        width: 145px;

        margin: 5px auto 15px;
    }

    .lead-popup-logo img {
        max-height: 65px;
    }


    /* TITLE */

    .lead-popup-box h2 {
        font-size: 20px;

        margin-bottom: 4px;
    }


    .lead-popup-subtitle {
        font-size: 11px;

        margin-bottom: 14px;

        line-height: 1.4;
    }


    /* INPUTS */

    .lead-field {
        margin-bottom: 11px;
    }

    .lead-field input {
        height: 52px;

        padding: 0 14px;

        font-size: 13px;
    }


    /* CONSENT */

    .lead-consent {
        margin: 3px 0 15px;

        gap: 8px;
    }

    .lead-consent input {
        width: 18px;
        height: 18px;

        min-width: 18px;
    }

    .lead-consent label {
        font-size: 10.5px;

        line-height: 1.4;
    }


    /* SUBMIT */

    .lead-submit {
        height: 52px;

        font-size: 14px;
    }
}