/* ===========================================================
   PROPERTY GOLD — Shared Design System
   =========================================================== */
:root {
    --bg: #0A0D0B;
    --bg-2: #121712;
    --surface: #161C17;
    --surface-2: #1D241E;
    --text: #F2F1EA;
    --text-dim: #9CA69C;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --gold: #D4AF37;
    --gold-bright: #F1C64A;
    --emerald: #1F8A5F;
    --emerald-bright: #2FBE82;
    --rose: #C97B63;
    --grad-gold: linear-gradient(135deg, #B8860B 0%, #F1C64A 55%, #D4AF37 100%);
    --grad-dark: linear-gradient(135deg, #0A0D0B 0%, #161C17 100%);
    --grad-emerald: linear-gradient(135deg, #0F2E1F, #1F8A5F);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.08);
    }

    66% {
        transform: translate(-25px, 25px) scale(0.94);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes waPulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ---------- Progress bar ---------- */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    z-index: 400;
    background: var(--grad-gold);
    background-size: 200% 100%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: width .08s linear;
}

/* ---------- Topbar ---------- */
.topbar {
    background: #0000;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
    font-size: 12px;
    color: var(--text-dim);
    position: relative;
    z-index: 50;
}

.topbar a {
    opacity: .9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar a:hover {
    color: var(--gold-bright);
}

.topbar .contacts {
    display: flex;
    gap: 24px;
}

.topbar .rera {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .03em;
    font-size: 11px;
}

.topbar .socials {
    display: flex;
    gap: 10px;
}

.topbar .socials a {
    width: 24px;
    height: 24px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .socials svg {
    width: 12px;
    height: 12px;
}

/* Generic socials styling (usable anywhere, e.g. footer) */
.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: border-color .25s, color .25s, transform .25s;
}

.socials a:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

.socials svg {
    width: 13px;
    height: 13px;
}

.footer-col .rera {
    font-family: 'IBM Plex Mono', monospace;
}

/* ---------- Nav ---------- */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(10, 13, 11, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

nav.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link img {
    height: 46px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.nav-links a {
    opacity: .72;
    position: relative;
    padding: 4px 0;
    transition: opacity .25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold-bright);
    transition: width .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--gold-bright);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 22px;
    border: 1px solid var(--gold);
    border-radius: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-bright);
    transition: background .25s, color .25s, box-shadow .25s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--grad-gold);
    color: #0A0D0B;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.mobile-panel {
    display: none;
}

@media (max-width:960px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-panel {
        display: flex;
        flex-direction: column;
        gap: 2px;
        position: fixed;
        inset: 0 0 0 auto;
        width: 78%;
        max-width: 320px;
        background: #0E1310;
        z-index: 500;
        padding: 26px 24px;
        transform: translateX(100%);
        transition: transform .35s ease;
        border-left: 1px solid var(--line);
        overflow-y: auto;
    }

    .mobile-panel.open {
        transform: translateX(0);
    }

    .mobile-panel a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .mobile-panel .close-panel {
        align-self: flex-end;
        background: none;
        border: none;
        color: #fff;
        font-size: 26px;
        margin-bottom: 10px;
    }

    .scrim {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .6);
        z-index: 400;
    }

    .scrim.show {
        display: block;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .3s;
}

.btn-primary {
    background: var(--grad-gold);
    background-size: 220% 220%;
    color: #0A0D0B;
    animation: gradientShift 7s ease infinite;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 1.5px solid var(--line-strong);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

.btn-emerald {
    background: var(--grad-emerald);
    color: #fff;
    box-shadow: 0 10px 26px rgba(31, 138, 95, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}

.btn:hover::after {
    left: 130%;
}

.magnetic {
    will-change: transform;
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .3s;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-blobs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .28;
    animation: blobFloat 16s ease-in-out infinite;
}

.hero-blob.b1 {
    width: 460px;
    height: 460px;
    background: var(--gold);
    top: -140px;
    left: -120px;
}

.hero-blob.b2 {
    width: 380px;
    height: 380px;
    background: var(--emerald);
    bottom: -140px;
    right: -100px;
    animation-delay: 3s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold-bright);
    margin-bottom: 22px;
}

.eyebrow .dash {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.12;
}

.hero h1 em {
    font-style: italic;
    font-weight: 300;
    background: var(--grad-gold);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.lead {
    margin-top: 20px;
    max-width: 540px;
    font-size: 16.5px;
    color: var(--text-dim);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 44px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.stat .num {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    color: #fff;
    font-weight: 500;
}

.stat .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative;
    padding: 150px 0 70px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.page-hero .hero-blob {
    opacity: .2;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.breadcrumb a:hover {
    color: var(--gold-bright);
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(28px, 4vw, 44px);
}

.page-hero p {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: var(--text-dim);
    margin-top: 14px;
}

/* ---------- Sections ---------- */
section {
    padding: 100px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 18px;
}

.section-head h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    max-width: 600px;
}

.section-head p {
    color: var(--text-dim);
    max-width: 380px;
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Spotlight cards ---------- */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.14), transparent 70%);
    transition: opacity .35s ease;
    pointer-events: none;
}

.spotlight:hover::before {
    opacity: 1;
}

.spotlight>* {
    position: relative;
    z-index: 1;
}

/* ---------- Marquee ---------- */
.partners-strip {
    padding: 56px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.partner-row {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: marquee 24s linear infinite;
}

.partner-row:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-track span {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--text-dim);
    letter-spacing: .02em;
}

/* ---------- Cards: Project ---------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.project-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .4s, border-color .4s, box-shadow .4s;
    box-shadow: var(--shadow-card);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.project-img {
    height: 210px;
    position: relative;
    overflow: hidden;
    background: var(--surface-2);
    animation: none;
}

.project-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img>img {
    transform: scale(1.07);
}

.project-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 13, 11, 0.85));
}

.project-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    color: #0A0D0B;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: var(--gold-bright);
}

.tag-emerald {
    background: var(--emerald-bright);
    color: #04140C;
}

.tag-rose {
    background: var(--rose);
    color: #1a0a05;
}

.rera-chip {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(10, 13, 11, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'IBM Plex Mono';
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 4px;
}

.project-body {
    padding: 24px;
}

.project-body h3 {
    font-size: 19px;
    margin-bottom: 5px;
}

.project-body .loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gold-bright);
    margin-bottom: 12px;
}

.project-body .loc .icon {
    width: 14px;
    height: 14px;
}

.project-body .desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.chip-row span {
    font-size: 10.5px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-bright);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.project-meta .price {
    font-family: 'IBM Plex Mono';
    color: var(--gold-bright);
    font-size: 14px;
}

.project-meta .price small {
    display: block;
    font-size: 10px;
    color: var(--text-dim);
    font-family: 'Inter';
    font-weight: 400;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    transition: gap .25s, color .25s;
}

.link-arrow:hover {
    gap: 10px;
    color: var(--gold-bright);
}

.link-arrow .icon {
    width: 14px;
    height: 14px;
}

@media (max-width:960px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Icon-chip grids (why-us, services, amenities) ---------- */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.icon-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.icon-item {
    background: var(--surface);
    padding: 34px 26px;
    transition: transform .3s;
}

.icon-item:hover {
    transform: translateY(-4px);
}

.icon-chip {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--grad-gold);
}

.icon-chip .icon {
    stroke: #0A0D0B;
    width: 24px;
    height: 24px;
}

.icon-item:nth-child(4n+2) .icon-chip {
    background: var(--grad-emerald);
}

.icon-item:nth-child(4n+2) .icon-chip .icon {
    stroke: #fff;
}

.icon-item:nth-child(4n+3) .icon-chip {
    background: linear-gradient(135deg, #8A6A2F, #D4AF37);
}

.icon-item:nth-child(4n+3) .icon-chip .icon {
    stroke: #0A0D0B;
}

.icon-item:nth-child(4n) .icon-chip {
    background: linear-gradient(135deg, #1B2430, #1F8A5F);
}

.icon-item:nth-child(4n) .icon-chip .icon {
    stroke: #fff;
}

.icon-item h4 {
    font-size: 17px;
    margin-bottom: 9px;
}

.icon-item p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.icon-item .n {
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    color: var(--gold-bright);
    display: block;
    margin-bottom: 14px;
}

@media (max-width:960px) {
    .icon-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .icon-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Founders ---------- */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.founder-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-card);
    transition: transform .3s;
}

.founder-card:hover {
    transform: translateY(-6px);
}

.founder-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    background: var(--grad-emerald);
}

.founder-card:nth-child(2) .founder-avatar {
    background: var(--grad-gold);
    color: #0A0D0B;
}

.founder-card:nth-child(3) .founder-avatar {
    background: linear-gradient(135deg, #8A6A2F, #C97B63);
}

.founder-card:nth-child(4) .founder-avatar {
    background: linear-gradient(135deg, #1B2430, #1F8A5F);
}

.founder-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.founder-card .role {
    font-size: 11px;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: .05em;
    display: block;
    margin-bottom: 12px;
}

.founder-card p {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width:960px) {
    .founders-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.t-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: transform .3s;
}

.t-card:hover {
    transform: translateY(-5px);
}

.t-card .quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 44px;
    line-height: 1;
    margin-bottom: 8px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.t-card p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 18px;
}

.t-card .name {
    font-size: 15px;
    color: #fff;
}

@media (max-width:960px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--grad-gold);
    background-size: 200% 200%;
    animation: gradientShift 9s ease infinite;
    border-radius: 20px;
    padding: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.22);
}

.cta-band h2 {
    color: #0A0D0B;
    font-size: clamp(22px, 3vw, 32px);
    max-width: 500px;
}

.cta-band .btn-outline {
    border-color: rgba(10, 13, 11, 0.4);
    color: #0A0D0B;
}

.cta-band .btn-outline:hover {
    border-color: #0A0D0B;
}

/* ---------- FAQ ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item {
    background: var(--surface);
}

.faq-q {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15.5px;
    color: #fff;
    font-weight: 500;
}

.faq-q .plus {
    color: var(--gold-bright);
    font-size: 20px;
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-q .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 26px;
}

.faq-item.open .faq-a {
    max-height: 260px;
    padding: 0 26px 22px;
}

.faq-a p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ---------- Contact / Forms ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 56px;
}

.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-soft);
}

.form-card .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-card label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-bright);
    margin-bottom: 6px;
    display: block;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-family: 'Inter';
    font-size: 14px;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
    color: #5c655d;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

.form-card select option {
    background: var(--surface);
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-row .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--grad-gold);
}

.info-row .ic .icon {
    stroke: #0A0D0B;
    width: 20px;
    height: 20px;
}

.info-row:nth-child(2) .ic {
    background: var(--grad-emerald);
}

.info-row:nth-child(2) .ic .icon {
    stroke: #fff;
}

.info-row:nth-child(3) .ic {
    background: linear-gradient(135deg, #8A6A2F, #D4AF37);
}

.info-row:nth-child(4) .ic {
    background: linear-gradient(135deg, #1B2430, #1F8A5F);
}

.info-row:nth-child(4) .ic .icon {
    stroke: #fff;
}

.info-row h5 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-row p,
.info-row p a {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.info-row p a:hover {
    color: var(--gold-bright);
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 6px;
}

.map-embed iframe {
    width: 100%;
    height: 220px;
    border: 0;
    filter: grayscale(.4) invert(.92) contrast(.9);
}

@media (max-width:960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-card .row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Footer ---------- */
footer.site-footer {
    border-top: 1px solid var(--line);
    background: #080A08;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding: 64px 0 34px;
}

.footer-col img {
    height: 46px;
    margin-bottom: 16px;
}

.footer-col h5 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-col p,
.footer-col li {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.85;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a:hover {
    color: var(--gold-bright);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 11px;
    color: #5c655d;
    border-top: 1px solid var(--line);
}

@media (max-width:960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Floating Action Buttons ---------- */
.fab-stack {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 600;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    border-radius: 30px;
    padding: 10px 10px;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    max-width: 44px;
    overflow: hidden;
    white-space: nowrap;
}

.fab-item:hover {
    max-width: 220px;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.fab-item .fab-ic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fab-item .fab-label {
    font-size: 12.5px;
    padding-right: 6px;
    opacity: 0;
    transition: opacity .2s;
}

.fab-item:hover .fab-label {
    opacity: 1;
}

.fab-whatsapp .fab-ic {
    background: #25D366;
}

.fab-whatsapp {
    animation: waPulse 2.6s ease infinite;
}

.fab-call .fab-ic {
    background: var(--grad-gold);
}

.fab-callback .fab-ic {
    background: var(--emerald-bright);
}

button.fab-item {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    text-align: left;
}

.fab-top .fab-ic {
    background: var(--surface);
    border: 1px solid var(--line-strong);
}

.fab-item .fab-ic svg {
    width: 14px;
    height: 14px;
}

.fab-whatsapp .fab-ic svg {
    stroke: none;
    fill: #fff;
}

.fab-call .fab-ic svg {
    stroke: #0A0D0B;
}

.fab-top .fab-ic svg {
    stroke: #fff;
}

.fab-top {
    display: none;
}

.fab-top.show {
    display: flex;
}

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 700;
    background: #12160F;
    border-left: 3px solid var(--gold);
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 13px;
    max-width: 320px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ---------- Utility ---------- */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: 60px;
}

.badge-rera {
    display: inline-block;
    font-family: 'IBM Plex Mono';
    font-size: 11px;
    color: var(--gold-bright);
    border: 1px solid var(--line-strong);
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 14px;
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width:960px) {
    .split {
        grid-template-columns: 1fr;
    }
}

.visual-panel {
    aspect-ratio: 1/1;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.14), transparent 60%), radial-gradient(circle at 80% 80%, rgba(31, 138, 95, 0.12), transparent 55%), var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

/* ===========================================================
   FUTURISTIC LAYER — Page Transitions, Tilt,
   Glow Borders, Particles, Connectivity Cards
   =========================================================== */

/* ---------- Page transition overlay ---------- */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--grad-gold);
    background-size: 200% 200%;
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform .55s cubic-bezier(.77, 0, .18, 1);
    pointer-events: none;
}

