::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--navy)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    font-family: var(--sans)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.serif {
    font-family: var(--serif)
}

.gt {
    background: linear-gradient(135deg, #c9a84c, #e8c878, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.bg,
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c9a84c, #e8c878, #c9a84c);
    background-size: 200% auto;
    color: var(--navy);
    font-family: var(--sans);
    font-weight: 700;
    font-size: .875rem;
    padding: .8rem 1.75rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-position .3s, transform .2s, box-shadow .2s;
    letter-spacing: .03em
}

.bg:hover,
.btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, .4)
}

.bo,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .875rem;
    padding: .75rem 1.75rem;
    border-radius: 6px;
    transition: background .2s, color .2s, transform .2s
}

.bo:hover,
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px)
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a84c, #e8c878);
    color: var(--navy);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px
}

.sl {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .55rem;
    display: block
}

.gline {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border: none;
    margin: 0
}

/* HEADER */
#hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .3s, box-shadow .3s
}

#hdr.s {
    background: var(--navy);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .45)
}

#tb {
    background: rgba(10, 22, 40, .7);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: .32rem 0;
    font-size: .74rem;
    color: rgba(255, 255, 255, .5);
    transition: all .3s;
    overflow: hidden
}

#hdr.s #tb {
    height: 0;
    padding: 0;
    opacity: 0
}

.tbi {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.tbi a {
    color: var(--gold)
}

nav.mn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0
}

.lgw {
    display: flex;
    align-items: center;
    gap: 10px
}

.lgi {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c9a84c, #e8c878);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.lgn {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1
}

.lgs {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold)
}

.nl {
    display: flex;
    align-items: center;
    gap: .2rem;
    list-style: none
}

.ni {
    position: relative
}

.nlk {
    color: rgba(255, 255, 255, .8);
    font-size: .83rem;
    font-weight: 500;
    padding: .48rem .85rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .2s, background .2s;
    background: none;
    border: none;
    white-space: nowrap
}

.nlk:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, .06)
}

.dd {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 10px;
    padding: .45rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.dd.wd {
    min-width: 460px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .2rem
}

.ni:hover .dd {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.dlk {
    display: flex;
    flex-direction: column;
    padding: .6rem 1rem;
    border-radius: 7px;
    transition: background .15s
}

.dlk:hover {
    background: rgba(255, 255, 255, .07)
}

.dlk span {
    font-size: .8rem;
    color: #fff;
    font-weight: 500
}

.dlk small {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    margin-top: 2px
}

.nct {
    display: flex;
    align-items: center;
    gap: .7rem
}

.hmb {
    display: none;
    background: none;
    border: none;
    color: #fff;
    padding: .35rem
}

.mnv {
    display: none;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, .08);
    max-height: 80vh;
    overflow-y: auto
}

.mnv.op {
    display: block
}

.mll {
    display: block;
    padding: .82rem 1.5rem;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.mll:hover {
    color: var(--gold)
}

.mss {
    font-size: .63rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    padding: .55rem 1.5rem .2rem
}

.msb {
    display: block;
    padding: .5rem 2rem;
    color: rgba(255, 255, 255, .52);
    font-size: .8rem
}

.msb:hover {
    color: var(--gold)
}

.mct {
    display: flex;
    gap: .7rem;
    padding: .9rem 1.5rem 1.4rem
}

.mct a {
    flex: 1;
    text-align: center;
    padding: .72rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: .84rem
}

.mcc {
    background: linear-gradient(135deg, #c9a84c, #e8c878);
    color: var(--navy)
}

.mcw {
    background: #25d366;
    color: #fff
}

/* PRICE BOX */
.price-box {
    background: linear-gradient(135deg, var(--navy), var(--nm));
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem
}

.pb-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .45);
    margin-bottom: .2rem
}

.pb-val {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1
}

.pb-note {
    font-size: .72rem;
    color: rgba(255, 255, 255, .38);
    margin-top: .25rem
}

.pb-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 1rem 0
}

.pb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.pb-row:last-child {
    border-bottom: none
}

.pb-key {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5)
}

