:root {
    --primary: #09244d;
    --secondary: #e6a947;
    --text: #6d6c6a;
    --white: #ffffff;
    --light-gray: rgba(255, 255, 255, 0.82);
    --bg: #fffbf4;
    --border: #ececec;
    --shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.08);
    --transition: all 0.35s ease;
    --body-font: "Open Sans", sans-serif;
    --heading-font: "Noto Serif", serif;
}

/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

button,
input,
select {
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading-font);
    font-weight: 700;
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =====================================================
   BUTTONS
===================================================== */

.pilled-btn {
    background: var(--secondary);
    color: var(--primary);
    border: 0;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(22, 39, 63, 0.4);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.pilled-btn:hover {
    background: #f9ddae;
    transform: translateY(-3px);
}

.pilled-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* =====================================================
   SECTION
===================================================== */

section {
    padding: 110px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.left-align {
    margin-left: 0;
    text-align: left;
}

.section-tag {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(212, 175, 55, 0.12);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 400;
}

.section-heading h2 span {
    color: var(--secondary);
    font-weight: 600;
}

/* =====================================================
   HEADER
===================================================== */

header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #011026;
    z-index: 10000;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 5.5rem;
    position: relative;
}

.logo {
    height: 6rem;
    padding: 12px;
    position: relative;
    z-index: 10003;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.desktop-btn {
    position: relative;
    z-index: 10003;
}

/* =====================================================
   HAMBURGER
===================================================== */

.menu-toggle {
    width: 48px;
    height: 48px;
    border: 0;
    outline: none;
    background: transparent;
    cursor: pointer;

    display: none;

    position: relative;
    z-index: 10004;

    padding: 6px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 4px auto;
    border-radius: 5px;

    transition:
        transform 0.35s ease,
        opacity 0.25s ease;
}

/* =====================================================
   MENU OVERLAY
===================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;

    z-index: 10001;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =====================================================
   HERO
===================================================== */

.hero-banner {
    min-height: 100vh;
    background: url("../images/hero-banner.webp") center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(73deg,
            rgba(9, 25, 58, 0.9),
            rgba(222, 164, 67, 0.41));
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 6rem;
    align-items: center;

    position: relative;
    z-index: 2;
}

.hero-left-block {
    color: var(--light-gray);
}

.hero-left-block h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 20px 0;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 4px;
}

.hero-left-block h1 span {
    font-size: clamp(5rem, 10vw, 7rem);
    display: block;
    color: var(--secondary);
    font-weight: 800;
}

.highlights {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.counter-box {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 1.3rem;
    border-radius: 1rem;
    min-width: 8rem;
    backdrop-filter: blur(8px);
}

.counter-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

/* =====================================================
   FORM
===================================================== */

.enquiry-form,
.visit-form {
    background: rgba(1, 16, 38, 0.9);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.enquiry-form h3,
.visit-form h3, .visit-enquiry-form h3 {
    color: var(--secondary);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.enquiry-form p,
.visit-form p, .visit-enquiry-form p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.frm-group {
    margin-top: 1rem;
}

.frm-group input,
.frm-group select {
    width: 100%;
    height: 3.4rem;
    padding: 0 1rem;

    border: 1px solid var(--border);
    border-radius: 0.7rem;
    outline: none;

    font-size: 1rem;
    font-family: inherit;

    background: #fff;
    color: #222;
}

.frm-group input:focus,
.frm-group select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(230, 169, 71, 0.15);
}

.btn-submit {
    width: 100%;
    margin-top: 1.2rem;
    cursor: pointer;
    border-radius: 0.7rem;
}

/* =====================================================
   ABOUT
===================================================== */

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 1.5rem;
    display: block;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.highlights-row {
    display: flex;
    gap: 0.8rem;
    align-items: center;

    padding: 1rem;

    background: #f7f7f7;
    border-radius: 1rem;
    border: 1px solid #dadada;
}

.highlights-ico {
    font-size: 2rem;
}

/* =====================================================
   AMENITIES
===================================================== */

.amenities-section {
    background: var(--bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.amenity-card {
    position: relative;

    background: var(--white);

    padding: 2.2rem 1.8rem;

    border-radius: 1.2rem;

    overflow: hidden;

    transition: 0.4s;

    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow);
}

.amenity-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 0.3rem;

    background: linear-gradient(90deg,
            var(--secondary),
            var(--primary));
}

.amenity-card:hover {
    transform: translateY(-0.5rem);
}

.amenity-icon {
    width: 4.25rem;
    height: 4.25rem;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;

    background: rgba(13, 59, 102, 0.08);

    margin: 0 auto 1.5rem;
}

.amenity-card h3 {
    color: var(--primary);
}

/* =====================================================
   FLOOR PLANS
===================================================== */

.floor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.floor-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;

    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);

    transition: var(--transition);

    position: relative;

    border: 1px solid #dfdfdf;
}

.floor-card:hover {
    transform: translateY(-0.5rem);
}

.floor-card img {
    width: 100%;
    height: 15rem;

    object-fit: cover;
    display: block;

    transition: var(--transition);

    cursor: pointer;
}

.floor-card:hover img {
    transform: scale(1.08);
}

.floor-content {
    padding: 0.5rem 1rem;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(185 204 231 / 90%);
}

.floor-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
}

