/* ===== Fonts (Cairo 400/600/700) ===== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

@font-face {
    font-family: 'Cigra';
    src: url('/website/webfonts/Cairo-Black.ttf') format('woff2'),
    url('/website/webfonts/Cairo-Black.ttf') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}



body {
    font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: 0;
}







/* ===== Hero ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("/website/new-img/hero.png") center/cover no-repeat;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-inline: 12px;
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .35) 40%, rgba(0, 0, 0, .15));
}

.glass-panel {
    position: relative;
    z-index: 2;
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    padding: clamp(.75rem, 2.5vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
    margin-inline: auto;
    background: rgba(255, 253, 249, 0.32);
    backdrop-filter: blur(5px);
    border-radius: 16px;
}

.hero-title {
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 70px;
    letter-spacing: 0;
    margin: 0;
    color: #000;
    text-align: center;
}

.hero-subtitle {
    font-family: "Cairo", sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 3.2vw, 40px);
    line-height: 70px;
    letter-spacing: 0;
    margin: .5rem 0 0 0;
    color: #000;
    text-align: center;
}

.glass-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-family: "Cairo", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.0;
    letter-spacing: 0;
    -webkit-backdrop-filter: blur(8px);
    padding: clamp(.5rem, 1.4vw, .65rem) clamp(1rem, 2.4vw, 1.4rem);
    min-width: clamp(332px, 22vw, 180px);
    text-decoration: none;
    color: #0f172a;
    text-align: center;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
    background: rgba(255, 253, 249, 0.32);
    backdrop-filter: blur(5px);
    border-radius: 16px;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, .9);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.glass-btn:active {
    transform: translateY(0);
}

.buttons-row {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: clamp(.5rem, 2vw, .9rem);
    margin-top: clamp(.75rem, 2.4vw, 1rem);
}

/* Hero responsive */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 75vh;
        padding-inline: 16px;
    }

    .glass-panel {
        max-width: 94vw;
        padding: 1rem 1.25rem;
    }

    .hero-title {
        font-size: 40px;
        line-height: 56px;
    }

    .hero-subtitle {
        font-size: 32px;
        line-height: 46px;
        margin-top: .4rem;
    }

    .buttons-row {
        gap: .75rem;
        margin-top: .9rem;
    }

    .glass-btn {
        min-width: 260px;
        font-size: 17px;
        padding: .6rem 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 50vh;
        padding-inline: 14px;
    }

    .glass-panel {
        padding: .9rem 1.1rem;
        border-radius: 14px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 46px;
    }

    .hero-subtitle {
        font-size: 26px;
        line-height: 36px;
    }

    .buttons-row {
        gap: .65rem;
        margin-top: .85rem;
    }

    .glass-btn {
        min-width: 220px;
        font-size: 16px;
        padding: .55rem 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 50vh;
        padding-inline: 12px;
    }

    .glass-panel {
        max-width: 96vw;
        padding: .8rem 1rem;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .glass-btn {
        min-width: 200px;
        font-size: 15.5px;
        padding: .5rem 1rem;
    }
}

@media (max-width: 479.98px) {
    .hero-section {
        min-height: 45vh;
        padding-inline: 10px;
    }

    .glass-panel {
        padding: .7rem .9rem;
        border-radius: 12px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .buttons-row {
        gap: .55rem;
        margin-top: .75rem;
    }

    .glass-btn {
        min-width: 180px;
        font-size: 15px;
        padding: .48rem .95rem;
        border-radius: 14px;
    }
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 1)
    );
    pointer-events: none;
    z-index: 1;
}


/** ================== Intro Strip ================== **/
.intro-strip {
    color: #fff;
    position: relative;
    min-height: 350px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.intro-bg {
    position: absolute;
    inset: 0;
    background: url("/website/new-img/intro-strip.png") center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.02);
    z-index: 0;
}

.intro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(177, 145, 93, 0.6);
    mix-blend-mode: luminosity;
    z-index: 1;
}

.intro-glass {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.intro-line-1,
.intro-line-2,
.intro-line-3 {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0%;
    text-align: center;
}

.intro-line-1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 193%;
}

.intro-line-2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 193%;
}

.intro-line-3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 193%;
}

