:root {
    --orange: #fa4616;
    --charcoal: #231f20;
    --cream: #f8f5f1;
    --muted: #777;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--charcoal);
    background: #fff;
}
.serif {
    font-family: "Playfair Display", serif;
}
.navbar {
    transition: 0.35s;
    background: transparent;
    padding: 22px 0;
}
.navbar.scrolled {
    background: rgba(35, 31, 32, 0.97);
    padding: 12px 0;
    box-shadow: 0 8px 30px #0002;
}
.brand {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff !important;
}
.brand span {
    color: var(--orange);
}
.nav-link {
    color: #fff !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 9px;
}
.btn-main {
    background: var(--orange);
    color: #fff;
    border: 1px solid var(--orange);
    padding: 13px 23px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-main:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-light {
    border-radius: 0;
    padding: 13px 23px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    background: #222;
}
.hero-slide {
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000a, #0002 65%, #0005);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 20vh;
    max-width: 720px;
}
.eyebrow {
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}
.hero h1 {
    font-size: clamp(48px, 7vw, 100px);
    line-height: 1.03;
    margin: 18px 0;
}
.hero p {
    font-size: 17px;
    max-width: 520px;
    color: #eee;
}
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}
.section {
    padding: 105px 0;
}
.section-dark {
    background: var(--charcoal);
    color: #fff;
}
.section-cream {
    background: var(--cream);
}
.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 58px);
    line-height: 1.1;
    margin: 12px 0 25px;
}

#about .section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 35px);
    line-height: 1.1;
    margin: 12px 0 25px;
}



.section-copy {
    color: var(--muted);
    line-height: 1.9;
}
.section-dark .section-copy {
    color: #c9c4c4;
}
.about-img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}
.mini-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
}
.highlight {
    padding: 28px 18px;
    border-top: 1px solid #ffffff35;
}
.highlight strong {
    font-size: 30px;
    font-family: "Playfair Display", serif;
    display: block;
}
.highlight span {
    font-size: 12px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.feature-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 32px 25px;
    height: 100%;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 18px 45px #231f2014;
}
.feature-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid #ffd0c3;
    color: var(--orange);
    font-size: 25px;
    margin-bottom: 25px;
    transition: 0.4s;
}
.feature-card:hover .feature-icon {
    background: var(--orange);
    color: #fff;
    transform: rotateY(180deg);
}
.feature-card h5 {
    font-family: "Playfair Display", serif;
    font-size: 23px;
}
.feature-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}
.plan-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    height: 100%;
}
.plan-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}
.plan-body {
    padding: 25px;
}
.location-map {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}
.advantage {
    display: flex;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid #ffffff25;
}
.advantage i {
    color: var(--orange);
    margin-top: 4px;
}
.cta {
    background:
        linear-gradient(90deg, #231f20ef, #231f20aa),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2000&q=85")
            center/cover;
    padding: 100px 0;
    color: #fff;
}
.footer {
    background: #181516;
    color: #bdb5b5;
    padding: 65px 0 0;
}
.footer h5 {
    color: #fff;
    font-family: "Playfair Display", serif;
}
.footer a {
    color: #bdb5b5;
    text-decoration: none;
    display: block;
    margin: 9px 0;
    font-size: 14px;
}
.disclaimer {
    border-top: 1px solid #ffffff1f;
    margin-top: 45px;
    padding: 25px 0;
    font-size: 12px;
    line-height: 1.8;
    color: #999;
}
.copyright {
    border-top: 1px solid #ffffff1f;
    padding: 20px 0;
    font-size: 12px;
    color: #aaa;
}
.float-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 1000;
    text-decoration: none;
}
.float-call {
    background: var(--orange);
    bottom: 78px;
}
.float-wa {
    background: #25d366;
}
.modal-content {
    border: 0;
    border-radius: 0;
}
.modal-header {
    background: var(--charcoal);
    color: #fff;
    border-radius: 0;
}
.form-control,
.form-select {
    border-radius: 0;
    padding: 13px;
}
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.8s,
        transform 0.8s;
}
.reveal.show {
    opacity: 1;
    transform: none;
}
@media (max-width: 991px) {
    .navbar {
        background: var(--charcoal);
        padding: 13px 0;
    }
    .hero-content {
        padding: 38vh 22px 0;
    }
    .section {
        padding: 75px 0;
    }
    .about-img {
        height: 380px;
    }
    .nav-link {
        padding: 12px 0;
    }
    .navbar-collapse {
        padding: 20px 0;
    }
    .hero p {
        font-size: 15px;
    }
}
@media (max-width: 575px) {
    .hero,
    .hero-slide {
        min-height: 650px;
    }
    .hero h1 {
        font-size: 52px;
    }
    .section-title {
        font-size: 39px;
    }
    .hero-content {
        padding-top: 35vh;
    }
    .about-img {
        height: 300px;
    }
    .feature-card {
        padding: 25px 20px;
    }
}


