:root {
    --navy: #181a2c;
    --navy-deep: #101223;
    --navy-card: #232541;
    --navy-line: #333654;
    --gold: #ffe850;
    --gold-dim: #d8c53f;
    --gray: #f2f3f6;
    --gray-line: #e3e4ea;
    --white: #ffffff;
    --ink: #1c1d2a;
    --muted-dark: #a7a9c2;
    --muted-light: #6c6d7c;

    --font-display: "Gotham SSm A", "Gotham SSm B", "Montserrat", sans-serif;
    --font-body: "Gotham Book", "Gotham SSm A", "Inter", sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.font-display {
    font-family: var(--font-display);
}
a {
    text-decoration: none;
}
.container-xl {
    max-width: 1440px;
}
.iti .iti__selected-dial-code {
    margin-left: 0;
    margin-right: 7px;
}
.eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--gold-dim);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold-dim);
    display: inline-block;
}
.eyebrow.on-dark {
    color: var(--gold);
}
.eyebrow.on-dark::before {
    background: var(--gold);
}

.section-title {
    font-weight: 400;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0 0 0.5rem;
}
.section-title.on-dark {
    color: #fff;
}

.draw-line {
    display: block;
    margin: 6px 0 26px;
}
.draw-line svg {
    width: 130px;
    height: 14px;
    overflow: visible;
}
.draw-line path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    transition: stroke-dashoffset 1.1s var(--ease);
}
.reveal.in-view .draw-line path {
    stroke-dashoffset: 0;
}

.lede {
    color: var(--muted-light);
    font-size: 1.02rem;
    font-weight: 400;
    max-width: 560px;
    line-height: 1.75;
}
.lede.on-dark {
    color: var(--muted-dark);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.76rem;
    padding: 0.9rem 1.9rem;
    border-radius: 2px;
    border: 1px solid var(--gold);
    transition: all 0.35s var(--ease);
}
.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}
.btn-gold.on-light {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}
.btn-gold.on-light:hover {
    background: transparent;
    color: var(--navy);
}
.btn-outline-lux {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.76rem;
    padding: 0.9rem 1.9rem;
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-outline-lux:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(24, 26, 44, 0.25);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.76rem;
    padding: 0.9rem 1.9rem;
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-outline-dark:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

/* ================= NAVBAR (always solid blue) ================= */
.navbar-lux {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 11px 0;
    background: var(--navy);
    transition:
        padding 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}
.navbar-lux.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}
.navbar-lux .brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-lux .brand span {
    color: var(--gold);
}
.navbar-lux .brand small {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.26em;
    font-size: 0.52rem;
    color: var(--muted-dark);
    text-transform: uppercase;
    margin-top: 3px;
}

/* Limit logo height so it doesn't appear too large in the navbar */
.navbar-lux .brand-logo {
    height:48px;
    width: auto;
    display: block;
}
.navbar-lux.scrolled .brand-logo {
    height: 50px;
}
@media (max-width: 991px) {
    .navbar-lux .brand-logo {
        height: 44px;
    }
}

.nav-links a {
    color: #e8e8ef;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0 12px;
    position: relative;
    padding: 6px 0;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: #fff;
}
.nav-call {
    color: var(--gold) !important;
    border: 1px solid rgba(255, 232, 80, 0.4);
    padding: 7px 15px !important;
    font-size: 1rem !important;
}
.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.4rem;
    background: transparent;
}