.floor-content p {
    font-size: 1rem;
    color: var(--primary);
}

/* =====================================================
   GALLERY POPUP
===================================================== */

.gallery-popup {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.95);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 0.35s;

    z-index: 20000;
}

.gallery-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-popup img {
    max-width: 85%;
    max-height: 85vh;

    border-radius: 0.6rem;

    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);

    background: #fff;
}

.close-popup {
    position: absolute;
    top: 1.5rem;
    right: 2rem;

    color: #fff;

    font-size: 3rem;

    cursor: pointer;

    z-index: 2;
}

.gal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 3.5rem;
    height: 3.5rem;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    color: #fff;

    font-size: 2rem;

    cursor: pointer;

    z-index: 2;
}

.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

/* =====================================================
   PRICING
===================================================== */

.pricing-section {
    background: rgba(237, 244, 254, 0.72);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: linear-gradient(to top,
            #fff 60%,
            #f3ebcf);

    border-radius: 0 0 1.5rem 1.5rem;

    padding: 2.5rem;

    text-align: left;

    box-shadow: var(--shadow);

    border-top: 4px solid var(--primary);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 600;
}

.pricing-size {
    padding: 1rem 0 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-price {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.price-btn {
    text-decoration: none;
    display: inline-block;

    padding: 0.7rem 2rem;

    border-radius: 3rem;

    background: var(--primary);
    color: #fff;

    transition: var(--transition);
}

.price-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* =====================================================
   VISIT
===================================================== */

.visit-wrapper {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 3rem;
    align-items: center;
}

.call-card {
    margin: 2rem 0;

    display: flex;
    align-items: center;

    gap: 1rem;

    padding: 1.5rem;

    background: var(--white);

    border-radius: 1rem;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.call-icon {
    width: 4rem;
    height: 4rem;

    display: grid;
    place-items: center;

    background: var(--secondary);
    color: #fff;

    font-size: 1.6rem;

    border-radius: 50%;
}

.call-card small {
    display: block;
}

.call-card a {
    text-decoration: none;

    font-size: 1.6rem;

    font-weight: 700;

    color: var(--primary);
}

.cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.cta-box ul {
    padding-left: 1.2rem;
    line-height: 2;
}

/* =====================================================
   SUCCESS MESSAGE
===================================================== */

.success-message {
    position: fixed;

    top: 20px;
    right: 20px;

    max-width: calc(100vw - 40px);

    background: #16a34a;
    color: #fff;

    padding: 15px 25px;

    border-radius: 8px;

    font-size: 1rem;

    transform: translateX(120%);

    transition: 0.4s;

    z-index: 30000;
}

.success-message.show {
    transform: translateX(0);
}
.text-link {
    border: 0;
    background: none;
    padding: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 15px;
    display: inline-block;
}
/* =====================================================
   MOBILE GET PLAN MODAL
===================================================== */

.mobile-plan-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.mobile-plan-modal.active {
    display: block;
}

.mobile-plan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.mobile-plan-content {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 50%;
    background: rgba(1, 16, 38, 0.9);
    border-radius: 20px;
    padding: 30px 20px 25px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.mobile-plan-modal.active .mobile-plan-content {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.mobile-plan-close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 36px;
    height: 36px;

    border: 0;
    border-radius: 50%;
    background: #f2f2f2;

    font-size: 18px;
    cursor: pointer;
}


/* Desktop: keep normal #contact behavior */
@media (min-width: 769px) {
    .mobile-plan-modal {
        display: none !important;
    }
}
body.modal-open {
    overflow: hidden;
}

/* =====================================================
   RERA
===================================================== */

.subfooter {
    background: #011026;

    padding: 1.5rem 0;

    width: 90%;

    margin: 0 auto;

    border-radius: 40px 40px 0 0;
}

.rerawrap {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 3rem;

    align-items: center;
}

.reraimg {
    width: 100px;
}

.reraimg img {
    width: 100%;
}

.rera-content p {
    color: var(--light-gray);
    margin-bottom: 10px;
    font-size: 1rem;
}

.rera-content p span,
.rera-content p a {
    color: var(--secondary);
}

/* =====================================================
   FOOTER
===================================================== */

.footer-section {
    background: linear-gradient(178deg,
            #032051 0%,
            #0d1b2a 100%);

    padding: 40px 0 35px;

    width: 100%;

    text-align: center;
}

.footer-nav ul {
    display: flex;

    justify-content: center;

    gap: 2rem;

    list-style: none;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.82);

    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.31);

    padding-top: 15px;

    margin-top: 20px;
}

.footer-bottom p {
    font-size: 1rem;
    color: var(--light-gray);
}

/* =====================================================
   FLOATING BUTTONS
===================================================== */

.whatsapp,
.back-to-top {
    position: fixed;

    right: 1.5rem;

    width: 2.8rem;
    height: 2.8rem;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    text-decoration: none;

    z-index: 9999;
}

.whatsapp {
    bottom: 5rem;

    background: #25d366;
    color: #fff;

    font-size: 1.5rem;
}

.back-to-top {
    bottom: 1rem;

    background: var(--secondary);
    color: #fff;
}
.mobile-btn { display: none;}
.mob-btngroup {
    display: none;
}

/* =====================================================
   TABLET / MOBILE MENU
===================================================== */

@media (max-width: 991px) {

    .desktop-btn {
        display: none;
    }

    /* -----------------------------
       HAMBURGER
    ----------------------------- */

    .menu-toggle {
        display: flex;
    }

    /* -----------------------------
       MOBILE MENU
    ----------------------------- */

    .nav-menu {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;

        width: min(320px, 85vw);

        height: 100dvh;

        background: #011026;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 7rem 2rem 2rem;

        gap: 0;

        transform: translate3d(100%, 0, 0);

        visibility: hidden;

        opacity: 0;

        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0.35s ease;

        z-index: 10002;

        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);

        overflow-y: auto;

        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        transform: translate3d(0, 0, 0);

        visibility: visible;

        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-menu a {
        display: block;

        width: 100%;

        font-size: 1.05rem;

        padding: 1rem 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .mobile-btn {
        display: block;

        margin-top: 1.2rem;

        background: var(--secondary);

        color: #000 !important;

        text-align: center;

        padding: 1rem;

        border-radius: 50px;

        border: none;
    }

    /* -----------------------------
       HAMBURGER ACTIVE
    ----------------------------- */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* -----------------------------
       LAYOUT
    ----------------------------- */

    .hero-content,
    .about-section .container {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        padding: 6rem 0;

        min-height: auto;
    }

    .about-image {
        width: 100%;
    }

    .amenities-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    html {
        font-size: 90%;
    }

    section {
        padding: 70px 0;
    }

    .hero-content {
        gap: 3rem;
    }

    .hero-left-block h1 span {
        font-size: clamp(4rem, 18vw, 6rem);
    }

    .highlights-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 2.5rem;
    }

    .enquiry-form,
    .visit-form {
        padding: 2rem;
    }

    .floor-card img {
        height: 13rem;
    }

    .gallery-popup img {
        max-width: 95%;
        max-height: 80vh;
    }

    .close-popup {
        right: 1rem;
        top: 0.5rem;
        font-size: 2.5rem;
    }

    .gal-nav {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .prev {
        left: 0.7rem;
    }

    .next {
        right: 0.7rem;
    }

    .rerawrap {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 1rem;
    }

    .reraimg {
        margin: auto;
    }

    .subfooter {
        width: 100%;

        border-radius: 0;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .highlights-list,
    .amenities-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .highlights {
        flex-direction: column;
    }

    .counter-box {
        width: 100%;
    }
    .mob-btngroup {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        position: fixed;
        bottom: 0;
        width: 70%;
        align-items: center;
        margin: 0 auto;
        left: 0;
        right: 0;
        z-index: 99;
    }

    .whatsapp {
        display: none;
    }

    .mob-btn {
        font-size: 1rem;
        line-height: 1;
        font-weight: 600;
        color: var(--light-gray);
        text-align: center;
        text-decoration: none;
        display: inline-block;
        padding: 10px 20px;
    }

    .mob-btnspan {
        padding-right: 10px;
    }

    .callbtn {
        background-color: #1b3365;
    }

    .whatapbtn {
        background-color: #16a34a;
    }

    .footer-section {
        padding: 40px 0 75px;
    }

    .back-to-top {
        right: 0;
        bottom: 0;
        border-radius: 0;
    }
    .mobnone {
        display: none;
    }
}

/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .logo {
        height: 5rem;
    }

    .enquiry-form,
    .visit-form {
        padding: 1.5rem;
    }

    .pilled-btn {
        width: 100%;
        text-align: center;
    }

    .footer-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .call-card a {
        font-size: 1.2rem;
    }

    .nav-menu {
        width: 88vw;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .back-to-top {
        bottom: 2.6rem;
    }
}
@media (max-width: 400px) {
    .mob-btngroup {
        width: 100%;
    }
}
@media (max-width: 360px) {
    .hero-left-block h1 span {
        font-size: clamp(4rem, 10vw, 8rem);
    }
}

/* =====================================================
   MOBILE MENU FIX
===================================================== */

@media (max-width: 991px) {

    header {
        position: sticky;
        z-index: 10000;
    }

    .nav {
        position: relative;
        z-index: 10000;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 10004;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .nav-menu {
        z-index: 10003;
    }

    .menu-overlay {
        z-index: 10001;
    }

}

@media (min-width: 992px) {

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        transform: none;
        visibility: visible;
    }

    .menu-overlay {
        display: none;
    }

}