/* =========================================
   LUXURY HERO PROJECT DETAILS
========================================= */

.hero-project-details {
    margin-top: 28px;
    max-width: 850px;
}

/* Project Name */

.hero-project-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #d6b477;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Address */

.hero-address {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 8px;
}

/* RERA Number */

.hero-rera {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Specifications */

.hero-specifications {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    margin-top: 10px;
}

/* Each Specification */

.hero-spec-item {
    padding: 0 28px;
    border-left: 1px solid rgba(214, 180, 119, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Remove left padding from first item */

.hero-spec-item:first-child {
    padding-left: 0;
    border-left: none;
}

/* Labels */

.spec-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Values */

.spec-value {
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #ffffff;
    white-space: nowrap;
}

/* Description */

.hero-description {
    max-width: 580px;
    margin-top: 30px;
    margin-bottom: 28px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.82);
}

/* Buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Luxury Button */



/* Mobile Responsive */

@media (max-width: 767px) {

    .hero-project-details {
        margin-top: 20px;
    }

    .hero-project-name {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-address {
        font-size: 12px;
        line-height: 1.6;
    }

    .hero-rera {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .hero-specifications {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .hero-spec-item {
        padding: 0 10px;
        min-width: 0;
    }

    .hero-spec-item:first-child {
        padding-left: 0;
    }

    .spec-label {
        font-size: 8px;
        letter-spacing: 0.8px;
        margin-bottom: 6px;
    }

    .spec-value {
        font-size: 10px;
        white-space: normal;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 12px;
        line-height: 1.8;
        margin-top: 25px;
        margin-bottom: 22px;
    }

    .hero-buttons .btn {
        padding: 11px 18px;
        font-size: 10px;
    }

}


.hero-content {
    text-align: center;
    margin: 0 auto;
}

.hero-project-details {
    margin: 28px auto 0;
    max-width: 900px;
}

.hero-address {
    font-size: 15px;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.hero-rera {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.hero-specifications {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
}

.hero-spec-item {
    padding: 0 32px;
    border-left: 1px solid rgba(214, 180, 119, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-spec-item:first-child {
    border-left: none;
}

.spec-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}

.spec-value {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.hero-description {
    max-width: 580px;
    margin: 30px auto 28px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 767px) {

    .hero-project-details {
        margin-top: 20px;
        padding: 0 10px;
    }

    .hero-address {
        font-size: 12px;
        line-height: 1.6;
    }

    .hero-rera {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 22px;
    }

    .hero-specifications {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .hero-spec-item {
        padding: 0 8px;
    }

    .spec-label {
        font-size: 8px;
        letter-spacing: 0.8px;
        margin-bottom: 6px;
    }

    .spec-value {
        font-size: 10px;
        line-height: 1.5;
        white-space: normal;
    }

    .hero-description {
        font-size: 12px;
        line-height: 1.8;
        margin: 24px auto;
    }

}

/* =========================================
   LUXURY HERO OVERLAY
========================================= */

.hero-slide {
    position: relative;
}

/* Dark luxury overlay over image */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.38) 50%,
            rgba(0, 0, 0, 0.58) 100%
        );
}

/* Extra bottom/top cinematic shade */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.30),
            transparent 35%,
            rgba(0, 0, 0, 0.45) 100%
        );
}

/* Keep content above overlay */
.hero-slide .hero-content {
    position: relative;
    z-index: 2;
}


/* =========================================
   PROJECT INFORMATION GLASS PANEL
========================================= */

.hero-project-details {
    position: relative;
    max-width: 950px;
    margin: 28px auto 0;

    padding: 22px 35px;

    /* Transparent luxury glass */
    background: rgba(15, 15, 15, 0.38);

    /* Glass blur */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Elegant border */
    border: 1px solid rgba(255, 255, 255, 0.20);

    /* Luxury shadow */
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    border-radius: 2px;
}


/* =========================================
   PROJECT NAME
========================================= */

.hero-project-details::before {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    background: #c9a66b;
    margin: 0 auto 15px;
}

.hero-project-name {
    color: #d5b277;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* =========================================
   ADDRESS
========================================= */

.hero-address {
    margin-top: 8px;
    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.95);

    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.7px;
}


/* =========================================
   RERA
========================================= */

.hero-rera {
    margin-bottom: 22px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 10px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


/* =========================================
   SPECIFICATIONS
========================================= */

.hero-specifications {
    display: flex;
    justify-content: center;
    align-items: stretch;

    margin: 0 auto;
}

.hero-spec-item {
    min-width: 180px;

    padding: 2px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-left: 1px solid rgba(213, 178, 119, 0.45);
}

.hero-spec-item:first-child {
    border-left: none;
}


/* Labels */

.spec-label {
    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;

    text-transform: uppercase;
}


/* Values */

.spec-value {
    color: #ffffff;

    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;

    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-description {
    max-width: 620px;

    margin: 25px auto 25px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;

    letter-spacing: 0.3px;

    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}


/* =========================================
   LUXURY BUTTON
========================================= */




/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-slide::before {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.62),
                rgba(0, 0, 0, 0.52)
            );
    }

    .hero-project-details {
        max-width: calc(100% - 20px);

        margin: 20px auto 0;

        padding: 18px 12px;

        background: rgba(10, 10, 10, 0.48);

        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
    }

    .hero-project-details::before {
        width: 35px;
        margin-bottom: 12px;
    }

    .hero-project-name {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-address {
        font-size: 11px;
        line-height: 1.6;
    }

    .hero-rera {
        font-size: 8px;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

    .hero-specifications {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .hero-spec-item {
        min-width: 0;
        padding: 2px 7px;
    }

    .spec-label {
        font-size: 7px;
        letter-spacing: 0.7px;
        margin-bottom: 5px;
    }

    .spec-value {
        font-size: 10px;
        line-height: 1.4;
    }

    .hero-description {
        max-width: 340px;

        margin: 20px auto;

        font-size: 11px;
        line-height: 1.7;
    }

}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    --bs-gutter-x: 3rem;
}

/* =========================================
   LUXURY PROJECT HIGHLIGHTS
========================================= */

.luxury-highlights {
    position: relative;
    overflow: hidden;
}

/* Subtle background glow */

.luxury-highlights::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    top: -250px;
    right: -200px;

    background: rgba(197, 161, 106, 0.06);

    border-radius: 50%;

    pointer-events: none;
}

.luxury-highlights .container {
    position: relative;
    z-index: 2;
}


/* Heading */

.luxury-highlights .mini-label {
    color: var(--orange);    
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.luxury-highlights .section-title {
    margin-bottom: 18px;
}

.luxury-highlights .section-title span {
    color: var(--orange);;
}

.highlights-intro {
    max-width: 580px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   HIGHLIGHT CARD
========================================= */

.luxury-highlight-card {
    position: relative;

    height: 100%;

    padding: 38px 30px 32px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.10);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    overflow: hidden;
}


/* Gold line */

.luxury-highlight-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--orange);;

    transition: width 0.35s ease;
}


/* Hover */

.luxury-highlight-card:hover {
    transform: translateY(-8px);

    background: rgba(197, 161, 106, 0.08);

    border-color: rgba(197, 161, 106, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.22);
}

.luxury-highlight-card:hover::before {
    width: 100%;
}


/* =========================================
   ICON
========================================= */

.highlight-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border: 1px solid rgba(197, 161, 106, 0.45);

    border-radius: 50%;

    color: var(--orange);;

    font-size: 22px;

    background: rgba(197, 161, 106, 0.06);

    transition: all 0.35s ease;
}

.luxury-highlight-card:hover .highlight-icon {
    background: var(--orange);;
    color: #ffffff;

    transform: rotateY(180deg);
}


/* =========================================
   NUMBER
========================================= */

.highlight-number {
    position: absolute;

    top: 25px;
    right: 25px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.20);
}


/* =========================================
   TITLE
========================================= */

.luxury-highlight-card h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-family: inherit;

    font-size: 18px;
    font-weight: 500;

    letter-spacing: 0.2px;
}