.page-transition.reveal-out {
    transform: scaleY(0);
    transform-origin: top;
}

.page-transition.cover-in {
    transform: scaleY(1);
    transform-origin: bottom;
}

/* ---------- 3D tilt ---------- */
.tilt-wrap {
    perspective: 1200px;
}

.tilt {
    transition: transform .12s ease-out, box-shadow .3s ease;
    transform-style: preserve-3d;
}

/* ---------- Animated glow border on buttons ---------- */
.btn-outline {
    position: relative;
    z-index: 0;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    z-index: -1;
    border-radius: 9px;
    background: conic-gradient(from 0deg, var(--gold), transparent 30%, var(--emerald-bright), transparent 60%, var(--gold));
    opacity: 0;
    transition: opacity .35s ease;
    animation: spin 4s linear infinite;
    animation-play-state: paused;
}

.btn-outline:hover::before {
    opacity: 1;
    animation-play-state: running;
}

/* ---------- Floating particles ---------- */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-bright);
    opacity: .5;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: .6;
    }

    90% {
        opacity: .5;
    }

    100% {
        transform: translateY(-140px) translateX(20px);
        opacity: 0;
    }
}

/* ---------- Decorative skyline (hero) ---------- */
.hero-skyline {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    max-width: 560px;
    opacity: .9;
    z-index: 1;
    pointer-events: none;
}