@media (max-width: 991.98px) {
    .intro-strip {
        min-height: 300px;
    }

    .intro-line-1 {
        font-size: 34px;
        line-height: 180%;
    }

    .intro-line-2 {
        font-size: 28px;
        line-height: 180%;
    }

    .intro-line-3 {
        font-size: 26px;
        line-height: 170%;
    }
}

@media (max-width: 767.98px) {
    .intro-strip {
        min-height: 260px;
        padding-inline: 16px;
    }

    .intro-line-1 {
        font-size: 28px;
        line-height: 160%;
    }

    .intro-line-2 {
        font-size: 24px;
        line-height: 160%;
    }

    .intro-line-3 {
        font-size: 22px;
        line-height: 150%;
    }
}

@media (max-width: 575.98px) {
    .intro-strip {
        min-height: 220px;
        padding-inline: 12px;
    }

    .intro-line-1 {
        font-size: 22px;
        line-height: 140%;
    }

    .intro-line-2 {
        font-size: 20px;
        line-height: 140%;
    }

    .intro-line-3 {
        font-size: 18px;
        line-height: 130%;
    }
}

@media (max-width: 479.98px) {
    .intro-strip {
        min-height: 190px;
        padding-inline: 10px;
    }

    .intro-line-1 {
        font-size: 18px;
        line-height: 130%;
    }

    .intro-line-2 {
        font-size: 16px;
        line-height: 130%;
    }

    .intro-line-3 {
        font-size: 14px;
        line-height: 125%;
    }
}

/** ================== Video Feature ================== **/
:root {
    --vf-bg: rgba(177, 145, 93, 1);
    --vf-top: rgba(0, 0, 0, 0.48);
    --vf-bottom: rgba(177, 145, 93, 1);
    --vf-white: #fff;
    --vf-cover: url("/website/new-img/video-cover.png");
    --vf-cover-size: clamp(480px, 100%, 900px) auto;
    --vf-cover-pos: 50% 50%;
    --vf-cover-opacity: .55;
    --vf-cover-blur: 2px;
    --vf-cover-saturate: 105%;
    --vf-cover-translate-x: 0;
    --vf-cover-translate-y: 0;
}

.video-feature {
    background: var(--vf-bg);
    /*direction: rtl;*/
}

.vf-card {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.vf-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 440px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.vf-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vf-media {
    padding: 0;
    min-height: 290px;
    background: var(--vf-top);
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff0000;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

.vf-info {
    background: rgba(255, 253, 249, 0.24);
    backdrop-filter: blur(49.7px);
    padding: 16px 20px;
}

.vf-info-inner {
    max-width: 100%;
    color: var(--vf-white);
}

.vf-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: start;
    margin: 0;
}

.vf-desc {
    font-family: Cairo, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: start;
    margin: 0;
}

.vf-cta {
    margin-top: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: .55rem 1rem;
    transition: .2s ease;
}

.vf-cta:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-1px);
}

.vf-cta-icon {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .8);
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .vf-card {
        max-width: 960px;
    }

    .vf-media {
        min-height: 170px;
    }
}

@media (max-width: 767.98px) {
    .vf-media {
        min-height: 160px;
    }

    .vf-info {
        padding: 14px 18px;
    }

    .vf-info-inner {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .vf-card {
        border-radius: 14px;
    }

    .vf-media {
        min-height: 150px;
    }

    .vf-phone-frame {
        width: clamp(170px, 50vw, 220px);
    }

    .yt-badge {
        top: 6px;
        right: 6px;
        padding: 6px 8px;
        font-size: 11px;
    }

    .vf-cta {
        padding: .48rem .85rem;
    }

    .vf-cta-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }
}

@media (max-width: 479.98px) {
    .vf-media {
        min-height: 140px;
    }

    .vf-phone-frame {
        width: clamp(150px, 58vw, 190px);
    }
}

/** ================== Location ================== **/
.loc-text {
    color: #2e2e2e;
}

.loc-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 90px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-align: start;
}

.loc-desc {
    color: #6b6b6b;
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-align: start;
}

.loc-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: #9d7b45;
    font-weight: 400;
    transition: .2s ease;
    font-size: 17px;
}

.loc-cta:hover {
    color: #b1884f;
}