/* =========================================
   DESCRIPTION
========================================= */

.luxury-highlight-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .luxury-highlights {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .highlights-intro {
        padding: 0 15px;
        font-size: 12px;
    }

    .luxury-highlight-card {
        padding: 28px 24px;
    }

    .highlight-icon {
        width: 52px;
        height: 52px;

        font-size: 19px;

        margin-bottom: 20px;
    }

    .luxury-highlight-card h3 {
        font-size: 16px;
    }

    .luxury-highlight-card p {
        font-size: 12px;
    }

}

/* ==========================================
   FLOOR PLAN SECTION
========================================== */

.floorplan-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.floorplan-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}

.floorplan-heading-copy {
    max-width: 300px;
    text-align: right;
    padding-bottom: 5px;
}

.floorplan-heading-copy span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 6px;
}

.floorplan-heading-copy strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    color: #292722;
}


/* ==========================================
   FLOOR PLAN CARD
========================================== */

.floorplan-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(35, 33, 29, 0.10);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
    overflow: hidden;
}

.floorplan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(25, 23, 18, 0.12);
}


/* ==========================================
   IMAGE
========================================== */

.floorplan-image {
    position: relative;
    height: 310px;
    overflow: hidden;
    background: #ddd;
}

.floorplan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.floorplan-card:hover .floorplan-image img {
    transform: scale(1.07);
}