.hero-skyline path {
    stroke: url(#skylineStroke);
    stroke-width: 1.2;
    fill: none;
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    animation: drawLine 2.6s ease forwards .4s;
}

.hero-skyline .fillshape {
    fill: url(#skylineFill);
    opacity: 0;
    animation: fillIn 1s ease forwards 1.8s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillIn {
    to {
        opacity: .9;
    }
}

@media (max-width:960px) {
    .hero-skyline {
        display: none;
    }
}

/* ---------- Connectivity / Location cards ---------- */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.connect-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: transform .3s, border-color .3s;
}

.connect-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.connect-card .ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-gold);
}

.connect-card .ic .icon {
    stroke: #0A0D0B;
    width: 20px;
    height: 20px;
}

.connect-card:nth-child(3n+2) .ic {
    background: var(--grad-emerald);
}

.connect-card:nth-child(3n+2) .ic .icon {
    stroke: #fff;
}

.connect-card:nth-child(3n) .ic {
    background: linear-gradient(135deg, #8A6A2F, #D4AF37);
}

.connect-card h5 {
    font-size: 14.5px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 500;
}

.connect-card p {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width:960px) {
    .connect-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================================
   LEAD-GEN MODALS (Callback Request, Brochure Download, Exit-Intent)
   =========================================================== */
.pg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 6, 0.72);
    backdrop-filter: blur(4px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

body.modal-open {
    overflow: hidden;
}

.pg-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.pg-modal {
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 460px;
    padding: 32px;
    position: relative;
    transform: translateY(18px) scale(.98);
    transition: transform .3s cubic-bezier(.2, .8, .2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.pg-modal-overlay.show .pg-modal {
    transform: translateY(0) scale(1);
}

.pg-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, border-color .2s;
}

.pg-modal-close:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
}

.pg-modal .eyebrow {
    margin-bottom: 10px;
}

.pg-modal h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.pg-modal p.pg-modal-sub {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.pg-modal .form-card {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 14px;
}

.pg-exit-banner {
    position: fixed;
    left: 50%;
    bottom: -140px;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 32px));
    background: var(--surface);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 20px 24px;
    z-index: 850;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: bottom .45s cubic-bezier(.2, .8, .2, 1);
}

.pg-exit-banner.show {
    bottom: 24px;
}

.pg-exit-banner .pg-exit-text h5 {
    font-size: 14.5px;
    color: #fff;
    margin-bottom: 3px;
}

.pg-exit-banner .pg-exit-text p {
    font-size: 12px;
    color: var(--text-dim);
}

.pg-exit-banner .pg-exit-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.pg-exit-banner .pg-exit-close {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
}

@media (max-width:640px) {
    .pg-exit-banner {
        flex-wrap: wrap;
    }

    .pg-exit-banner .pg-exit-actions {
        margin-left: 0;
        width: 100%;
    }

    .pg-modal {
        padding: 26px 22px;
    }
}


/* ===========================================================
   WISHLIST HEART BUTTON
   =========================================================== */
.project-img {
    position: relative;
}

.wishlist-heart {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 13, 11, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .2s, border-color .2s;
    backdrop-filter: blur(3px);
}

.wishlist-heart:hover {
    transform: scale(1.08);
    border-color: var(--gold-bright);
}

.wishlist-heart svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    transition: fill .2s, stroke .2s;
}