.pb-val2 {
    font-size: .78rem;
    color: #fff;
    font-weight: 600
}

.pb-avail {
    color: #86efac !important
}

/* FORM */
.fbox {
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 14px;
    overflow: hidden
}

.ftop {
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8c878, #c9a84c)
}

.fin {
    padding: 1.5rem
}

.fh {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem
}

.fsub {
    font-size: .75rem;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 1.1rem
}

.fi {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 168, 76, .22);
    border-radius: 7px;
    padding: .68rem .95rem;
    color: #fff;
    font-family: var(--sans);
    font-size: .84rem;
    transition: border-color .2s, background .2s;
    margin-bottom: .65rem
}

.fi::placeholder {
    color: rgba(255, 255, 255, .3)
}

.fi:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, .08)
}

.fi option {
    background: var(--navy)
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin-bottom: .65rem
}

.frow .fi {
    margin-bottom: 0
}

.fbtn {
    width: 100%;
    padding: .85rem;
    border-radius: 7px;
    font-size: .875rem;
    font-weight: 700;
    margin-top: .2rem
}

.fnote {
    text-align: center;
    margin-top: .65rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .3)
}

.fnote a {
    color: var(--gold)
}

.fok {
    text-align: center;
    padding: 2.5rem 1rem
}

.fok .ok {
    font-size: 2.5rem;
    margin-bottom: .75rem
}

.fok h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .4rem
}

.fok p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .5)
}

/* BUILDING LAYOUT */
.bldg-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
    padding: 5rem 0
}

.blog-layout {
    display: grid; 
    gap: 2.5rem;
    align-items: start;
    padding: 5rem 0
}

.bldg-main {
    min-width: 0
}

.bldg-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

/* GALLERY */
.gallery {
    display: grid;
    /* grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr; */
    gap: .75rem;
    height: 360px;
    margin-bottom: 3rem
}

.gal-main {
    grid-row: 1/3
}

.gal-main img{
      height: 100%;
    width: 100%;
}

  

.gcell,
.gal-main {
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628, #1a3a6b);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.gcell::after,
.gal-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(201, 168, 76, .04) 10px, rgba(201, 168, 76, .04) 11px)
}

.glabel {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: .65rem;
    background: rgba(10, 22, 40, .75);
    color: rgba(255, 255, 255, .75);
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 1
}

.gal-main svg {
    width: 80px;
    height: 80px
}

.gcell svg {
    width: 40px;
    height: 40px
}

/* SECTIONS */
.sec-head {
    margin-bottom: 2rem
}

.sh2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2
}

.sh2-lt {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.sp {
    font-size: .92rem;
    color: var(--tm);
    line-height: 1.75;
    margin-top: .5rem
}

/* SPEC TABLE */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem
}

.spec-table tr {
    border-bottom: 1px solid #f0f0f0
}

.spec-table tr:last-child {
    border-bottom: none
}

.spec-table td {
    padding: .75rem 0;
    vertical-align: top
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--navy);
    width: 190px;
    flex-shrink: 0;
    padding-right: 1rem
}

.spec-table td:last-child {
    color: var(--tm)
}

/* FLOOR AVAILABILITY */
.floor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.floor-card {
    background: var(--cream);
    border-radius: 10px;
    padding: 1.1rem;
    border: 1px solid #efefef;
    text-align: center;
    transition: border-color .2s, box-shadow .2s
}

.floor-card:hover {
    border-color: rgba(201, 168, 76, .35);
    box-shadow: 0 6px 20px rgba(10, 22, 40, .08)
}

.fc-floor {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy)
}

.fc-area {
    font-size: .73rem;
    color: var(--tl);
    margin: .15rem 0
}

.fc-price {
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold)
}

.fc-status {
    display: inline-block;
    font-size: .64rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 99px;
    margin-top: .4rem
}

.st-avail {
    background: #dcfce7;
    color: #166534
}

.st-part {
    background: #fef9c3;
    color: #713f12
}

.st-let {
    background: #fee2e2;
    color: #991b1b
}

/* AMENITIES */
.amen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.amen-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    background: var(--cream);
    border-radius: 9px;
    border: 1px solid #efefef;
    transition: border-color .2s
}