/* Dark gradient */

.floorplan-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 14, 12, 0.68),
        rgba(15, 14, 12, 0.05) 55%,
        transparent
    );
    pointer-events: none;
}


/* ==========================================
   PLAN NUMBER
========================================== */

.plan-number {
    position: absolute;
    left: 22px;
    top: 22px;
    z-index: 3;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.65);
    color: #fff;

    font-size: 12px;
    letter-spacing: 1px;

    backdrop-filter: blur(8px);
    background: rgba(20,20,18,0.20);
}


/* ==========================================
   FEATURED TAG
========================================== */

.featured-tag {
    position: absolute;
    right: 20px;
    top: 22px;
    z-index: 4;

    padding: 8px 13px;

    background: #fff;
    color: #292722;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ==========================================
   IMAGE HOVER BUTTON
========================================== */

.plan-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    display: flex;
    justify-content: center;

    transform: translateY(20px);
    opacity: 0;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.floorplan-card:hover .plan-image-overlay {
    opacity: 1;
    transform: translateY(-24px);
}

.view-plan-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    background: #fff;
    color: #24221e;

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.view-plan-btn:hover {
    background: #24221e;
    color: #fff;
}

.view-icon {
    width: 23px;
    height: 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;

    font-size: 13px;
}


/* ==========================================
   CONTENT
========================================== */

.floorplan-content {
    padding: 27px 28px 24px;
}

.plan-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.plan-label {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;

    color: #9a9389;
}

.plan-top h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;

    color: #292722;
}