.wishlist-heart.active svg {
    fill: var(--rose);
    stroke: var(--rose);
}

.wishlist-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--rose);
    color: #1a0a05;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.wishlist-badge.show {
    display: flex;
}

.wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-dim);
}

.wishlist-empty h3 {
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

table.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    min-width: 640px;
}

table.compare-table th,
table.compare-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--text-dim);
    vertical-align: top;
}

table.compare-table th {
    color: #fff;
    font-weight: 500;
    background: var(--surface-2);
}

table.compare-table td:first-child,
table.compare-table th:first-child {
    color: var(--gold-bright);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

.compare-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.compare-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--text-dim);
    font-size: 13px;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}

.compare-chip.active {
    border-color: var(--gold);
    color: #fff;
    background: var(--surface-2);
}

.compare-chip input {
    accent-color: var(--gold);
}


/* ===========================================================
   BLOG — Index Cards & Article Typography
   =========================================================== */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.blog-card .blog-img {
    height: 180px;
    position: relative;
}

.blog-card .blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.blog-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    line-height: 1.35;
}

.blog-card .desc {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.6;
    flex: 1;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.9;
}

.article-body h2 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 40px 0 16px;
}

.article-body h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 28px 0 12px;
}

.article-body p {
    margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 18px 22px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body strong {
    color: #fff;
    font-weight: 600;
}

.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 4px 20px;
    margin: 24px 0;
    font-style: italic;
    color: #fff;
}

.article-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    max-width: 760px;
    margin: 0 auto 8px;
    font-size: 12.5px;
    color: var(--text-dim);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-toc {
    max-width: 760px;
    margin: 0 auto 36px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 26px;
}