.amen-item:hover {
    border-color: rgba(201, 168, 76, .3)
}

.amic {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0a1628, #1a3a6b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.amic i {
    width: 17px;
    height: 17px;
    color: var(--gold)
}

.amname {
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3
}

/* METRO */
.metro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem
}

.metro-box {
    background: var(--navy);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(201, 168, 76, .2)
}

.metro-box-title {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: .85rem
}

.metro-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.metro-row:last-child {
    border-bottom: none
}

.metro-station {
    font-size: .82rem;
    color: #fff
}

.metro-dist {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    background: rgba(201, 168, 76, .1);
    padding: 2px 8px;
    border-radius: 4px
}

.map-box {
    background: linear-gradient(135deg, rgba(15, 36, 71, .85), rgba(10, 22, 40, .92));
    border-radius: 12px;
    height: 100%;
    min-height: 200px;
    border: 1px solid rgba(201, 168, 76, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .85rem;
    position: relative;
    overflow: hidden
}

.map-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 168, 76, .07) 1px, transparent 1px);
    background-size: 20px 20px
}

.map-pin-wrap {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1
}

.map-pin-wrap svg {
    transform: rotate(45deg);
    width: 20px;
    height: 20px;
    color: var(--navy)
}

.map-info {
    text-align: center;
    z-index: 1
}

.map-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--gold)
}

/* NEARBY TABS */
.nb-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap
}

.nbt {
    padding: .38rem .9rem;
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 600;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: var(--tm);
    cursor: pointer;
    transition: all .2s
}

.nbt.active,
.nbt:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.nb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem
}

.nb-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .65rem .85rem;
    background: var(--cream);
    border-radius: 8px
}

.nb-emoji {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px
}

.nb-name {
    font-weight: 600;
    color: var(--navy);
    font-size: .78rem
}

.nb-dist {
    font-size: .67rem;
    color: var(--tl);
    margin-top: 2px
}

/* SIMILAR BUILDINGS */
.sim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.sim-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 1.25rem;
    display: block;
    transition: box-shadow .2s, border-color .2s, transform .2s;
    text-decoration: none
}

.sim-card:hover {
    box-shadow: 0 12px 36px rgba(10, 22, 40, .1);
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-3px)
}

.sim-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0a1628, #1a3a6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem
}

.sim-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold)
}

.sim-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: .2rem;
    transition: color .2s
}

.sim-card:hover .sim-name {
    color: var(--gold)
}

.sim-loc {
    font-size: .72rem;
    color: var(--tl)
}

.sim-price {
    font-size: .75rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: .35rem
}

/* FAQ */
.faq-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: .55rem
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .95rem 1.2rem;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 10px;
    text-align: left;
    transition: background .2s, border-color .2s;
    cursor: pointer
}

.faq-item.open .faq-btn {
    border-radius: 10px 10px 0 0;
    border-color: rgba(201, 168, 76, .3);
    background: rgba(201, 168, 76, .04)
}

.faq-q {
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy);
    flex: 1;
    padding-right: 1rem
}

.faq-ch {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .2s
}

.faq-item.open .faq-ch {
    transform: rotate(180deg)
}

.faq-ans {
    background: #fff;
    border: 1px solid rgba(201, 168, 76, .3);
    border-top: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s, padding .2s;
    border-radius: 0 0 10px 10px
}

.faq-item.open .faq-ans {
    padding: 1rem 1.2rem;
    max-height: 200px
}

.faq-ans p {
    font-size: .84rem;
    color: var(--tm);
    line-height: 1.72
}

/* SIDEBAR EXTRAS */
.sv-card {
    background: var(--cream);
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center
}

.sv-card .sv-icon {
    font-size: 1.75rem;
    margin-bottom: .5rem
}

.sv-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .3rem
}

.sv-desc {
    font-size: .78rem;
    color: var(--tm);
    margin-bottom: 1rem
}

.wa-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    padding: .9rem;
    border-radius: 10px;
    transition: opacity .2s;
    text-decoration: none
}

.wa-card:hover {
    opacity: .9
}