/* Contact widget (top-right floating) */
.contact-widget {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1100;
    background: linear-gradient(135deg,#1f2133,#2b2d44);
    color: #fff;
    padding: 10px 14px;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(16, 18, 35, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,232,80,0.06);
}
.contact-widget .ball {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(255,232,80,0.6);
    animation: floatBall 1.6s ease-in-out infinite;
}
@keyframes floatBall {0%{transform: translateY(0)}50%{transform: translateY(-6px)}100%{transform: translateY(0)}}
.contact-widget .contact-number {color: #fff; font-weight: 700; font-family: var(--font-display); font-size: 0.95rem}
.contact-widget .contact-number i{margin-right:8px;color:var(--gold)}

/* Phone input and country selector */
.phone-input{display:flex;gap:8px;align-items:center}
.country-select{position:relative}
.country-select .selected-code{background:transparent;color:var(--muted-dark);border:1px solid rgba(255,255,255,0.03);padding:8px 10px;border-radius:4px;cursor:pointer}
.country-select .country-list{position:absolute;top:42px;left:0;width:280px;background:var(--navy-card);border:1px solid var(--navy-line);box-shadow:0 8px 26px rgba(0,0,0,0.5);padding:8px;display:none;border-radius:4px;max-height:260px;overflow:auto}
.country-select .country-list input{width:100%;padding:8px;border:1px solid rgba(255,255,255,0.03);margin-bottom:8px;border-radius:4px;background:transparent;color:#fff}
.country-select .country-list ul{list-style:none;padding:0;margin:0}
.country-select .country-list li{padding:8px;border-radius:3px;cursor:pointer;color:#fff}
.country-select .country-list li:hover{background:rgba(255,255,255,0.03)}

/* Enquiry card tweaks */
.enquiry-card{background: rgba(24,26,44,0.92);border:1px solid rgba(255,255,255,0.03);padding:34px;border-radius:2px}
.form-control-lux{background:transparent;border:0;border-bottom:1px solid rgba(255,255,255,0.06);border-radius:0;color:inherit;padding:12px 8px}
.form-label-lux{font-size:.65rem;letter-spacing:.14em;color:var(--muted-dark);display:block;margin-bottom:8px}

/* keep hero marker */
/* ================= HERO with image slider ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 9s ease-in-out infinite alternate;
}
@keyframes kenburns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.14);
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16, 18, 35, 0.62), rgba(16, 18, 35, 0.8) 60%, var(--navy) 100%);
}
.hero-frame {
    position: absolute;
    inset: 26px;
    border: none;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    animation: frameIn 1.4s var(--ease) 0.3s forwards;
}
@keyframes frameIn {
    from {
        opacity: 0;
        inset: 60px;
    }
    to {
        opacity: 1;
        inset: 26px;
    }
}
.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 60px;
}
.hero-kicker {
    opacity: 0;
    transform: translateY(16px);
    animation: riseIn 0.9s var(--ease) 0.4s forwards;
}
.possession-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 9px 14px;
    background: rgba(255, 232, 80, 0.14);
    border: 1px solid rgba(255, 232, 80, 0.55);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(16px);
    animation: riseIn 0.9s var(--ease) 0.5s forwards;
}
.hero-title {
    font-size: clamp(2.2rem, 2.8vw, 4.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.16;
    letter-spacing: 0;
    margin: 0 0 1.25rem;
    opacity: 0;
    transform: translateY(24px);
    animation: riseIn 1s var(--ease) 0.6s forwards;
}
.hero-title .gold {
    color: var(--gold);
}
/* Price displayed directly under the hero title */
.hero-price {
    margin: 0 0 1rem;
    opacity: 0;
    transform: translateY(14px);
    animation: riseIn 1s var(--ease) 0.75s forwards;
    display: inline-flex;
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
}
.hero-price-lux {
    width: auto;
    min-width: 220px;
    padding: 10px 16px 10px;
    border: 1px solid rgba(255,232,80,0.28);
    background: rgba(8,17,34,0.06);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 8px 20px rgba(0,0,0,0.12);
    backdrop-filter: blur(2px);
}
.hero-price .price-start {
    font-size: 0.78rem;
    color: var(--muted-dark);
    text-transform: capitalize;
    letter-spacing: 0.06em;
    font-weight: 700;
}
.hero-price .price-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0;
}
.hero-price .price-label {
    font-size: 0.78rem;
    color: var(--muted-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

/* Slight adjustments for very small screens */
@media (max-width: 575px) {
    .hero-price { gap: 8px; }
    .hero-price-lux { min-width: 0; padding: 12px; }
    .hero-price .price-num { font-size: 1.35rem; }
    .hero-price .price-start, .hero-price .price-label { font-size: 0.72rem; }
}

/* keep hero marker */
.hero-sub {
    color: var(--muted-dark);
    font-size: 1rem;
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: riseIn 1s var(--ease) 0.8s forwards;
}
.hero-meta {
    opacity: 0;
    transform: translateY(20px);
    animation: riseIn 1s var(--ease) 1s forwards;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 2.2rem;
}
.hero-meta div {
    color: #fff;
}
.hero-meta .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gold);
}
.hero-meta .lbl {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted-dark);
}
.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: riseIn 1s var(--ease) 1.15s forwards;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-form-card {
    max-width: 470px;
    margin-left: auto;
    padding: 28px 30px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,232,80,0.5);
    border-top: 3px solid var(--gold-dim);
    box-shadow: 0 26px 70px rgba(0,0,0,0.34);
    opacity: 0;
    transform: translateY(22px);
    animation: riseIn 1s var(--ease) 0.85s forwards;
}
.hero-form-card .eyebrow {
    color: var(--gold-dim);
}
.hero-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--ink);
    margin: 14px 0 8px;
}
.hero-form-card > p {
    color: var(--muted-light);
    font-size: 0.84rem;
    line-height: 1.65;
    margin-bottom: 18px;
}
.hero-form-card .form-control-lux {
    min-height: 44px;
}
.hero-form-card textarea.form-control-lux {
    min-height: 68px;
}
.hero-form-card .form-consent {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .hero-form-card {
        display: none;
        max-width: 100%;
        margin: 28px 0 0;
    }
}
@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-dots {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dots span {
    width: 26px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    display: block;
    cursor: pointer;
    transition: background 0.3s;
}
.hero-dots span.active {
    background: var(--gold);
}

/* ================= STATS (blue) ================= */
.stats-band {
    background: var(--navy);
    padding: 70px 0;
    position: relative;
    border-top: 1px solid var(--navy-line);
}
.stat-item {
    text-align: center;
    padding: 0 10px;
}
.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    color: var(--gold);
    line-height: 1;
}
.stat-lbl {
    color: var(--muted-dark);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.9s var(--ease),
        transform 0.9s var(--ease);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1.in-view {
    transition-delay: 0.12s;
}
.reveal-delay-2.in-view {
    transition-delay: 0.24s;
}
.reveal-delay-3.in-view {
    transition-delay: 0.36s;
}

/* ================= OVERVIEW (white) ================= */
.about-sec {
    padding: 110px 0;
    background: var(--white);
}
.about-img-wrap {
    position: relative;
}
.about-img-wrap img {
    width: 100%;
    border-radius: 2px;
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: -26px;
    left: -26px;
    background: var(--navy);
    color: #fff;
    padding: 20px 24px;
    border: 1px solid var(--gold);
    max-width: 220px;
}
.about-img-badge .n {
    font-family: var(--font-display);
    color: var(--gold);
    font-weight: 800;
    font-size: 1.5rem;
}
.about-img-badge .t {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    color: var(--muted-dark);
    text-transform: uppercase;
}
.about-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}
.about-points li {
    display: flex;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--gray-line);
}
.about-points li:first-child {
    padding-top: 0;
}
.about-points i {
    color: var(--gold-dim);
    font-size: 1.1rem;
    margin-top: 2px;
}
.about-points b {
    font-family: var(--font-display);
    font-size: 0.94rem;
}
.about-points span {
    display: block;
    color: var(--muted-light);
    font-size: 0.86rem;
}