.article-toc h5 {
    color: var(--gold-bright);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.article-toc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-toc a {
    color: var(--text-dim);
    font-size: 13.5px;
    text-decoration: none;
    transition: color .2s;
}

.article-toc a:hover {
    color: var(--gold-bright);
}

@media (max-width:640px) {
    .article-body {
        font-size: 15px;
    }

    .article-body h2 {
        font-size: 22px;
    }
}

/* ---------- Project Photo Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.gallery-grid .gallery-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--surface-2);
}

.gallery-grid .gallery-main {
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background .3s;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.18);
}

.gallery-item .gallery-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(10, 13, 11, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity .3s, transform .3s;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.85);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-prev {
    left: -56px;
}

.lightbox-next {
    right: -56px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold-bright);
}

.lightbox-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 12px;
}

@media (max-width:768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid .gallery-main {
        grid-column: 1 / 3;
        grid-row: 1;
        aspect-ratio: 16/9;
    }

    .lightbox-prev {
        left: -44px;
    }

    .lightbox-next {
        right: -44px;
    }
}

@media (max-width:480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .gallery-main {
        grid-column: 1;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

/* ==========================================================================
   FUTURISTIC & MOTION GRAPHICS ENGINE
   ========================================================================== */

/* Particle & Cyber Grid Background */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.cyber-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    pointer-events: none;
    z-index: 1;
}

.cyber-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, transparent 20%, var(--bg) 80%);
}

/* Spotlight Mouse Glow System */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mx, 0px) var(--my, 0px),
            rgba(212, 175, 55, 0.08),
            transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.spotlight:hover::before {
    opacity: 1;
}

/* HUD Panels & Border Styling */
.hud-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(22, 28, 23, 0.45);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
    z-index: 2;
}

.hud-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(400px circle at var(--mx, 0px) var(--my, 0px),
            rgba(212, 175, 55, 0.05),
            transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.hud-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Corner HUD accents */
.hud-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: rgba(212, 175, 55, 0.4);
    border-style: solid;
    pointer-events: none;
}

.hud-corner.tl {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.hud-corner.tr {
    top: -1px;
    right: -1px;
    border-width: 2px 2px 0 0;
}

.hud-corner.bl {
    bottom: -1px;
    left: -1px;
    border-width: 0 0 2px 2px;
}

.hud-corner.br {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.hud-card:hover .hud-corner {
    border-color: var(--gold-bright);
    filter: drop-shadow(0 0 4px var(--gold));
}

/* HUD Ticks / Coordinates */
.hud-ticks {
    position: absolute;
    top: 8px;
    right: 15px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    color: rgba(212, 175, 55, 0.5);
    letter-spacing: 0.1em;
    pointer-events: none;
}

/* Dynamic Interactive SVG Charts */
.visualizer-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 200px;
    height: 200px;
    position: relative;
}

.visualizer-chart svg {
    transform: rotate(-90deg);
}

.chart-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 12px;
}

.chart-value {
    fill: none;
    stroke: var(--gold);
    stroke-width: 12px;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.35));
}

.chart-value-secondary {
    fill: none;
    stroke: var(--emerald-bright);
    stroke-width: 12px;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 6px rgba(47, 190, 130, 0.35));
}

.chart-center-text {
    position: absolute;
    text-align: center;
    color: #fff;
}

.chart-center-text .val {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 2px;
}

.chart-center-text .lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Line / Bar Chart visualizer for ROI growth */
.roi-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 160px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    margin: 25px 0 10px;
}

.roi-bar-column {
    flex: 1;
    margin: 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.roi-bar-value {
    width: 100%;
    background: linear-gradient(180deg, var(--gold-bright) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-radius: 4px 4px 0 0;
    height: 0%;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.roi-bar-value.rent-part {
    background: linear-gradient(180deg, var(--emerald-bright) 0%, rgba(47, 190, 130, 0.15) 100%);
}

.roi-bar-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--text-dim);
    margin-top: 6px;
}

/* Cyber Slider controls styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-bright);
    cursor: pointer;
    box-shadow: 0 0 8px var(--gold);
    transition: transform 0.2s, background-color 0.2s;
    border: 2px solid var(--bg);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #fff;
    box-shadow: 0 0 14px var(--gold-bright);
}

/* Card tilts & Glows */
.t-card,
.icon-item {
    border-radius: var(--radius);
    background: rgba(22, 28, 23, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.t-card:hover,
.icon-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.05);
}

/* Glitch Title Animation */
@keyframes cyberGlow {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
    }

    50% {
        text-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
    }
}

.glow-title {
    animation: cyberGlow 4s infinite alternate;
}

/* ==========================================================================
   DROPDOWN NAVIGATION & DATA TABLES
   ========================================================================== */

/* Navigation Dropdown Menu Redesign */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--text-dim);
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--gold-bright);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    background: rgba(18, 23, 19, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 12px;
    padding: 16px;
    width: 320px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Sub-headers inside dropdown */
.nav-dropdown-header {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
    padding: 4px 12px;
    opacity: 0.85;
    margin-top: 6px;
    margin-bottom: 2px;
}

.nav-dropdown-header:first-of-type {
    margin-top: 0;
}

.nav-dropdown-menu a {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-dim) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
    text-align: left;
}

.nav-dropdown-menu a::after {
    display: none !important;
    /* Disable underwriting animation for menu dropdown anchors */
}

.nav-dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #fff !important;
}

.nav-dropdown-menu a .item-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.nav-dropdown-menu a .item-desc {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.35;
}

/* Standalone Amortization & ROI tables */
.hud-table-wrapper {
    margin-top: 30px;
    max-height: 380px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    background: rgba(10, 13, 11, 0.35);
}

.hud-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    text-align: left;
}