/* BHK badge */

.plan-badge {
    flex-shrink: 0;

    padding: 7px 10px;

    border: 1px solid #d9d5cd;

    color: #777168;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ==========================================
   DIVIDER
========================================== */

.plan-divider {
    width: 100%;
    height: 1px;

    margin: 23px 0;

    background: #e8e5df;
}


/* ==========================================
   DETAILS
========================================== */

.plan-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.plan-detail {
    position: relative;
}

.plan-detail + .plan-detail {
    border-left: 1px solid #e5e1da;
    padding-left: 20px;
}

.detail-label {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.3px;

    color: #9a9389;
}

.plan-detail strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    font-weight: 400;

    color: #292722;
}


/* ==========================================
   BOTTOM LINK
========================================== */

.plan-bottom-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
    padding-top: 18px;

    border-top: 1px solid #e8e5df;

    text-decoration: none;

    color: #292722;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: color 0.3s ease;
}

.plan-bottom-link span {
    font-size: 18px;
    font-weight: 300;

    transition: transform 0.3s ease;
}

.plan-bottom-link:hover {
    color: #8c7658;
}

.plan-bottom-link:hover span {
    transform: translateX(6px);
}


/* ==========================================
   NOTE
========================================== */

.floorplan-note {
    margin-top: 30px;

    text-align: center;

    color: #9a9389;

    font-size: 10px;
    letter-spacing: 0.5px;
}


/* ==========================================
   FANCYBOX CUSTOMIZATION
========================================== */

.fancybox__container {
    --fancybox-bg: rgba(15, 14, 12, 0.96);
}

.fancybox__caption {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .floorplan-heading {
        margin-bottom: 40px;
    }

    .floorplan-image {
        height: 280px;
    }

    .floorplan-content {
        padding: 24px;
    }

}


@media (max-width: 767px) {

    .floorplan-heading {
        display: block;
    }

    .floorplan-heading-copy {
        max-width: 100%;
        text-align: left;
        margin-top: 18px;
    }

    .floorplan-image {
        height: 300px;
    }

    .plan-image-overlay {
        opacity: 1;
        transform: translateY(-20px);
    }

}