/* ================= HIGHLIGHTS (gray) ================= */
.highlights-sec {
    padding: 110px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f5f8 100%);
}
.highlights-sec .section-head-lux p {
    color: var(--muted-light);
}
.highlights-lux {
    display: block;
}
.highlight-feature {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background: var(--navy-deep);
    border: 1px solid rgba(216,197,63,0.5);
}
.highlight-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transform: scale(1.02);
}
.highlight-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,17,34,0.08), rgba(8,17,34,0.9));
}
.highlight-feature-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 34px;
    color: #fff;
}
.highlight-feature-copy span {
    display: block;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.highlight-feature-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    font-weight: 500;
    line-height: 1.16;
    margin-bottom: 14px;
}
.highlight-feature-copy p {
    color: var(--muted-dark);
    line-height: 1.75;
    margin: 0;
}
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.highlight-card {
    text-align: center;
    position: relative;
    background: rgba(255,255,255,0.92);
    border: 1px solid #e0d7bd;
    padding: 24px 20px;
    min-height: 158px;
    overflow: hidden;
    transition:
        transform 0.35s var(--ease),
        border-color 0.35s var(--ease),
        box-shadow 0.35s var(--ease);
}
.highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold-dim);
}
.highlight-card::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(216,197,63,0.24);
    transform: rotate(45deg);
}
.highlight-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-dim);
    box-shadow: 0 22px 48px rgba(16,18,35,0.1);
}
.highlight-card i {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--navy);
    color: var(--gold);
    border: 1px solid rgba(216, 197, 63, 0.55);
    font-size: 2rem;
    border-radius: 100%;
}
.highlight-card h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hl-card {
    background: var(--white);
    border: 1px solid var(--gray-line);
    padding: 28px 24px;
    height: 100%;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition:
        box-shadow 0.35s var(--ease),
        transform 0.35s var(--ease);
}
.hl-card:hover {
    box-shadow: 0 20px 40px rgba(24, 26, 44, 0.1);
    transform: translateY(-5px);
}
.hl-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex: none;
}
.hl-card h6 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.hl-card p {
    color: var(--muted-light);
    font-size: 0.83rem;
    margin: 0;
}