.hud-table th {
    background: rgba(22, 28, 23, 0.85);
    color: var(--gold-bright);
    font-weight: 500;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 10;
}

.hud-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
}

.hud-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.hud-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.01);
}

/* Scrollbar customization for HUD table */
.hud-table-wrapper::-webkit-scrollbar {
    width: 6px;
}

.hud-table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.hud-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.hud-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* ==========================================================================
   PROJECTS STANDALONE ENGINE: CYBER FILTERS & DECK GRID
   ========================================================================== */

/* Split layout wrapper */
.projects-split-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

@media (max-width: 960px) {
    .projects-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Sidebar Dashboard hud style */
.filter-sidebar-hud {
    position: sticky;
    top: 90px;
    z-index: 10;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group:last-of-type {
    margin-bottom: 0;
}

.filter-group-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.filter-chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Cyber filter chips */
.filter-chip {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-dim);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
}

.filter-chip:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
    background: rgba(212, 175, 55, 0.04);
}

.filter-chip.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    border-color: transparent;
    color: #000;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
    font-weight: 600;
}

/* Active cyber-log widget */
.stats-ledger-widget {
    margin-top: 24px;
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--text-dim);
    background: rgba(212, 175, 55, 0.01);
}

.stats-ledger-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.stats-ledger-row:last-child {
    margin-bottom: 0;
}

.status-dot-blink {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald-bright);
    box-shadow: 0 0 8px var(--emerald);
    display: inline-block;
    animation: blink 1.5s infinite;
    margin-right: 4px;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Project Card fading/transitions */
.project-card {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-card.hidden {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

/* ==========================================================================
   HOMEPAGE v3.0: NEXT LEVEL FUTURISTIC INTERACTION ENGINE
   ========================================================================== */

/* Aurora Background Orbs */
.hero-home {
    background: #060907;
    position: relative;
    overflow: hidden;
    /* Override the base .hero flex layout so the split-screen grid works correctly */
    display: block;
    min-height: 100vh;
    padding: 140px 0 0;
}

.aurora-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    mix-blend-mode: screen;
}

.ao-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.85) 0%, rgba(212, 175, 55, 0) 70%);
    top: -180px;
    left: -150px;
    animation: auroraFloat1 22s ease-in-out infinite alternate;
}

.ao-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(31, 138, 95, 0.7) 0%, rgba(31, 138, 95, 0) 70%);
    bottom: -150px;
    right: -100px;
    animation: auroraFloat2 18s ease-in-out infinite alternate;
}

.ao-3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(125, 249, 255, 0.5) 0%, rgba(125, 249, 255, 0) 70%);
    top: 40%;
    left: 45%;
    animation: auroraFloat3 25s ease-in-out infinite alternate;
}

@keyframes auroraFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, 60px) scale(1.15);
    }
}

@keyframes auroraFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-70px, -50px) scale(1.2);
    }
}

@keyframes auroraFloat3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, -80px) rotate(180deg) scale(1.1);
    }
}

/* Split-screen Hero Layout */
.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    min-height: calc(100vh - 140px);
}

.hero-left {
    max-width: 680px;
}

.hero-h1 {
    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}

.typed-em {
    font-style: italic;
    font-weight: 300;
    background: var(--grad-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-right: 2px solid transparent;
}

.blink-cursor {
    font-weight: 200;
    color: var(--gold-bright);
    animation: cursorBlink 0.8s step-end infinite;
    margin-left: 2px;
}

@keyframes cursorBlink {

    from,
    to {
        color: transparent
    }

    50% {
        color: var(--gold-bright)
    }
}

/* Right-side 3D Building Presentation */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.building-visual-wrap {
    width: 100%;
    max-width: 380px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: floatVisual 6s ease-in-out infinite;
}

@keyframes floatVisual {

    0%,
    100% {
        transform: translateY(0) rotateY(2deg);
    }

    50% {
        transform: translateY(-12px) rotateY(-2deg);
    }
}

.building-svg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 13, 11, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft), 0 0 40px rgba(212, 175, 55, 0.05);
    overflow: visible;
}

.rera-float-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 46, 31, 0.85);
    border: 1px solid var(--emerald);
    color: var(--emerald-bright);
    padding: 6px 14px;
    border-radius: 30px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(31, 138, 95, 0.25);
    z-index: 10;
}

.rera-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--emerald-bright);
    animation: blink 1.5s infinite;
}