@media (max-width: 480px) {

    .floorplan-image {
        height: 260px;
    }

    .floorplan-content {
        padding: 22px 20px;
    }

    .plan-top h3 {
        font-size: 22px;
    }

    .plan-details {
        gap: 10px;
    }

    .plan-detail + .plan-detail {
        padding-left: 14px;
    }

}
.masterplan-section { padding: 110px 0; --light: #f7f5f3;}
.master-faq-section { --orange: #fa4616; --dark: #231f20; --white: #ffffff; --light: #f7f5f3; position: relative; overflow: hidden; padding: 110px 0; background: var(--light); } /* ========================================================= SECTION HEADER ========================================================= */ .mf-section-heading { max-width: 760px; margin: 0 auto 70px; text-align: center; } .mf-eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; } .mf-eyebrow > span { width: 28px; height: 2px; display: inline-block; background: var(--orange); } .mf-section-heading h2 { margin: 18px 0 15px; color: var(--dark); font-size: clamp(38px, 5vw, 64px); line-height: 1; font-weight: 800; letter-spacing: -2px; } .mf-section-heading h2 em { color: var(--orange); font-style: normal; } .mf-section-heading p { max-width: 600px; margin: 0 auto; color: #777; font-size: 16px; line-height: 1.8; } /* ========================================================= MASTER PLAN ========================================================= */ .master-plan-wrapper { position: relative; } .master-plan-card { position: relative; z-index: 2; overflow: hidden; background: var(--light); border-radius: 24px; padding: 14px; box-shadow: 0 25px 70px rgba(35, 31, 32, 0.18); transition: transform .5s ease, box-shadow .5s ease; } .master-plan-card:hover { transform: translateY(-8px); box-shadow: 0 35px 90px rgba(35, 31, 32, 0.25); } /* TOP */ .master-plan-top { display: flex; align-items: center; justify-content: space-between; padding: 22px 20px 20px; } .mp-small-title { display: block; margin-bottom: 5px; color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: 2px; } .master-plan-top h3 { margin: 0; color: #000; font-size: 28px; font-weight: 700; } .mp-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(250, 70, 22, .4); border-radius: 50%; color: var(--orange); font-size: 18px; transition: .4s ease; } .master-plan-card:hover .mp-icon { background: var(--orange); color: #fff; transform: rotate(10deg); } /* IMAGE */ .master-plan-image { position: relative; overflow: hidden; min-height: 350px; border-radius: 16px; background: #eee; cursor: pointer; } .master-plan-image img { width: 100%; height: 350px; display: block; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); } .master-plan-card:hover .master-plan-image img { transform: scale(1.07); } .mp-image-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(35, 31, 32, .35); opacity: 0; transition: .4s ease; } .master-plan-card:hover .mp-image-overlay { opacity: 1; } .mp-image-overlay span { display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: 50px; background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .5px; transform: translateY(20px); transition: .4s ease; } .master-plan-card:hover .mp-image-overlay span { transform: translateY(0); } /* BOTTOM INFO */ .master-plan-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 22px 10px 10px; } .mp-info { display: flex; align-items: center; gap: 12px; } .mp-info > i { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 10px; background: rgba(250, 70, 22, .12); color: var(--orange); } .mp-info small { display: block; margin-bottom: 3px; color: #999; font-size: 8px; letter-spacing: 1.5px; } .mp-info strong { color: #000; font-size: 12px; } /* DECORATIVE CIRCLES */ .mp-circle { position: absolute; z-index: 1; border: 1px solid rgba(250, 70, 22, .25); border-radius: 50%; pointer-events: none; animation: mpFloat 5s ease-in-out infinite; } .mp-circle-one { width: 130px; height: 130px; top: -55px; right: -55px; } .mp-circle-two { width: 80px; height: 80px; bottom: -25px; left: -30px; animation-delay: 1.5s; } @keyframes mpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } } /* ========================================================= FAQ ========================================================= */ .faq-wrapper { padding-left: 20px; } .faq-heading { margin-bottom: 30px; } .faq-heading h3 { margin: 14px 0 0; color: var(--dark); font-size: clamp(30px, 4vw, 45px); line-height: 1.05; font-weight: 700; letter-spacing: -1px; } .faq-heading h3 strong { color: var(--orange); } /* FAQ ITEM */ .faq-item { position: relative; margin-bottom: 10px; overflow: hidden; border: 1px solid rgba(35, 31, 32, .08); border-radius: 14px; background: #fff; transition: .4s ease; } .faq-item:hover { border-color: rgba(250, 70, 22, .25); transform: translateX(4px); } .faq-item.active { border-color: var(--orange); box-shadow: 0 12px 35px rgba(250, 70, 22, .09); } /* QUESTION */ .faq-question { width: 100%; min-height: 72px; display: flex; align-items: center; gap: 16px; padding: 12px 15px; border: 0; background: transparent; color: var(--dark); text-align: left; cursor: pointer; } .faq-number { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 10px; background: #f5f3f1; color: #888; font-size: 11px; font-weight: 700; transition: .4s ease; } .faq-item.active .faq-number { background: var(--orange); color: #fff; } .faq-title { flex: 1; padding-right: 5px; font-size: 14px; font-weight: 700; line-height: 1.5; } .faq-toggle { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 50%; background: #f5f3f1; color: var(--dark); font-size: 11px; transition: .4s ease; } .faq-item.active .faq-toggle { background: var(--dark); color: var(--orange); transform: rotate(180deg); } /* ANSWER */ .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s ease; } .faq-item.active .faq-answer { grid-template-rows: 1fr; } .faq-answer-inner { min-height: 0; overflow: hidden; } .faq-answer p { margin: 0; padding: 0 25px 22px 73px; color: #777; font-size: 13px; line-height: 1.8; } /* ========================================================= LIGHTBOX ========================================================= */ .master-plan-lightbox { position: fixed; z-index: 99999; inset: 0; display: flex; align-items: center; justify-content: center; padding: 40px; background: rgba(35, 31, 32, .94); opacity: 0; visibility: hidden; transition: .4s ease; } .master-plan-lightbox.show { opacity: 1; visibility: visible; } .master-plan-lightbox img { max-width: 95%; max-height: 90vh; object-fit: contain; border-radius: 10px; box-shadow: 0 20px 80px rgba(0,0,0,.5); transform: scale(.9); transition: .5s ease; } .master-plan-lightbox.show img { transform: scale(1); } .mp-lightbox-close { position: absolute; top: 25px; right: 30px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: #fff; font-size: 18px; cursor: pointer; transition: .3s ease; } .mp-lightbox-close:hover { background: var(--orange); border-color: var(--orange); transform: rotate(90deg); } /* ========================================================= SCROLL REVEAL ========================================================= */ .reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); } .reveal.revealed { opacity: 1; transform: translateY(0); } /* ========================================================= RESPONSIVE ========================================================= */ @media (max-width: 991px) { .master-faq-section { padding: 80px 0; } .faq-wrapper { padding-left: 0; } .master-plan-wrapper { margin-bottom: 25px; } } @media (max-width: 575px) { .master-faq-section { padding: 65px 0; } .mf-section-heading { margin-bottom: 45px; } .master-plan-image, .master-plan-image img { height: 280px; min-height: 280px; } .master-plan-bottom { grid-template-columns: 1fr; } .faq-question { gap: 10px; } .faq-number { width: 36px; height: 36px; } .faq-title { font-size: 13px; } .faq-answer p { padding-left: 61px; padding-right: 20px; } .master-plan-lightbox { padding: 20px; } } /* ACCESSIBILITY */ @media (prefers-reduced-motion: reduce) { .master-plan-card, .master-plan-image img, .faq-item, .mp-circle, .reveal { animation: none !important; transition: none !important; } }

.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

#heroSlider {
    height: 100%;
}

#heroSlider .carousel-inner,
#heroSlider .carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay on images */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Content appears only once */
.hero-overlay-content {
    position: absolute;
    inset: 0;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
    pointer-events: none;
    margin-top:0px;
}

.hero-overlay-content .container {
    pointer-events: auto;
}

.hero-project-details {
    margin: 20px auto;
}

.hero-address {
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-rera {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-specifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.hero-spec-item {
    min-width: 180px;
    padding: 0 30px;
    border-right: 1px solid rgba(255,255,255,0.5);
}

.hero-spec-item:last-child {
    border-right: none;
}

.spec-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.spec-value {
    display: block;
    font-size: 17px;
    font-weight: 600;
}

.hero-description {
    max-width: 650px;
    margin: 25px auto;
    font-size: 16px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 767px) {

    .hero {
        min-height: 845px;
    }

    .hero-specifications {
        flex-direction: column;
    }

    .hero-spec-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.4);
        padding: 8px 20px;
        min-width: 220px;
    }

    .hero-spec-item:last-child {
        border-bottom: none;
    }

    .hero-address {
        font-size: 15px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

#aboutcontent {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    z-index: 9999;

    transform: translateX(100%);
    opacity: 0;

    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.4s ease;

    overflow-y: auto;
    padding: 50px 40px;

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

#aboutcontent.show {
    transform: translateX(0);
    opacity: 1;
}

.btn-read-more {
    transition: all 0.3s ease;
}

.btn-read-more span {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.4s ease;
}

.btn-read-more.active span {
    transform: rotate(45deg);
}

.about-close {
    position: absolute;
    top: 20px;
    right: 25px;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;

    font-size: 26px;
    line-height: 40px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.about-close:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mp-circle-one{
        display:none;
    }
    
    .mp-circle-two{
        display:none;
    }

}

