:root {
    --ink: #0a1628;
    --ink-soft: #475e76;
    --paper: #f0f4f8;
    --white: #ffffff;
    --forest: #2563eb;
    --forest-light: #1d4ed8;
    --coral: #f43f5e;
    --gold: #38bdf8;
    --line: rgba(10, 22, 40, 0.12);
    --shadow: 0 18px 60px rgba(10, 22, 40, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 6px 24px rgba(17, 37, 33, 0.08);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    width: 205px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: 58px;
    object-fit: contain;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--coral);
    transition: right 180ms ease;
}

.main-nav a:hover::after {
    right: 0;
}

.button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
    background: #e11d48;
    transform: translateY(-2px);
}

.button svg {
    width: 18px;
}

.button-small {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.84rem;
}

.header-qr {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex: 0 0 auto;
}

.intro-logo {
    width: auto;
    max-height: 120px;
    object-fit: contain;
    margin-right: 16px;
}

.intro-qr {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
}

.intro-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.icon-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

.hero {
    min-height: 780px;
    height: 100vh;
    max-height: 960px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    overflow: hidden;
    background: var(--ink);
}

.hero-poster,
.hero-media iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.hero-poster {
    object-fit: cover;
    object-position: center;
}

.hero-media iframe {
    min-width: 177.78vh;
    min-height: 56.25vw;
    border: 0;
    pointer-events: none;
}

.hero-shade {
    background: linear-gradient(90deg, rgba(5, 21, 18, 0.86) 0%, rgba(5, 21, 18, 0.55) 42%, rgba(5, 21, 18, 0.08) 74%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.eyebrow {
    margin: 0 0 18px;
    color: #bae6fd;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--coral);
}

.hero h1 {
    max-width: 800px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 570px;
    margin: 26px 0 0;
    font-size: 1.16rem;
    color: rgba(255, 255, 255, 0.83);
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.text-link svg {
    width: 17px;
}

.hero-facts {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 26px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    color: var(--ink);
}

.hero-facts div {
    padding-inline: 30px;
    border-left: 1px solid var(--line);
}

.hero-facts div:first-child {
    border-left: 0;
}

.hero-facts strong,
.hero-facts span {
    display: block;
}

.hero-facts strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.45rem;
}

.hero-facts span {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.section {
    padding: 112px 0;
}

.intro {
    background: var(--paper);
}

.intro-grid,
.section-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 90px;
    align-items: end;
}

h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.35rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.intro-copy,
.section-heading > p {
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.intro-copy p:first-child {
    margin-top: 0;
}

.overview-visual {
    margin-top: 66px;
    position: relative;
    min-height: 640px;
}

.overview-primary {
    width: 88%;
    height: 580px;
    object-fit: cover;
}

.overview-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    height: 310px;
    object-fit: cover;
    border: 10px solid var(--paper);
    box-shadow: var(--shadow);
}

.overview-note {
    position: absolute;
    left: 32px;
    bottom: 0;
    width: min(420px, calc(100% - 64px));
    padding: 24px 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.overview-note span,
.overview-note strong {
    display: block;
}

.overview-note span {
    color: var(--coral);
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
}

.overview-note strong {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    line-height: 1.35;
}

.residences {
    background: var(--white);
}

.section-heading {
    margin-bottom: 52px;
}

.section-heading.compact {
    margin-bottom: 60px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plan-card {
    min-height: 455px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    border-top: 4px solid transparent;
}

.plan-card.featured {
    background: var(--forest);
    color: var(--white);
    border-color: var(--gold);
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--coral);
    font-weight: 800;
}

.plan-card.featured .plan-top {
    color: #7dd3fc;
}

.plan-top svg {
    width: 30px;
    height: 30px;
}

.plan-card h3 {
    margin: 42px 0 4px;
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
}

.plan-card p {
    margin: 0;
    color: var(--ink-soft);
}

.plan-card.featured p {
    color: rgba(255, 255, 255, 0.68);
}

.plan-card ul {
    margin: 22px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
}

.plan-card li {
    padding: 7px 10px;
    border: 1px solid var(--line);
    font-size: 0.82rem;
}

.plan-card.featured li {
    border-color: rgba(255, 255, 255, 0.25);
}

.plan-card > a {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-weight: 800;
    text-decoration: none;
}

.plan-card.featured > a {
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-card > a svg {
    width: 18px;
}

.floor-plans-section {
    background: #e2e8f0;
}

.floor-plan-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.floor-plan-item {
    min-width: 0;
}

.floor-plan-item > button {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 37, 35, 0.12);
    background: #eef0eb;
    cursor: zoom-in;
}

.floor-plan-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 300ms ease;
}

.floor-plan-item > button:hover img {
    transform: scale(1.025);
}

.plan-zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--forest);
    color: var(--white);
}

.plan-zoom svg {
    width: 18px;
}