/* Floating Data Cards */
.float-card {
    position: absolute;
    background: rgba(22, 28, 23, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 5;
    transition: transform 0.3s ease;
}

.float-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.fc-price {
    bottom: 50px;
    left: -35px;
    border-left: 3px solid var(--gold);
}

.fc-rera {
    top: 130px;
    left: -45px;
    border-left: 3px solid var(--emerald);
}

.fc-label {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

.fc-value {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.fc-value.fc-emerald {
    color: var(--emerald-bright);
}

.fc-sub {
    font-size: 10px;
    color: var(--text-dim);
}

/* Animated SVG Windows */
.win-blink {
    animation: winBlink1 4s infinite alternate;
}

.win-blink-2 {
    animation: winBlink2 5s infinite alternate;
}

.win-blink-3 {
    animation: winBlink3 6s infinite alternate;
}

@keyframes winBlink1 {

    0%,
    30% {
        opacity: 0.15;
        fill: #443b22
    }

    40%,
    100% {
        opacity: 0.85;
        fill: #F4D060
    }
}

@keyframes winBlink2 {

    0%,
    50% {
        opacity: 0.1;
        fill: #443b22
    }

    60%,
    100% {
        opacity: 0.82;
        fill: #F4D060
    }
}

@keyframes winBlink3 {

    0%,
    20% {
        opacity: 0.8;
        fill: #F4D060
    }

    30%,
    80% {
        opacity: 0.15;
        fill: #443b22
    }

    90%,
    100% {
        opacity: 0.85;
        fill: #F4D060
    }
}

/* Market Ticker Strip */
.market-ticker-strip {
    margin-top: 60px;
    width: 100%;
    background: rgba(10, 13, 11, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.ticker-label {
    background: var(--grad-gold);
    color: #000;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 12px 20px;
    white-space: nowrap;
    position: relative;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.ticker-scroll {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: tickerRun 38s linear infinite;
    padding-left: 20px;
}

.ticker-item {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ticker-sep {
    color: rgba(212, 175, 55, 0.4);
    font-size: 8px;
}

.t-name {
    font-weight: 500;
    color: #fff;
}

.t-sep {
    opacity: 0.3;
}

.t-price {
    color: var(--gold-bright);
}

.t-dim {
    color: var(--text-dim);
}

.t-up {
    color: var(--emerald-bright);
    font-weight: 500;
}

.t-rose {
    color: var(--rose);
}

.t-gold {
    color: var(--gold-bright);
}

@keyframes tickerRun {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Location Intelligence Section */
.location-intel-section {
    background: var(--bg);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: rgba(22, 28, 23, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(220px circle at 50% 100%, rgba(212, 175, 55, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(22, 28, 23, 0.7);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(212, 175, 55, 0.02);
}

.location-card:hover::before {
    opacity: 1;
}

.loc-active-count {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
}

.location-card:hover .loc-active-count {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.06);
}

.loc-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.location-card:hover .loc-icon-wrap {
    transform: scale(1.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.location-card h4 {
    font-size: 18.5px;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 600;
}

.loc-stat-row {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.loc-stat-chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 4px;
}

.location-card:hover .loc-stat-chip {
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Process Vertical Timeline */
.process-section {
    background: var(--bg);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.45) 20%, rgba(212, 175, 55, 0.45) 80%, rgba(212, 175, 55, 0.05) 100%);
    z-index: 1;
}

.process-node {
    display: flex;
    gap: 36px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.process-node:last-child {
    margin-bottom: 0;
}

.pn-dot {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--surface);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dim);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-node:hover .pn-dot {
    border-color: var(--gold-bright);
    color: #000;
    background: var(--grad-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.pn-content {
    background: rgba(22, 28, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 28px;
    transition: all 0.4s ease;
    width: 100%;
}

.process-node:hover .pn-content {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(22, 28, 23, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.pn-content h4 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.process-node:hover .pn-content h4 {
    color: var(--gold-bright);
}

.pn-content p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.65;
}

/* Testimonials Carousel Styling */
.testimonials-section {
    padding: 100px 0;
}

.testi-carousel {
    max-width: 860px;
    margin: 40px auto 0;
    position: relative;
}

.testi-slides {
    position: relative;
    min-height: 280px;
}

.testi-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testi-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.testi-quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 90px;
    line-height: 0.3;
    color: rgba(212, 175, 55, 0.18);
    margin-bottom: 12px;
}

.testi-text {
    font-family: 'Fraunces', serif;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.6;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 32px;
}

.testi-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-bright);
}

.testi-name-block {
    display: flex;
    flex-direction: column;
}

.testi-name {
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
}

.testi-stars {
    color: var(--gold-bright);
    font-size: 11px;
    margin-top: 2px;
    letter-spacing: 2px;
}

.testi-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.testi-prev,
.testi-next {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.testi-prev:hover,
.testi-next:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.05);
}

.testi-dots {
    display: flex;
    gap: 10px;
}

.testi-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.testi-dot.active {
    background: var(--gold-bright);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--gold);
}

/* Aurora CTA Section */
.aurora-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #050705;
}

.aurora-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(31, 138, 95, 0.15) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 100%);
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}

.aurora-cta-section .container {
    position: relative;
    z-index: 2;
}

.aurora-cta-section .cta-band {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(22, 28, 23, 0.35);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft), 0 0 50px rgba(31, 138, 95, 0.03);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* Micro-animations and Tilt adjustments */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
}

/* Responsive Overrides */
@media (max-width: 960px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-left {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        order: -1;
        margin-bottom: 20px;
    }

    .building-visual-wrap {
        max-width: 320px;
    }

    .fc-price {
        left: -15px;
        bottom: 30px;
    }

    .fc-rera {
        left: auto;
        right: -15px;
        top: 80px;
    }

    .hero-ctas,
    .hero-stats {
        justify-content: center;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .pn-dot {
        width: 42px;
        height: 42px;
        font-size: 12px;
    }

    .process-node {
        gap: 20px;
    }

    .pn-content {
        padding: 18px 20px;
    }

    .testi-slides {
        min-height: 340px;
    }
}

/* ===========================================================
   CINEMATIC SHOWCASE — full-bleed real-photo scroll gallery
   =========================================================== */
.showcase-section {
    padding-top: 20px;
}

.showcase-stack {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 0 40px;
}

.showcase-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(60px) scale(.98);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
}

.showcase-panel.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.showcase-panel:nth-child(even) {
    grid-template-columns: 1fr 1.3fr;
}

.showcase-panel:nth-child(even) .showcase-media {
    order: 2;
}

.showcase-panel:nth-child(even) .showcase-copy {
    order: 1;
}

.showcase-media {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.showcase-media img {
    position: absolute;
    inset: -8% -8%;
    width: 116%;
    height: 116%;
    object-fit: cover;
    will-change: transform;
    transform: translateY(0) scale(1.02);
    transition: transform .1s linear;
}

.showcase-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 13, 11, .55));
    pointer-events: none;
}

.showcase-copy {
    padding: 44px 48px;
}

.showcase-index {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--gold-bright);
    letter-spacing: .1em;
}

.showcase-copy h3 {
    font-size: 30px;
    margin: 10px 0 14px;
}

.showcase-copy p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 380px;
}

@media (max-width:900px) {
    .showcase-stack {
        padding: 0 20px;
    }

    .showcase-panel,
    .showcase-panel:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .showcase-panel:nth-child(even) .showcase-media,
    .showcase-panel:nth-child(even) .showcase-copy {
        order: initial;
    }

    .showcase-media {
        height: 260px;
    }

    .showcase-copy {
        padding: 28px 26px;
    }
}

/* ===========================================================
   CURSOR GLOW — soft trailing light (desktop only)
   =========================================================== */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .10), transparent 68%);
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: screen;
    will-change: transform;
    transform: translate(-500px, -500px);
    transition: opacity .3s;
}