/* ================= AMENITIES (white, image cards) ================= */
.amenity-sec {
    padding: 110px 0;
    background: var(--white);
}
.amn-card {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 2px;
}
.amn-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.amn-card:hover img {
    transform: scale(1.09);
}
.amn-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 26, 44, 0) 35%, rgba(16, 18, 35, 0.88));
}
.amn-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    z-index: 2;
}
.amn-label .ic {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 6px;
    display: block;
}
.amn-label h6 {
    font-family: var(--font-display);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
}
.amenity-strip {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.amenity-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    background: var(--gray);
    border: 1px solid var(--gray-line);
    color: var(--navy);
    font-size: 0.84rem;
}
.amenity-strip i {
    color: var(--gold-dim);
}

.amenity-source-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.amenity-source-card {
    background: #fff;
    border: 1px solid rgba(24, 26, 44, 0.08);
    padding: 26px 22px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 18px 40px rgba(16,18,35,0.06);
    min-height: 260px;
}
.amenity-icon {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(8,17,34,0.12);
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}
.amenity-source-card h6 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .amenity-source-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .amenity-source-grid { grid-template-columns: 1fr; }
    .amenity-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}

/* ================= PRICING (blue, column cards) ================= */
.pricing-sec {
    padding: 110px 0;
    background:
        linear-gradient(180deg, rgba(8, 17, 34, 0.96), rgba(18, 26, 53, 0.98)),
        url("https://elanthepresidential.com/assets/gallery-1.webp") center/cover fixed;
    position: relative;
}
.section-head-lux p {
    max-width: 720px;
    margin: -8px auto 0;
    color: var(--muted-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}
.fp-sec .section-head-lux p {
    color: var(--muted-light);
}
.price-possession {
    width: fit-content;
    margin: -18px auto 28px;
    padding: 10px 16px;
    border: 1px solid rgba(255,232,80,0.42);
    background: rgba(255,232,80,0.11);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.price-possession i {
    margin-right: 7px;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.price-grid-source {
    grid-template-columns: repeat(2, minmax(260px, 360px));
    justify-content: center;
}
.price-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,232,80,0.18);
    padding: 34px 26px 28px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.35s var(--ease),
        border-color 0.35s var(--ease);
    position: relative;
    min-height: 250px;
    
}
.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,232,80,0.13), transparent 42%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    pointer-events: none;
}
.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,232,80,0.55);
    box-shadow: 0 24px 55px rgba(0,0,0,0.28);
}
.price-card:hover::before {
    opacity: 1;
}
.price-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(255,232,80,0.13), rgba(255,255,255,0.035));
}
.price-card .badge-featured {
    position: absolute;
    top: -13px;
    left: 26px;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 2px;
}
.price-card .cfg {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 6px;
}
.price-card .sz {
    color: var(--muted-dark);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 40px;
}
.price-card .pr {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--gold);
    font-size: 1.42rem;
    margin-bottom: 24px;
}
.price-card .btn-outline-lux {
    margin-top: auto;
    text-align: center;
    background: transparent;
    width: 100%;
}
.price-note {
    color: var(--muted-dark);
    font-size: 0.8rem;
    margin-top: 28px;
}
@media (max-width: 991px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= PAYMENT PLAN (gray) ================= */
.pay-sec {
    padding: 110px 0;
    background: var(--gray);
}
.pay-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.pay-circle {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    border: 1px solid var(--gold);
    position: relative;
    z-index: 2;
}
.pay-track {
    position: relative;
}
.pay-track::before {
    content: "";
    position: absolute;
    top: 49px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold-dim) 0 8px, transparent 8px 16px);
    z-index: 1;
}
.pay-step h6 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.pay-step p {
    color: var(--muted-light);
    font-size: 0.84rem;
    max-width: 220px;
    margin: 0 auto;
}