.floor-plan-caption {
    padding: 18px 2px 8px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.floor-plan-caption span {
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.floor-plan-caption h3 {
    margin: 2px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
}

.floor-plan-caption .plan-number {
    color: rgba(22, 37, 35, 0.32);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.floor-plan-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.84rem;
    transition: all 180ms ease;
}

.filter-btn:hover {
    border-color: var(--forest);
    color: var(--forest);
}

.filter-btn.active {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.floor-plan-footnote {
    margin-top: 34px;
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.floor-plan-footnote svg {
    width: 17px;
    flex: 0 0 auto;
}

.floor-plan-footnote p {
    margin: 0;
}

.amenities {
    background: var(--forest);
    color: var(--white);
}

.amenities .section-heading > p {
    color: rgba(255, 255, 255, 0.65);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.amenity-item {
    min-height: 205px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.amenity-item > svg {
    width: 30px;
    height: 30px;
    color: #7dd3fc;
}

.amenity-item h3 {
    margin: 24px 0 4px;
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
}

.amenity-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.technical-strip {
    padding: 24px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gallery-section {
    background: var(--paper);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #ddd;
    cursor: zoom-in;
}

.gallery-item.item-1,
.gallery-item.item-6 {
    grid-row: span 2;
}

.gallery-item.item-2 {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.gallery-item span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item span svg {
    width: 17px;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}

.location {
    padding: 0;
    background: #dbeafe;
}

.location-grid {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(420px, 0.78fr) 1.22fr;
}

.location-content {
    padding: 100px max(40px, calc((100vw - 1180px) / 2));
    padding-right: 64px;
    background: var(--ink);
    color: var(--white);
}

.location-list {
    margin: 42px 0 34px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
    list-style: none;
}

.location-list li {
    display: flex;
    gap: 13px;
}

.location-list svg {
    width: 21px;
    flex: 0 0 auto;
    color: #7dd3fc;
}

.location-list strong,
.location-list span {
    display: block;
}

.location-list strong {
    font-size: 0.9rem;
}

.location-list span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}

.location-content address {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    font-style: normal;
}

.map-wrap {
    min-height: 680px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 680px;
    border: 0;
    filter: saturate(0.65) contrast(0.95);
}

.enquiry {
    padding: 110px 0;
    background: var(--coral);
    color: var(--white);
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}

.enquiry-copy > p:not(.eyebrow) {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
}

.enquiry .eyebrow {
    color: #1e3a5f;
}

.rera {
    margin-top: 38px;
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.rera span {
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.rera strong {
    font-size: 1.1rem;
}

.rera a {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
}

.rera svg {
    width: 15px;
}

.rera-qr {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.enquiry-form {
    padding: 36px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.enquiry-form label > span,
.enquiry-form legend {
    display: block;
    margin-bottom: 7px;
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.enquiry-form > label,
.enquiry-form .form-row {
    margin-bottom: 18px;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="tel"],
.enquiry-form input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: none;
}

.enquiry-form input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 97, 79, 0.13);
}

.enquiry-form input.is-invalid {
    border-color: #c94a3d;
    box-shadow: 0 0 0 3px rgba(201, 74, 61, 0.12);
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #9d352a;
    font-size: 0.78rem;
    line-height: 1.35;
}

.enquiry-form fieldset.is-invalid legend {
    color: #9d352a;
}

.enquiry-form fieldset {
    margin: 0 0 22px;
    padding: 0;
    border: 0;
}

.choice-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.choice-row label {
    position: relative;
}

.choice-row input {
    position: absolute;
    opacity: 0;
}

.choice-row label span {
    height: 44px;
    margin: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
}

.choice-row input:checked + span {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
}

.form-submit {
    width: 100%;
    background: var(--forest);
}

.form-submit:hover:not(:disabled) {
    background: var(--forest-light);
}

.form-submit:disabled,
.form-submit.is-loading {
    opacity: 0.72;
    cursor: wait;
}

.enquiry-form small {
    margin-top: 12px;
    display: block;
    color: #7b8784;
    text-align: center;
}

.form-message {
    margin-bottom: 18px;
    padding: 12px 14px;
    font-size: 0.86rem;
}

.form-message.success {
    background: #e2f3e9;
    color: #1f6a41;
}

.form-message.error {
    background: #fae6e2;
    color: #9d352a;
}

.site-footer {
    padding: 50px 0 24px;
    background: #0a1628;
    color: var(--white);
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 42px;
}

.footer-main img {
    width: 190px;
}

.footer-main p {
    max-width: 380px;
    color: rgba(255, 255, 255, 0.6);
}

.back-top {
    margin-left: auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.back-top svg {
    width: 18px;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
}

.lightbox {
    width: min(1000px, calc(100% - 30px));
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
}

.lightbox::backdrop {
    background: rgba(3, 10, 9, 0.92);
}

.lightbox img {
    max-height: 86vh;
    width: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    top: -50px;
    right: 0;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

@media (max-width: 1080px) {
    .main-nav {
        gap: 17px;
    }

    .header-cta span {
        display: none;
    }

    .header-cta {
        width: 44px;
        padding: 0;
    }

    .hero-facts {
        width: 100%;
    }

    .intro-grid,
    .section-heading {
        gap: 50px;
    }

    .location-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 30px, 720px);
    }

    .nav-wrap {
        min-height: 74px;
    }

    .brand {
        width: 175px;
    }

    .brand img {
        height: 48px;
    }

    .menu-toggle {
        margin-left: auto;
        display: inline-grid;
    }

    .header-cta {
        display: none;
    }

    .header-qr {
        display: none;
    }

    .main-nav {
        position: fixed;
        inset: 74px 0 0;
        padding: 40px 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--white);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
        font-family: "Manrope", sans-serif;
        font-size: 1.45rem;
    }

    .hero {
		max-height: 760px;
        height: 68vh;
        align-items: flex-end;
        min-height: auto;
    }
	.hero-copy {
		display: none;
	}
    .hero-poster {
        object-position: 59% center;
    }

    .hero-shade {
		background: linear-gradient(356deg, rgb(5 21 18 / 5%) 0%, rgb(5 21 18 / 41%) 68%, rgb(5 21 18 / 26%) 100%);
    }

    .hero-content {
        padding: 0 0 160px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 12vw, 4.3rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-facts {
        width: 100%;
        padding: 20px 12px;
    }

    .hero-facts div {
        padding-inline: 10px;
    }

    .hero-facts strong {
        font-size: 1.1rem;
    }

    .section {
        padding: 80px 0;
    }

    .intro-grid,
    .section-heading,
    .enquiry-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .overview-visual {
        min-height: 530px;
    }

    .overview-primary {
        width: 100%;
        height: 420px;
    }

    .overview-secondary {
        width: 46%;
        height: 230px;
    }

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

    .floor-plan-gallery {
        gap: 18px;
    }

    .plan-card {
        min-height: 380px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item.item-2 {
        grid-column: span 1;
    }

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

    .location-content {
        padding: 80px max(15px, calc((100vw - 720px) / 2));
    }

    .map-wrap,
    .map-wrap iframe {
        min-height: 450px;
    }

    .enquiry-grid {
        gap: 50px;
    }
}

@media (max-width: 560px) {
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .hero-facts {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 14px;
    }

    .hero-facts div:nth-child(3) {
        border-left: 0;
    }

    .hero-content {
        padding-bottom: 178px;
    }

    .overview-visual {
        min-height: 570px;
    }

    .overview-primary {
        height: 350px;
    }

    .overview-secondary {
        right: 14px;
        bottom: 95px;
        width: calc(100% - 28px);
        height: 210px;
        border-width: 7px;
    }

    .overview-note {
        left: 14px;
        bottom: 0;
        width: calc(100% - 28px);
    }

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

    .floor-plan-gallery {
        grid-template-columns: 1fr;
    }

    .amenity-item {
        min-height: 180px;
    }

    .technical-strip {
        justify-content: flex-start;
    }

    .gallery-grid {
        grid-auto-rows: 210px;
    }

    .gallery-item.item-1,
    .gallery-item.item-6 {
        grid-row: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row label:first-child {
        margin-bottom: 18px;
    }

    .choice-row {
        grid-template-columns: 1fr;
    }

    .enquiry-form {
        padding: 24px 20px;
    }

    .rera a {
        width: 100%;
        margin-left: 0;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .back-top {
        margin-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
/* Floating WhatsApp Button */
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:34px;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.25);
    animation:pulse 2s infinite;
}

/* Wave Effect */
.whatsapp-float::before,
.whatsapp-float::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(37,211,102,0.4);
    z-index:-1;
    animation:wave 2s infinite;
}

.whatsapp-float::after{
    animation-delay:1s;
}

@keyframes wave{
    0%{
        transform:scale(1);
        opacity:0.8;
    }
    100%{
        transform:scale(2.2);
        opacity:0;
    }
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
}

.whatsapp-text{
    position:fixed;
    right:95px;
    bottom:32px;
    background:#fff;
    color:#333;
    padding:10px 15px;
    border-radius:30px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    font-size:14px;
    font-weight:600;
}

@media(max-width:768px){
    .whatsapp-float{
        width:58px;
        height:58px;
        font-size:30px;
        right:15px;
        bottom:15px;
    }

    .whatsapp-text{
        display:none;
    }
}


.mobile-sticky-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:none;
    z-index:9999;
    box-shadow:0 -2px 15px rgba(0,0,0,.15);
}

.mobile-sticky-bar .sticky-btn{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 10px;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    color:#fff;
}

.enquiry-btn{
    background:#0ea5e9;
}

.whatsapp-btn{
    background:#25D366;
}

@media(max-width:768px){

    .mobile-sticky-bar{
        display:flex;
    }

    /* Prevent content hidden behind footer */
    body{
        padding-bottom:65px;
    }

    /* Hide floating whatsapp icon */
    .whatsapp-float{
        display:none;
    }
	.whatsapp-float{
        display:none;
    }
}