/* PROPERTY CARDS */
.prop-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(10, 22, 40, .12)
}

.pimg {
    height: 160px;
    background: linear-gradient(135deg, #0f2447, #1a3a6b);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.pimg svg {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, .07)
}

.pimg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(201, 168, 76, .04) 10px, rgba(201, 168, 76, .04) 11px)
}

.pbdgs {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 2
}

.avy {
    background: #22c55e;
    color: #fff;
    font-size: .64rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px
}

.ptag {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: .67rem;
    background: rgba(10, 22, 40, .8);
    color: rgba(255, 255, 255, .8);
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2
}

.pbody {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.ptitle {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: .3rem
}

.pmeta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: var(--tl);
    margin-bottom: .75rem;
    flex-wrap: wrap
}

.pstats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: .75rem
}

.psc {
    padding: .45rem .35rem;
    text-align: center
}

.psc+.psc {
    border-left: 1px solid #eee
}

.psl {
    font-size: .58rem;
    color: var(--tl);
    margin-bottom: 2px
}

.psv {
    font-size: .74rem;
    font-weight: 700;
    color: var(--navy)
}

.pfoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto
}

.ppl {
    font-size: .67rem;
    color: var(--tl)
}

.pprice {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold)
}

.pcta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--navy);
    color: #fff;
    font-size: .74rem;
    font-weight: 600;
    padding: .48rem .95rem;
    border-radius: 6px;
    transition: background .2s;
    text-decoration: none
}

.pcta:hover {
    background: var(--nl)
}

/* FOOTER */
footer {
    background: #060e1c;
    color: #fff
}

.fn {
    background: linear-gradient(90deg, #0f2447, #1a3a6b, #0f2447);
    border-top: 1px solid rgba(201, 168, 76, .17);
    border-bottom: 1px solid rgba(201, 168, 76, .17);
    padding: 2.4rem 0
}

.fni {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap
}

.fni h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 700
}

.fni p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
    margin-top: .2rem
}

.nwf {
    display: flex;
    gap: .5rem;
    flex-shrink: 0
}

.nwf input {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(201, 168, 76, .22);
    border-radius: 7px;
    padding: .62rem .95rem;
    color: #fff;
    font-family: var(--sans);
    font-size: .82rem;
    width: 220px
}

.nwf input::placeholder {
    color: rgba(255, 255, 255, .32)
}

.nwf input:focus {
    outline: none;
    border-color: var(--gold)
}

.fmain {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem
}

.fdesc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.72;
    margin: 1rem 0 1.5rem;
    max-width: 260px
}

.fcontact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: .62rem;
    transition: color .2s;
    text-decoration: none
}

.fcontact a:hover {
    color: var(--gold)
}

.fcontact svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0
}

.fsoc {
    display: flex;
    gap: .45rem;
    margin-top: 1.2rem
}

.fsocbtn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .42);
    font-size: .63rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .2s, color .2s
}

.fsocbtn:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.fcol h4 {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem
}

.fcol a {
    display: block;
    font-size: .8rem;
    color: rgba(255, 255, 255, .47);
    margin-bottom: .52rem;
    transition: color .2s;
    text-decoration: none
}

.fcol a:hover {
    color: #fff
}

.fbot {
    padding: 1.4rem 0
}

.fbi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .72rem;
    color: rgba(255, 255, 255, .28)
}

.rera {
    text-align: center;
    max-width: 520px;
    line-height: 1.55
}

.rera span {
    color: rgba(201, 168, 76, .55)
}

.fbi a {
    color: rgba(255, 255, 255, .32);
    margin-left: 1.2rem;
    text-decoration: none
}

.fbi a:hover {
    color: rgba(255, 255, 255, .7)
}

/* FLOAT */
#wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    animation: wap 2s infinite;
    transition: transform .2s;
    text-decoration: none
}

#wa:hover {
    transform: scale(1.1)
}

@keyframes wap {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, .7)
    }
}

#wa svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

.mbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8999
}

.mbcall {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: .95rem;
    background: var(--navy);
    color: #fff;
    border-top: 1px solid rgba(201, 168, 76, .3);
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none
}