/* ================= FLOOR PLAN (white, tabs) ================= */
.fp-sec {
    padding: 110px 0;
    background:
        linear-gradient(180deg, rgba(242,243,246,0.88), #fff 38%),
        url("https://elanthepresidential.com/assets/about-section.webp") center top/cover no-repeat;
}
.fp-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.fp-tab-btn {
    background: rgba(255,255,255,0.82);
    border: 1px solid #d6c798;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}
.fp-tab-btn.active,
.fp-tab-btn:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}
.fp-pane {
    display: none;
}
.fp-pane.active {
    display: block;
    animation: fadeInFp 0.6s var(--ease);
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(216,197,63,0.55);
    padding: 34px;
    box-shadow: 0 28px 70px rgba(16,18,35,0.13);
}
.fp-layout-card,
.fp-pane.active > .row {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 34px;
}
.fp-pane.active > .row > [class*="col-"] {
    width: auto;
    max-width: none;
}
.fp-copy h4,
.fp-pane h4.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2rem) !important;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
}
.fp-copy p {
    color: var(--muted-light);
    line-height: 1.75;
    margin: 0 0 18px;
}
.fp-tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: rgba(216,197,63,0.14);
    color: #786915;
    border: 1px solid rgba(216,197,63,0.35);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.fp-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 24px;
}
.fp-metrics span {
    padding: 9px 12px;
    background: var(--gray);
    border: 1px solid var(--gray-line);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
}
@keyframes fadeInFp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fp-img-wrap {
    border: 1px solid rgba(216,197,63,0.48);
    padding: 12px;
    background: #fff;
    max-width: 420px;
    margin: 0 auto;
}
.fp-img-wrap img {
    width: 100%;
    display: block;
    max-height: 420px;
    object-fit: contain;
    margin: 0 auto;
}
.fp-specs {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0;
}
.fp-specs li {
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-line);
    color: #4d5060;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
}
.fp-specs i {
    color: var(--gold-dim);
}
.floor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.floor-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(216,197,63,0.24);
    padding: 0;
    min-height: 278px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(16,18,35,0.12);
}
.floor-card img {
    width: 100%;
    height: 100%;
    min-height: 278px;
    object-fit: cover;
    display: block;
    background: #f8f8f8;
    filter: blur(5px);
    transform: scale(1.04);
    opacity: 0.72;
}
.floor-card i {
    font-size: 20px;
}
.floor-card .btn-gold {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    min-width: 230px;
    min-height: 44px;
    padding: 0.72rem 1.15rem;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 12px 24px rgba(8,17,34,0.22);
    z-index: 2;
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 0;
}
/* .floor-card .btn-gold::before {
    content: "\F33B";
    font-family: "bootstrap-icons";
    font-size: 1rem;
    margin-right: 8px;
    line-height: 1;
    flex: 0 0 auto;
} */
.floor-card .btn-gold:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

/* ================= GALLERY (blue) ================= */
.gallery-sec {
    padding: 110px 0;
    background:
        radial-gradient(circle at 78% 10%, rgba(255,232,80,0.1), transparent 26%),
        linear-gradient(145deg, #081122, #151d38 54%, #0c1326);
}
.gallery-sec .row {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 18px;
}
.gal-item {
    overflow: hidden;
    position: relative;
    height: 310px;
    padding: 7px;
}
/* .gal-item:nth-child(1),
.gal-item:nth-child(6) {
    height: 390px;
} */
.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
    border: 1px solid rgba(255,232,80,0.18);
}
.gal-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.05);
}
.gal-item::after {
    content: "";
    position: absolute;
    inset: 7px;
    background: linear-gradient(180deg, transparent 48%, rgba(8, 17, 34, 0.78));
    opacity: 1;
    transition: opacity 0.4s;
}
.gal-item:hover::after {
    opacity: 1;
}

/* ================= LOCATION (gray) ================= */
.loc-sec {
    padding: 110px 0;
    background: var(--gray);
}
.loc-lede {
    color: var(--muted-light);
    line-height: 1.75;
    margin: 8px 0 22px;
}
.loc-map {
    border: 1px solid var(--gray-line);
    border-radius: 2px;
    overflow: hidden;
}
.loc-map iframe {
    width: 100%;
    height: 500px;
    border: 0;
    filter: grayscale(0.25) contrast(1.05);
}
.loc-chip {
    background: var(--white);
    border: 1px solid var(--gray-line);
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    transition: border-color 0.3s;
}
.loc-chip:hover {
    border-color: var(--gold-dim);
}
.loc-chip .place {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 500;
}
.loc-chip .place i {
    color: var(--gold-dim);
    margin-right: 10px;
}
.loc-chip .time {
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.76rem;
    white-space: nowrap;
}