.loc-cta-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: 14px;
}

.loc-card {
    position: relative;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    overflow: hidden;
}

.loc-card::before {
    content: "";
    display: block;
    padding-top: 75%;
}

.loc-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}

@media (max-width: 991.98px) {
    .loc-desc {
        line-height: 1.8;
    }
}

@media (max-width: 767.98px) {
    .loc-card::before {
        padding-top: 70%;
    }
}

@media (max-width: 575.98px) {
    .loc-card::before {
        padding-top: 68%;
    }

    .loc-cta-icon {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}

/** ================== Plans Section (Responsive) ================== **/
.plans-section .plan-card {
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px 0px #00000029;
    position: relative;
    z-index: 2;
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(.75rem, 2.5vw, 1.25rem) clamp(1rem, 3vw, 1.5rem) 0 clamp(1rem, 3vw, 1.5rem);
    margin-inline: auto;
    background: rgba(255, 253, 249, 0.32);
    backdrop-filter: blur(5px);
}

/* Header */
.plans-header {
}

.plans-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 120px;
    text-align: center;
    color: #312F4C !important;
    margin: 0;
}

.plans-desc {
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    width: 1191px;
    max-width: 100%;
    margin: 0 auto;
    opacity: 1;
}

/* Tower hooks */
.tower-card {

}

.tower-card[data-tower="A"] {
    background: linear-gradient(
        135deg,
        rgba(221, 193, 142, 0.10) 0%,
        #FFFDF8 40%,
        #FFFFFF 70%,
        #F7F8FF 100%
    );
}

.tower-card[data-tower="B"] {
    background: linear-gradient(
        225deg,
        rgba(221, 193, 142, 0.10) 0%,
        #F3F7FF 35%,
        #FFFFFF 70%,
        #F6FBFF 100%
    );

}

.tower-body {
}

.tower-title {
    font-family: Cairo, sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120px;
    text-align: center;
    color: #312F4C !important;
}

/* Image */
.building-img {
    max-height: 583px;
    width: 100%;
}

/* Unit chips */
.unit-list {
}

.unit-chip, .btn-unit {
    display: block;
    /*width: 115px;*/
    min-height: 44px;
    /*padding: .8rem 1.2rem;*/
    border-radius: 12px;
    background: #FFFDF9;
    border: 0px solid rgba(15, 23, 42, .06);
    text-align: center;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
    font-family: Cairo, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    color: #666666;
}

.unit-chip:hover, .btn-unit:hover {
    transform: translateY(-1px);
    box-shadow: 2px 2px 16px 0px #00000040;
    font-weight: 700;
    color: #B1915D;
}

/* Utilities */
.object-fit-cover {
    object-fit: cover;
}

.py-10 {
    padding-block: 4rem;
}

.mb-6 {
    margin-bottom: 2.5rem;
}

/* Unit details (BG + FG) */
.unit-details-hero {
    margin-top: 1rem;
}

.ud-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 24px #00000029;
}

.ud-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

.ud-content {
    position: relative;
    padding: 24px;
}

.ud-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 20px;
    align-items: center;
}

.ud-fg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
}