@media (hover: none) {
    .cursor-glow {
        display: none;
    }
}

/* ===========================================================
   AMBIENT SCROLL HUE SHIFT
   =========================================================== */
body {
    background-color: var(--bg);
    transition: background-color .6s ease;
}

/* ===========================================================
   ANIMATED PROCESS TIMELINE — draw-in connector
   =========================================================== */
.process-timeline::before {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.1s cubic-bezier(.2, .8, .2, 1);
}

.process-timeline.line-drawn::before {
    transform: scaleX(1);
}


/* ===========================================================
   PREMIUM POLISH — glow-border cards, animated underlines,
   ambient backdrop, hero intro stagger, counter glow
   =========================================================== */

/* Rotating conic-gradient glow border on hover */
.glow-border-card {
    position: relative;
    isolation: isolate;
}

.glow-border-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from var(--glow-angle, 0deg), transparent 0%, rgba(212, 175, 55, .95) 12%, transparent 26%, transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
    z-index: 3;
    animation: glowRotate 3.2s linear infinite paused;
}

.glow-border-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

@keyframes glowRotate {
    to {
        --glow-angle: 360deg;
    }
}

@property --glow-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

/* Animated underline that draws in beneath section headings on reveal */
.section-head h2 {
    position: relative;
    display: inline-block;
}

.section-head h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    width: 100%;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .9s cubic-bezier(.2, .8, .2, 1) .15s;
}

.section-head.in h2::after,
.section-head.reveal.in h2::after {
    transform: scaleX(1);
}

/* Global ambient mesh backdrop — sits behind the whole page */
.global-ambient {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.global-ambient span {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .10;
    will-change: transform;
}

.global-ambient .ga-1 {
    width: 620px;
    height: 620px;
    background: var(--gold);
    top: 8%;
    left: -10%;
    animation: gaDrift1 30s ease-in-out infinite;
}

.global-ambient .ga-2 {
    width: 560px;
    height: 560px;
    background: var(--emerald);
    top: 55%;
    right: -12%;
    animation: gaDrift2 34s ease-in-out infinite;
}

.global-ambient .ga-3 {
    width: 420px;
    height: 420px;
    background: #7DF9FF;
    bottom: -10%;
    left: 35%;
    opacity: .06;
    animation: gaDrift3 26s ease-in-out infinite;
}

@keyframes gaDrift1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(80px, 60px);
    }
}

@keyframes gaDrift2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-70px, -50px);
    }
}

@keyframes gaDrift3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.15);
    }
}

@media (prefers-reduced-motion: reduce) {

    .global-ambient span,
    .glow-border-card::before {
        animation: none !important;
    }
}

/* Hero load-in stagger */
.hero-left>* {
    opacity: 0;
    transform: translateY(18px);
    animation: heroIntroUp .8s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-left>*:nth-child(1) {
    animation-delay: .1s;
}

.hero-left>*:nth-child(2) {
    animation-delay: .22s;
}

.hero-left>*:nth-child(3) {
    animation-delay: .34s;
}

.hero-left>*:nth-child(4) {
    animation-delay: .46s;
}

.hero-left>*:nth-child(5) {
    animation-delay: .58s;
}

@keyframes heroIntroUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-left>* {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Stat number glow pulse when count-up completes */
.stat .num.counted {
    animation: numGlowPulse .7s ease;
}

@keyframes numGlowPulse {
    0% {
        text-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }

    40% {
        text-shadow: 0 0 18px rgba(212, 175, 55, .75);
    }

    100% {
        text-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Slightly deeper card lift for glow-border elements on hover */
.glow-border-card:hover {
    transform: translateY(-6px);
}