/* ================= DEVELOPER (white) ================= */
.dev-sec {
    padding: 110px 0;
    background: var(--white);
}
.dev-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.dev-badges div {
    text-align: left;
}
.dev-badges .t {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.88rem;
}
.dev-badges .s {
    color: var(--muted-light);
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* ================= ENQUIRY (blue) ================= */
.enquiry-sec {
    padding: 84px 0;
    background:
        radial-gradient(circle at 12% 0, rgba(255, 232, 80, 0.09), transparent 28%),
        linear-gradient(145deg, #0c1326 0%, #121a35 46%, #081122 100%);
    position: relative;
}
.enquiry-title {
    max-width: 560px;
    margin-top: 18px;
    margin-bottom: 22px;
    font-size: clamp(2rem, 2.0vw, 4.25rem);
}
.enquiry-lede {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.8;
}
.contact-actions {
    margin: 34px 0 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-action {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}
.contact-action:hover {
    color: #fff;
}
.contact-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,232,80,0.32);
    color: var(--gold);
    flex: 0 0 auto;
}
.contact-action small {
    display: block;
    color: var(--gold);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.contact-action strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.site-address {
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 20px 0 0;
}
.site-address i {
    color: var(--gold);
    margin-right: 8px;
}
.enquiry-card {
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(255,232,80,0.5);
    border-top: 3px solid var(--gold-dim);
    padding: 34px 34px 28px;
    box-shadow: 0 22px 70px rgba(0,0,0,0.28);
}
.form-control-lux {
    background: #fff;
    border: 1px solid #d9d2c2;
    border-radius: 0;
    color: var(--ink);
    min-height: 46px;
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
}
.form-control-lux::placeholder {
    color: #9899aa;
}
.form-control-lux:focus {
    background: #fff;
    color: var(--ink);
    box-shadow: none;
    border-color: var(--gold-dim);
}
.form-label-lux {
    color: #293044;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 7px;
    display: block;
}
select.form-control-lux option {
    background: #fff;
    color: var(--ink);
}
.phone-input {
    gap: 0;
    display: block;
}
.phone-input .country-select {
    display: none;
}
.iti {
    width: 100%;
    display: block;
}
.iti .form-control-lux {
    width: 100%;
    padding-left: 98px !important;
}
.iti__selected-country {
    min-height:auto;
    border-right: 1px solid #d9d2c2;
    background: #f7f5ef;
}
.iti__country-list {
    border-radius: 0;
    border: 1px solid #d9d2c2;
    box-shadow: 0 18px 38px rgba(8,17,34,0.22);
    z-index: 3000;
}
.iti__country {
    font-size: 0.82rem;
    color: var(--ink);
}
.iti__dial-code {
    color: #596070;
}
.country-select .selected-code {
    background: #f7f5ef;
    color: var(--ink);
    border: 1px solid #d9d2c2;
    border-right: 0;
    min-height: 46px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 96px;
    white-space: nowrap;
}
.country-select .selected-code::before {
    content: "IN";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
    background: linear-gradient(#ff9933 0 33%, #fff 33% 66%, #138808 66%);
    color: #071123;
    font-size: 0.48rem;
    font-weight: 800;
    border: 1px solid rgba(0,0,0,0.14);
}
.country-select .selected-code .flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.14);
    font-size: 0.55rem;
    font-weight: 800;
}
.country-select .selected-code:has(.flag)::before {
    content: none;
}
.country-select .country-list {
    background: #fff;
    border-color: #d9d2c2;
    box-shadow: 0 18px 38px rgba(8,17,34,0.22);
    z-index: 20;
}
.country-select .country-list input {
    background: #f7f5ef;
    color: var(--ink);
    border-color: #d9d2c2;
}
.country-select .country-list li {
    color: var(--ink);
}
.country-select .country-list li:hover {
    background: #f3ead7;
}
.phone-number {
    flex: 1 1 auto;
    min-width: 0;
}
.rera-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--navy-line);
    padding: 10px 16px;
    color: var(--muted-dark);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    margin-top: 16px;
}
.rera-badge i {
    color: var(--gold);
}

body.modal-locked {
    overflow: hidden;
}
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}
.enquiry-modal.active {
    display: flex;
}
.modal-backdrop-lux {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 22, 0.76);
    backdrop-filter: blur(8px);
}
.modal-dialog-lux {
    position: relative;
    /* Reduced width so popup form appears more compact on desktop/tablet */
    width: min(460px, 100%);
    max-height: calc(100vh - 44px);
    overflow: auto;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(255,232,80,0.55);
    border-top: 3px solid var(--gold-dim);
    padding: 28px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}