.ud-side {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(49, 47, 76, .06);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.ud-kicker {
    font-size: 12px;
    letter-spacing: .12em;
    color: #8B8BA3;
    margin-bottom: 6px;
    text-align: start;
}

.ud-title {
    font-weight: 800;
    font-size: 32px;
    color: #312F4C;
    line-height: 1.1;
    margin: 0;
    text-align: start;
}

.ud-code {
    font-size: 14px;
    color: #8B8BA3;
    margin-top: 4px;
    text-align: start;
}

.ud-specs {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.ud-specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(49, 47, 76, .14);
    color: #312F4C;
    font-size: 15px;
}

.ud-specs li:last-child {
    border-bottom: 0;
}

.ud-specs .label {
    color: #8B8BA3;
}

.ud-close {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    border: 0;
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

/* ===== Plans: Responsive tweaks for small phones ===== */
@media (max-width: 1200px) {
    .plans-desc {
        width: auto;
    }
}

@media (max-width: 992px) {
    .tower-card {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
    }

    .unit-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 12px;
        justify-content: flex-start;
    }

    .btn-unit {
        width: auto;
        max-width: none;
        font-size: 22px;
        height: 40px;
        padding: .6rem .9rem;
    }

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

    .plans-title {
        font-size: 34px;
        line-height: 64px;
    }

    .plans-desc {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .plans-section .plan-card {
        padding: 16px;
    }

    .tower-title {
        text-align: center;
        font-size: 32px;
        line-height: 60px;
    }

    .unit-list {
        justify-content: center;
    }

    .btn-unit {
        min-width: 108px;
        font-size: 20px;
        height: 38px;
    }

    .building-img {
        max-height: none;
        height: auto;
    }
}

@media (max-width: 576px) {
    .container {
        width: 92vw;
    }

    .btn-unit {
        width: calc(50% - 8px);
        max-width: 100%;
    }

    .unit-list {
        align-items: stretch;
    }

    .building-img {
        max-height: none;
        height: auto;
    }
    .plans-desc {
        width: auto;
        font-size: 16px;
        line-height: 26px;
    }

    .plan-card {
        padding: .7rem .9rem;
    }
}

@media (max-width: 479.98px) {
    .btn-unit {
        width: 100%;
        font-size: 18px;
        height: 36px;
    }
    .building-img {
        max-height: none;
        height: auto;
    }
}

/** ================== Features ================== **/
.features-wrap {
    position: relative;
    padding: 40px 0 56px;
    overflow: hidden;
    /*height: 851px;*/
}

.features-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .16) 100%),
    url('/website/new-img/render.png') center/cover no-repeat;
}

.features-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .0);
    backdrop-filter: blur(1px);
}

.features-title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 2%;
    padding: 20px;
    margin: 0;
}

.feature-card {
    position: relative;
    z-index: 1;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    text-align: start;
    cursor: pointer;
    height: 154px;
    box-shadow: 8px 8px 32px 0px #00000014;
    --gold: #B1915D;
    width: 100%;
    padding: 16px 18px;
    background: #ffffff;
    /*display: grid;*/
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr 1fr;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .10);
}

.feature-ol li, .feature-ul li{
    line-height: 138% !important;
}
.feature-title {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0;
    color: #B1915D;
    font-weight: 600;
    font-size: 24px;
    line-height: 130% !important;

    letter-spacing: 0%;
    text-align: center;
}

.feature-logo {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    justify-self: end;
    height: 55px;
    opacity: .95;
}

.feature-card.is-active {
    background: #B1915D;
    color: #FFFFFF;
    backdrop-filter: blur(32px);
}

.feature-card.is-active .feature-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 24px;
    line-height: 130% !important;
}

.feature-card.is-active .feature-logo {
    filter: brightness(0) invert(1) opacity(.95);
}

#featureModal .modal-content {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 23, 42, .2);
}

.feature-modal-hero {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.btn-close-circle {
    position: absolute;
    inset-inline-end: 12px;
    inset-block-start: 12px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 999px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    opacity: 1 !important;
}

.btn-close-circle:hover {
    background: #f8f9fa;
}

.btn-close-circle .btn-close {
    width: 8px;
    height: 20px;
    inset-inline-end: 12px;
    inset-block-start: 12px;
    opacity: 1;
    color: #B1915D !important;
}

.feature-modal-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    margin: 0 0 8px 0;
    text-align: start;
}

.feature-modal-body {
    padding: 16px 20px 20px;
}

.feature-ol {
    list-style: decimal;
    padding: 0 0 0 18px;
    margin: 0 0 10px;
}

.feature-ul {
    list-style: disc;
    padding: 0 0 0 18px;
    margin: 0;
}

.feature-ol li, .feature-ul li {
    margin: 6px 0;
    color: #2d2d2d;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
}

.feature-ol li::marker {
    color: #1e88e5;
    font-weight: 700;
}

.feature-ul li::marker {
    color: #1e88e5;
}

.feature-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .06), transparent);
}

/** ================== Lead Form ================== **/
:root {
    --frame: #bfc5cb;
    --heading: #2e2a44;
    --muted: #98a0a6;
    --accent: #2e2a44;
}

.lead-form-wrap {
    padding: 56px 0;
    background: #f3f5f7;
}

.lead-form-frame {
    border: 15px solid rgba(154, 161, 168, 0.8);
    backdrop-filter: blur(0px);
}