.mbwa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: .95rem;
    background: #25d366;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none
}

/* POPUP */

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero3-grid {
        grid-template-columns: 1fr
    }

    .price-box-wrap {
        display: none
    }

    .bldg-layout {
        grid-template-columns: 1fr
    }

    .bldg-sidebar {
        position: static
    }

    .fmain {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .amen-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {

    .nl,
    .nct {
        display: none
    }

    .hmb {
        display: flex
    }

    #hero3 {
        min-height: auto
    }

    .hero3-grid {
        grid-template-columns: 1fr
    }

    .floor-grid {
        grid-template-columns: 1fr 1fr
    }

    .sim-grid {
        grid-template-columns: 1fr 1fr
    }

    .metro-cards {
        grid-template-columns: 1fr
    }

    .nb-grid {
        grid-template-columns: 1fr
    }

    .fmain {
        grid-template-columns: 1fr
    }

    .fni {
        flex-direction: column;
        text-align: center
    }

    .nwf {
        flex-direction: column;
        width: 100%
    }

    .nwf input {
        width: 100%
    }

    .fbi {
        flex-direction: column;
        text-align: center
    }

    .fbi a {
        margin-left: 0;
        margin-right: .75rem
    }

    .frow {
        grid-template-columns: 1fr
    }

    .mbar {
        display: flex
    }

    body {
        padding-bottom: 60px
    }

    #wa {
        bottom: 70px
    }

    .gallery {
        height: 220px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr
    }

    .gal-main {
        grid-row: auto
    }

    .amen-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .floor-grid {
        grid-template-columns: 1fr
    }

    .sim-grid {
        grid-template-columns: 1fr
    }
}




/* Property List Page  */


/* ── Utilities ── */
.serif {
    font-family: var(--serif);
}

.gold {
    color: var(--gold);
}

.gold-text {
    background: linear-gradient(135deg, #c9a84c, #e8c878, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c9a84c, #e8c878, #c9a84c);
    background-size: 200% auto;
    color: var(--navy);
    font-family: var(--sans);
    font-weight: 600;
    font-size: .875rem;
    letter-spacing: .04em;
    padding: .75rem 1.75rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-position .3s, transform .2s, box-shadow .2s;
}

.btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .875rem;
    padding: .75rem 1.75rem;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a84c, #e8c878);
    color: var(--navy);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
}

.section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
    display: block;
}

.gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border: none;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Header ── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .3s, padding .3s, box-shadow .3s;
}

#header.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

#topbar {
    background: rgba(10, 22, 40, .6);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: .35rem 0;
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    transition: height .3s, opacity .3s;
    overflow: hidden;
}

#header.scrolled #topbar {
    height: 0;
    opacity: 0;
    padding: 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-inner a {
    color: var(--gold);
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c9a84c, #e8c878);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.logo-sub {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    font-weight: 500;
    padding: .5rem .9rem;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .2s, background .2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, .06);
}

.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 10px;
    padding: .5rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
}