/* Make modal full-width on small screens (mobile) */
@media (max-width: 575px) {
    .modal-dialog-lux {
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 24px);
        max-height: calc(100vh - 24px);
        margin: 12px 0;
        padding: 18px;
        border-radius: 4px;
        box-shadow: none;
    }
}
.modal-dialog-lux h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 1.0rem);
    font-weight: 500;
    margin: 16px 0 8px;
    color: var(--ink);
}
.modal-dialog-lux > p {
    color: var(--muted-light);
    line-height: 1.7;
    margin-bottom: 24px;
}
.modal-x {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid #d9d2c2;
    background: #fff;
    color: var(--ink);
}
.form-consent {
    margin: 12px 0 0;
    color: #777b8d;
    font-size: 0.68rem;
    line-height: 1.6;
    text-align: center;
}
.form-note {
    display: block;
    margin-top: 10px;
    color: var(--muted-light);
    font-size: 0.78rem;
    text-align: center;
}

/* ================= POLICY + THANK YOU PAGES ================= */
.policy-hero {
    padding: 150px 0 78px;
    background:
        linear-gradient(180deg, rgba(8,17,34,0.78), rgba(8,17,34,0.96)),
        url("https://elanthepresidential.com/assets/gallery-2.webp") center/cover;
    color: #fff;
}
.policy-hero h1,
.thank-panel h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 500;
    margin: 18px 0;
}
.policy-hero p {
    max-width: 760px;
    color: var(--muted-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}
.policy-content {
    padding: 86px 0;
    background: var(--gray);
}
.policy-shell {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}
.policy-side,
.policy-card {
    background: #fff;
    border: 1px solid #e1d8bd;
    box-shadow: 0 20px 55px rgba(16,18,35,0.08);
}
.policy-side {
    padding: 28px;
    position: sticky;
    top: 108px;
}
.policy-side h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    margin-bottom: 18px;
}
.policy-side p {
    display: flex;
    gap: 10px;
    color: var(--muted-light);
    line-height: 1.6;
    font-size: 0.86rem;
}
.policy-side i {
    color: var(--gold-dim);
    margin-top: 4px;
}
.policy-side a {
    color: inherit;
}
.policy-card {
    padding: 38px 42px;
}
.policy-block {
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--gray-line);
}
.policy-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.policy-block h2 {
    font-family: var(--font-display);
    font-size: 1.22rem;
    color: var(--ink);
    margin-bottom: 12px;
}
.policy-block p {
    color: var(--muted-light);
    line-height: 1.85;
    margin: 0;
}
.thank-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}
.thank-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,17,34,0.72), rgba(8,17,34,0.94)),
        url("https://elanthepresidential.com/assets/hero_bg.webp") center/cover;
}
.thank-panel {
    position: relative;
    width: min(860px, 100%);
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255,232,80,0.38);
    background: rgba(12,19,38,0.82);
    padding: 48px;
    box-shadow: 0 34px 90px rgba(0,0,0,0.42);
}
.thank-logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
    margin-bottom: 22px;
}
.thank-check {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 2rem;
}
.thank-panel p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--muted-dark);
    line-height: 1.8;
}
.thank-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,0.12);
    margin: 34px 0;
}
.thank-steps div {
    padding: 18px 12px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.thank-steps div:last-child {
    border-right: 0;
}
.thank-steps strong {
    display: block;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.35rem;
}
.thank-steps span {
    display: block;
    color: #fff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.thank-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================= FOOTER (blue) ================= */
.footer-lux {
    background: var(--navy-deep);
    padding: 64px 0 24px;
    border-top: none;
}
.footer-lux h6 {
    font-family: var(--font-display);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-lux a {
    color: var(--muted-dark);
    font-size: 0.84rem;
    display: block;
    margin-bottom: 9px;
    transition: color 0.3s;
}
.footer-lux a:hover {
    color: var(--gold);
}
.footer-lux p {
    color: var(--muted-dark);
    font-size: 0.84rem;
    line-height: 1.8;
}
.footer-bottom {
    border-top: none;
    margin-top: 36px;
    padding-top: 20px;
    color: var(--muted-dark);
    font-size: 0.72rem;
}
.footer-disclaimer {
    font-size: 0.7rem;
    color: var(--muted-dark);
    opacity: 0.75;
    line-height: 1.8;
    border-top: none;
    margin-top: 20px;
    padding-top: 20px;
}

/* ================= FLOATING BUTTONS ================= */
.float-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s var(--ease);
}
.float-btn:hover {
    transform: scale(1.1);
}
.float-btn.whatsapp {
    background: #25d366;
}
.float-btn.call {
    background: var(--gold);
    color: var(--navy-deep);
}
.float-btn.top {
    background: var(--navy-card);
    border: 1px solid var(--navy-line);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s,
        transform 0.3s var(--ease);
}
.float-btn.top.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-footer-toolbar {
    display: none;
    position: fixed;
    inset: auto 0 0;
    z-index: 1250;
    padding: 0px 0px 0px;
    background: rgba(4, 18, 43, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    justify-content: space-between;
    gap: 0;
}
.mobile-footer-toolbar .toolbar-btn {
    flex: 1;
    min-height: 46px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.mobile-footer-toolbar .toolbar-btn:hover {
    transform: translateY(-1px);
}
.mobile-footer-toolbar .toolbar-btn.call {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: rgba(255, 255, 255, 0.12);
}
.mobile-footer-toolbar .toolbar-btn.whatsapp {
    background: #25d366;
    border-color: rgba(255, 255, 255, 0.12);
}
.mobile-footer-toolbar .toolbar-btn.modal-open {
    background: var(--navy-card);
}

@media (max-width: 767px) {
    .hero-title {font-size:20px;}
    .float-actions {
        display: none;
    }
    .mobile-footer-toolbar {
        display: flex;
    }
    body {
        padding-bottom: 90px;
    }
}

/* ================= PRELOADER ================= */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s var(--ease),
        visibility 0.6s var(--ease);
}
#preloader.done {
    opacity: 0;
    visibility: hidden;
}
#preloader .mark {
    font-family: var(--font-display);
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.28em;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 14px;
}
#preloader .mark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: var(--navy-line);
}
#preloader .mark::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0%;
    background: var(--gold);
    animation: loadbar 1.4s var(--ease) forwards;
}
@keyframes loadbar {
    to {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .fp-layout-card,
    .fp-pane.active > .row {
        grid-template-columns: 1fr;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--navy-deep);
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch;
        padding: 100px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.45s var(--ease);
        z-index: 1050;
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-links a {
        display: block;
        width: 100%;
        margin: 12px 0;
        font-size: 1rem;
    }
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }
    .nav-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }
}
@media (max-width: 767px) {
    .about-img-badge {
        left: 8px;
        bottom: -18px;
        padding: 14px 16px;
    }
    .pay-track::before {
        display: none;
    }
    .price-table {
        font-size: 0.85rem;
    }
    .hero-price-lux {
        min-width: 230px;
       
    }
    .hero-price .price-num {
        font-size: clamp(1.5rem, 5vw, 3rem);
    }
    .highlights-sec {
        padding: 72px 0;
    }
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    .highlight-card {
        min-height: auto;
        padding: 24px 22px;
    }
    .pricing-sec,
    .fp-sec,
    .gallery-sec {
        padding: 72px 0;
    }
    .fp-pane.active {
        padding: 20px;
    }
    .floor-grid {
        grid-template-columns: 1fr;
    }
    .floor-card,
    .floor-card img {
        min-height: 230px;
    }
    .fp-tabs {
        justify-content: stretch;
    }
    .fp-tab-btn {
        flex: 1 1 calc(50% - 10px);
        padding: 0.8rem 0.8rem;
    }
    .fp-metrics span,
    .amenity-strip span {
        flex: 1 1 100%;
        justify-content: center;
    }
    /* .gal-item,
    .gal-item:nth-child(1),
    .gal-item:nth-child(6) {
        height: 230px;
    } */
    .modal-dialog-lux {
        padding: 26px 18px;
    }
    .iti .form-control-lux {
        padding-left: 92px !important;
    }
    .policy-hero {
        padding: 120px 0 56px;
    }
    .policy-shell {
        grid-template-columns: 1fr;
    }
    .policy-side {
        position: static;
    }
    .policy-card {
        padding: 28px 20px;
    }
    .thank-page {
        padding: 18px;
    }
    .thank-panel {
        padding: 34px 20px;
    }
    .thank-steps {
        grid-template-columns: 1fr;
    }
    .thank-steps div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .thank-steps div:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