.lead-form-box {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
    padding-block: 50px;
    padding-inline: 160px;
}

.lead-eyebrow {
    color: rgba(49, 47, 76, 1);
    margin: 0 0 4px;
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: start;
}

.lead-title {
    color: var(--heading);
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 0%;
    text-align: start;
}

.form-line .form-control, .form-line .form-select {
    border: 0;
    border-bottom: 1px solid #e1e5ea;
    border-radius: 0;
    padding-inline: 0;
    background: transparent;
    box-shadow: none !important;
    height: 37px;
}

.form-line .form-control:focus, .form-line .form-select:focus {
    border-bottom-color: #c6cad1;
}

.form-label {
    margin-bottom: .25rem;
    color: rgba(49, 47, 76, 1);
    border: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: start;
}

.muted-hint {
    color: var(--muted);
    font-size: .85rem;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: .6rem 1.4rem;
    border-radius: 6px;
}

.btn-accent:hover {
    opacity: .92;
}

@media (max-width: 575.98px) {
    .lead-title {
        font-size: 1.25rem;
    }

    .lead-form-box {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .lead-title {
        font-size: 1.25rem;
    }

    .lead-form-box {
        padding: 10px;
    }
}

/** ================== Gallery (Responsive heights) ================== **/
.gallery-section {
    padding: 40px 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, .03) 0 10%, transparent 11%) 0 0 / 48px 48px,
    #f3f4f6;
}

.g-card {
    background: rgba(255, 255, 255, .9);
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .10);
    height: 523px !important;
}

.g-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    color: #272a33;
}

.g-image {
    border-radius: 16px;
    overflow: hidden;
    background: #e9ecef;
}

.g-image img {
    width: 100% !important;
    height: 523px !important;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* ↓↓↓ Reduce heights on smaller screens */
@media (max-width: 991.98px) {
    .g-card {
        height: 440px !important;
    }

    .g-image img {
        height: 440px !important;
    }
}

@media (max-width: 767.98px) {
    .g-card {
        height: 360px !important;
    }

    .g-image img {
        height: 360px !important;
    }
}

@media (max-width: 575.98px) {
    .g-card {
        height: 300px !important;
    }

    .g-image img {
        height: 300px !important;
    }
}

@media (max-width: 479.98px) {
    .g-card {
        height: 240px !important;
    }

    .g-image img {
        height: 240px !important;
    }
}

.g-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.g-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #dfe3e8;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .08);
}

.g-btn:hover {
    background: #f7f8fa;
}

.g-btn svg {
    width: 16px;
    height: 16px;
}

/** ================== Helpers ================== **/
.backdrop-blur-md {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bg-container {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

.unit-chip.active {
    background-color: #a1885f;
    color: white;
    border-color: #a1885f;
}

/** ================== Floor badges / heading ================== **/
.floot-specs {
    font-family: Cairo, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

:root {
    --floot-tower-size: 114px;
    --floot-tower-radius: 1rem;
    --floot-code-w: 114px;
    --floot-code-h: 41px;
    --floot-code-radius: .9rem;
    --floot-bg: #FFFDF9;
    --floot-border: rgba(108, 117, 125, .35);
    --floot-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.floot-badge {
}

.floot-badge--code {
}

.floot-box {
    background: var(--floot-bg);
    border-radius: 13px;
    box-shadow: 2px 2px 16px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .6rem .8rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.floot-box--tower {
    width: var(--floot-tower-size);
    height: var(--floot-tower-size);
    border-radius: 13px;
    font-family: 'Cigra';
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.floot-box--code {
    width: var(--floot-code-w);
    height: var(--floot-code-h);
    border-radius: 13px;
    font-family: Cairo, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

.floot-heading {
}

.floot-heading__title {
    font-family: 'Cigra', 'Playfair Display', 'Cairo', serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
    text-align: end;
}

.floot-heading__subtitle {
    color: #6c757d;
    margin: .35rem 0 0 0;
    text-transform: uppercase;
    font-family: 'Cigra', 'Playfair Display', 'Cairo', serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: end;
}

.floot-heading--compact .floot-heading__subtitle {
    margin-top: .2rem;
}