.dropdown.wide {
    min-width: 440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .25rem;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.drop-link {
    display: flex;
    flex-direction: column;
    padding: .65rem 1rem;
    border-radius: 7px;
    text-decoration: none;
    transition: background .15s;
}

.drop-link:hover {
    background: rgba(255, 255, 255, .07);
}

.drop-link span {
    font-size: .82rem;
    color: #fff;
    font-weight: 500;
}

.drop-link small {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nav-wa {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    color: #fff;
}

.mobile-nav {
    display: none;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, .08);
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav.open {
    display: block;
}

.m-link {
    display: block;
    padding: .85rem 1.5rem;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.m-link:hover {
    color: var(--gold);
}

.m-section {
    padding: .6rem 1.5rem .3rem;
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.m-sub {
    display: block;
    padding: .55rem 2rem;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: .82rem;
}

.m-sub:hover {
    color: var(--gold);
}

.m-ctas {
    display: flex;
    gap: .75rem;
    padding: 1rem 1.5rem 1.5rem;
}

.m-ctas a {
    flex: 1;
    text-align: center;
    padding: .75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
}

.m-call {
    background: linear-gradient(135deg, #c9a84c, #e8c878);
    color: var(--navy);
}

.m-wa {
    background: #25d366;
    color: #fff;
}

/* ── Hero ── */

#hero2 {
    min-height: 88vh;
    background: linear-gradient(110deg, #040d1a 0%, #0a1628 55%, #0f1e3d 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

#hero2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 168, 76, .1) 1px, transparent 1px);
    background-size: 26px 26px;
}

#hero2::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to bottom left, rgba(201, 168, 76, .04), transparent);
    pointer-events: none;
}

.hero2-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 0 2rem;
    text-align: center;
}

.hero2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 99px;
    padding: .4rem 1rem;
    margin-bottom: 2rem;
}

.hero2-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

.hero2-badge span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero2-h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero2-sub {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .6);
    /* max-width: 600px; */
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero2-search {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: .75rem;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.hero2-search input,
.hero2-search select {
    flex: 1;
    min-width: 180px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 8px;
    padding: .7rem 1rem;
    color: #fff;
    font-family: var(--sans);
    font-size: .875rem;
}

.hero2-search input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.hero2-search input:focus,
.hero2-search select:focus {
    outline: none;
    border-color: var(--gold);
}

.hero2-search select {
    color: rgba(255, 255, 255, .6);
}

.hero2-search select option {
    background: var(--navy);
    color: #fff;
}

.hero2-search .btn-gold {
    border-radius: 8px;
    white-space: nowrap;
}

.hero2-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.stat-val {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: .72rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: 3px;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, .6), transparent);
    margin: 2.5rem auto 0;
}

/* ── Office Types Strip ── */
#types {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #f0eff0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.type-card {
    text-align: center;
    padding: 1.25rem .75rem;
    border-radius: 10px;
    border: 1px solid #efefef;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.type-card:hover {
    border-color: rgba(201, 168, 76, .4);
    box-shadow: 0 8px 28px rgba(10, 22, 40, .08);
    transform: translateY(-3px);
}

.type-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .85rem;
    transition: transform .2s;
}

.type-card:hover .type-icon {
    transform: scale(1.08);
}

.type-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.type-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    transition: color .2s;
}

.type-card:hover .type-name {
    color: var(--gold);
}

/* ── Sections ── */
.section {
    padding: 5rem 0;
}

.section-cream {
    background: var(--cream);
}

.section-navy {
    background: var(--navy);
}

.section-dark {
    background: #060e1c;
}

.section-head {
    margin-bottom: 3rem;
}

.section-head.center {
    text-align: center;
}

.section-h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.section-h2.light {
    color: #fff;
}

.section-p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-top: .6rem;
    max-width: 560px;
}

.section-p.center {
    margin: .6rem auto 0;
    text-align: center;
}

.section-p.light {
    color: rgba(255, 255, 255, .55);
}

.flex-between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-all {
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.view-all:hover {
    color: var(--gold);
}

.view-all svg {
    width: 16px;
    height: 16px;
}

/* ── Property Cards ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.prop-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, .13);
}

.prop-img {
    height: 170px;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prop-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(201, 168, 76, .04) 10px, rgba(201, 168, 76, .04) 11px);
}

.prop-img svg {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, .08);
}

.prop-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.prop-type-tag {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: .68rem;
    background: rgba(10, 22, 40, .75);
    color: rgba(255, 255, 255, .8);
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.avail-tag {
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.avail-yes {
    background: #22c55e;
    color: #fff;
}

.avail-no {
    background: #6b7280;
    color: #fff;
}

.prop-body {
    padding: 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prop-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: .35rem;
}

.prop-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-light);
    margin-bottom: .85rem;
    flex-wrap: wrap;
}

.prop-meta svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.prop-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: .85rem;
}

.stat-cell {
    padding: .5rem .4rem;
    text-align: center;
}

.stat-cell+.stat-cell {
    border-left: 1px solid #eeeeee;
}

.stat-cell .s-label {
    font-size: .6rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 2px;
}

.stat-cell .s-val {
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy);
}

.prop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.prop-price-label {
    font-size: .68rem;
    color: var(--text-light);
}

.prop-price {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.prop-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--navy);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s;
}

.prop-cta:hover {
    background: var(--navy-light);
}

/* ── Locations Grid ── */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.loc-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    transition: background .2s, border-color .2s;
    display: block;
}

.loc-card:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(201, 168, 76, .4);
}

.loc-icon {
    width: 38px;
    height: 38px;
    background: rgba(201, 168, 76, .12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
    transition: background .2s;
}

.loc-card:hover .loc-icon {
    background: rgba(201, 168, 76, .22);
}

.loc-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.loc-name {
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .2rem;
    transition: color .2s;
}

.loc-card:hover .loc-name {
    color: var(--gold);
}

.loc-props {
    font-size: .7rem;
    color: rgba(255, 255, 255, .4);
}

.loc-metro {
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 2px;
}

/* ── Why Us ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-feat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feat-card {
    display: flex;
    gap: .85rem;
    background: var(--cream);
    border-radius: 10px;
    padding: 1rem;
    transition: background .2s;
}

.feat-card:hover {
    background: rgba(245, 230, 192, .4);
}

.feat-icon {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.feat-title {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
}

.feat-desc {
    font-size: .74rem;
    color: var(--text-mid);
    margin-top: 2px;
    line-height: 1.5;
}

.stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-panel-card {
    border-radius: 18px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sp-val {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
}

.sp-label {
    font-size: .82rem;
    font-weight: 500;
    margin-top: .3rem;
}

.sp-navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.sp-navy .sp-val {
    color: var(--gold);
}

.sp-navy .sp-label {
    color: rgba(255, 255, 255, .6);
}

.sp-gold {
    background: linear-gradient(135deg, #c9a84c, #e8c878);
}

.sp-gold .sp-val {
    color: var(--navy);
}

.sp-gold .sp-label {
    color: rgba(10, 22, 40, .65);
}

/* ── Buildings ── */
.bld-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.bld-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 1.25rem .9rem;
    text-decoration: none;
    display: block;
    transition: box-shadow .2s, border-color .2s, transform .2s;
}

.bld-card:hover {
    box-shadow: 0 12px 36px rgba(10, 22, 40, .1);
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-3px);
}

.bld-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform .2s;
}

.bld-card:hover .bld-icon {
    transform: scale(1.05);
}

.bld-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.bld-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: .2rem;
    transition: color .2s;
}

.bld-card:hover .bld-name {
    color: var(--gold);
}

.bld-loc {
    font-size: .72rem;
    color: var(--text-light);
}

.bld-grade {
    display: inline-block;
    margin-top: .4rem;
    font-size: .65rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
    padding: 2px 8px;
    border-radius: 3px;
}

/* ── Testimonials ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testi-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 1.6rem;
    transition: border-color .2s;
}

.testi-card:hover {
    border-color: rgba(201, 168, 76, .3);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.star {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    color: var(--gold);
}

.testi-text {
    font-size: .87rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #e8c878);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    color: var(--navy);
    flex-shrink: 0;
}

.testi-name {
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
}

.testi-role {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
}

/* ── Blog ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.blog-card {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: box-shadow .3s, transform .3s;
}

.blog-card:hover {
    box-shadow: 0 16px 48px rgba(10, 22, 40, .1);
    transform: translateY(-4px);
}

.blog-img {
    height: 160px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img svg {
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, .08);
}

.blog-body {
    padding: 1.1rem;
}

.blog-cat {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
}

.blog-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: .4rem;
    margin-bottom: .4rem;
    line-height: 1.35;
    transition: color .2s;
}

.blog-card:hover .blog-title {
    color: var(--gold);
}

.blog-excerpt {
    font-size: .78rem;
    color: var(--text-mid);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-top: .75rem;
    font-size: .7rem;
    color: var(--text-light);
}

/* ── FAQ ── */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: .6rem;
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .2s;
}

.faq-btn:hover {
    background: rgba(245, 230, 192, .5);
}

.faq-q {
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy);
    flex: 1;
    padding-right: 1rem;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-ans {
    background: #fff;
    border: 1px solid #f0eff0;
    border-top: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .2s;
}

.faq-item.open .faq-ans {
    padding: 1rem 1.25rem;
    max-height: 200px;
}

.faq-ans p {
    font-size: .85rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── Lead Section ── */
#lead {
    background: linear-gradient(135deg, #040d1a, #0a1628, #0f2447);
    padding: 5rem 0;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-check {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .6rem;
}

.lead-check svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.lead-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.form-box {
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 14px;
    overflow: hidden;
}

.form-top {
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8c878, #c9a84c);
}

.form-inner {
    padding: 1.75rem;
}

.form-h {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem;
}

.form-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: .75rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 7px;
    padding: .75rem 1rem;
    color: #fff;
    font-family: var(--sans);
    font-size: .875rem;
    transition: border-color .2s, background .2s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, .08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.form-input option {
    background: var(--navy);
}

.form-btn {
    width: 100%;
    padding: .9rem;
    margin-top: .5rem;
    border-radius: 7px;
    font-size: .875rem;
    font-weight: 700;
}

.form-note {
    text-align: center;
    margin-top: .75rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
}

.form-note a {
    color: var(--gold);
    text-decoration: none;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success .ok {
    font-size: 2.5rem;
    margin-bottom: .75rem;
}

.form-success h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .4rem;
}

.form-success p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
}

/* ── Footer ── */
footer {
    background: #060e1c;
    color: #fff;
}

.footer-news {
    background: linear-gradient(90deg, #0f2447, #1a3a6b, #0f2447);
    border-top: 1px solid rgba(201, 168, 76, .18);
    border-bottom: 1px solid rgba(201, 168, 76, .18);
    padding: 2.5rem 0;
}

.footer-news-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-news h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-news p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-top: .2rem;
}

.news-form {
    display: flex;
    gap: .5rem;
    flex-shrink: 0;
}

.news-form input {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 7px;
    padding: .65rem 1rem;
    color: #fff;
    font-family: var(--sans);
    font-size: .82rem;
    width: 230px;
}

.news-form input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.news-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.footer-main {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    max-width: 260px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    margin-bottom: .65rem;
    transition: color .2s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer-socials {
    display: flex;
    gap: .5rem;
    margin-top: 1.25rem;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .45);
    font-size: .65rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    margin-bottom: .55rem;
    transition: color .2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .73rem;
    color: rgba(255, 255, 255, .3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    margin-left: 1.25rem;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, .7);
}

.rera {
    text-align: center;
    max-width: 500px;
    line-height: 1.5;
}

.rera span {
    color: rgba(201, 168, 76, .55);
}

/* ── Floating Buttons ── */
#wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    animation: waP 2s infinite;
    transition: transform .2s;
}

#wa-btn:hover {
    transform: scale(1.1);
}

@keyframes waP {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, .7)
    }
}

#wa-btn svg {
    width: 26px;
    height: 26px;
    color: #fff;
    fill: #fff;
}

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8999;
}

.mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 1rem;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
}

.mb-call {
    background: var(--navy);
    color: #fff;
    border-top: 1px solid rgba(201, 168, 76, .3);
}

.mb-wa {
    background: #25d366;
    color: #fff;
}



/* ── Responsive ── */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .types-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .loc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bld-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .cards-grid,
    .testi-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bld-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .lead-grid {
        grid-template-columns: 1fr;
    }

    .why-feat,
    .stats-panel {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-news-inner {
        flex-direction: column;
        text-align: center;
    }

    .news-form {
        flex-direction: column;
        width: 100%;
    }

    .news-form input {
        width: 100%;
    }

    .mobile-bar {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }

    #wa-btn {
        bottom: 72px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: .75rem;
    }
}

@media (max-width: 480px) {
    .types-grid {
        grid-template-columns: 1fr 1fr;
    }

    .loc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bld-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-panel {
        grid-template-columns: 1fr 1fr;
    }

    .hero2-search {
        flex-direction: column;
    }
}



.about-project p {

    font-size: .92rem;
    color: var(--tm);
    line-height: 1.82;
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 1rem;
    /* 8px */
}