:root {

    --black: #111111;
    --black-soft: #191919;
    --gold: #b18a45;
    --gold-light: #d4b06a;
    --cream: #f5f0e7;
    --cream-dark: #e9e0d1;
    --white: #ffffff;
    --text: #222222;
    --muted: #777777;
    --border: rgba(177, 138, 69, 0.28);

    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;

    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
    overflow: hidden;
    touch-action: none;
}

img {
    max-width: 100%;
    height: auto;
    max-height: 517px;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: min(
        calc(100% - 36px),
        var(--container)
    );
    margin: 0 auto;
}

:root {
    --header-h: 78px;
    --t-slow: 0.4s;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 90;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background-color var(--t-slow) var(--ease), 
                box-shadow var(--t-slow) var(--ease), 
                height var(--t-slow) var(--ease);
    will-change: background-color, height;
}

.site-header.scrolled,
.site-header.header-scrolled {
    background: rgba(245, 245, 245, 0.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header.is-stuck {
    background: rgba(250, 246, 239, 0.68);
    backdrop-filter: blur(22px) saturate(165%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 
                0 1px 0 rgba(196, 162, 106, 0.18), 
                0 10px 38px rgba(43, 42, 40, 0.09);
    height: 68px;
}

.header-inner {
    width: min(
        calc(100% - 28px),
        var(--container)
    );
    min-height: 68px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 125px;
    max-height: 44px;
    object-fit: contain;
    transition: filter var(--t-slow) var(--ease);
}

.site-header.scrolled .brand-logo,
.site-header.is-sticky .brand-logo {
    filter: brightness(0) saturate(100%); 
    transition: filter 0.3s ease;
}

.brochure-btn {
    display: flex;
    flex-direction: column;
    background-color: #b18a45;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 42px;
    padding: 6px 12px;
    border: 1px solid var(--gold);
    color: var(--white);
    font-size: 9px;
    letter-spacing: 1.5px;
    line-height: 1.15;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.brochure-btn strong {
    color: var(--white);
    font-size: 10px;
}

.brochure-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.brochure-btn:hover strong {
    color: var(--black);
}

.floating-callback {
    position: fixed;
    right: 19px;
    top: 52%;
    transform: translateY(-50%) rotate(-90deg) translateX(50%);
    transform-origin: right center;
    z-index: 900;
    border: 1px solid var(--gold);
    background: linear-gradient(
        135deg,
        #d2a85f,
        #a77731
    );
    color: var(--black);
    padding: 11px 19px;
    display: flex;
    gap: 7px;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 
        0 0 12px rgba(177, 138, 69, 0.7),
        0 0 28px rgba(177, 138, 69, 0.35);
    animation: glowPulse 2.2s infinite;
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: filter 0.3s ease;
}

.floating-callback:hover {
    filter: brightness(1.1);
}

.floating-callback strong {
    font-size: 10px;
    color: var(--black);
}

@keyframes glowPulse {
    0%,
    100% {
        box-shadow:
            0 0 10px rgba(177, 138, 69, 0.55),
            0 0 22px rgba(177, 138, 69, 0.25);
    }

    50% {
        box-shadow:
            0 0 18px rgba(212, 176, 106, 0.9),
            0 0 38px rgba(212, 176, 106, 0.45);
    }
}

@media (max-width: 768px) {
    .floating-callback {
        display: none;
    }
}

.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--black);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        #242424,
        #090909
    );
}

.hero-image {
    width: 100%;
    height: 100%;
    max-height: none; 
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.90) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(
        calc(100% - 36px),
        1000px
    );
    margin: 0 auto;
    padding: 145px 0 85px;
    color: var(--white);
}

.eyebrow,
.section-kicker {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(42px, 12vw, 100px);
    line-height: 0.94;
    letter-spacing: -2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero h {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(42px, 12vw, 100px);
    line-height: 0.94;
    letter-spacing: -2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero h span {
    display: block;
    color: var(--gold-light);
    font-size: clamp(25px, 7vw, 58px);
    margin-top: 14px;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
    font-size: clamp(25px, 7vw, 58px);
    margin-top: 14px;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    max-width: 540px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--serif);
    font-size: clamp(17px, 4vw, 23px);
    line-height: 1.4;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 21px;
    font-size: 10px;
    letter-spacing: 1.7px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    margin-bottom: 20px;
}

.hero-mini-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 17px;
}

.hero-mini-info div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 10px;
}

.hero-mini-info div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
}

.hero-mini-info strong {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--gold-light);
}

.hero-mini-info span {
    font-size: 8px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.section {
    padding: 38px 0;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-cream {
    background: var(--cream);
}

h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 9vw, 70px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

h2 span {
    color: var(--gold);
}

.section-dark h2 {
    color: var(--white);
}

.section-dark h2 span {
    color: var(--gold-light);
}

.section-intro {
    max-width: 650px;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 38px;
}

.section-dark .section-intro {
    color: #bdbdbd;
}

.highlights {
    background: var(--white);
    overflow: hidden;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 45px;
    
    background: transparent;
    border: none;
}

.highlight-card {
    background: var(--white);
    padding: 24px 16px; 
    min-height: 220px;
    box-sizing: border-box; 
    border: 1px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
    .highlight-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(184, 142, 69, 0.08);
    }
}

.highlight-number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 14px;
}

.highlight-card h3 {
    font-family: var(--serif);
    font-size: 22px; 
    font-weight: 400;
    margin: 25px 0 10px;
}

.highlight-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 25px;
    white-space: normal;
}

.about-content h2 span {
    color: var(--gold);
}

.about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 4px; 
    background: transparent; 
}

.image-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    display: block;
}


.image-placeholder span {
    font-family: var(--serif);
    color: rgba(255, 255, 255, 0.4); 
    font-size: 13px;
    letter-spacing: 6px;
    margin-top: 25px; 
    text-transform: uppercase;
}


.image-placeholder strong {
    font-family: var(--serif);
    color: var(--gold); 
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    margin-top: 8px;
    letter-spacing: 1px;
}

.about-content p {
    color: #c6c6c6;
    font-size: 15px;
    line-height: 1.65; 
    margin-bottom: 18px;
    max-width: 620px;
}

.text-link {
    display: inline-block;
    background: var(--gold); 
    color: #ffffff !important; 
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    margin-top: 18px;
    box-shadow: 0 10px 25px rgba(177, 138, 69, 0.3);
    animation: goldGlow 3s infinite ease-in-out;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes goldGlow {
    0% {
        box-shadow: 0 10px 25px rgba(177, 138, 69, 0.3);
    }
    50% {
        box-shadow: 0 10px 35px rgba(177, 138, 69, 0.65);
    }
    100% {
        box-shadow: 0 10px 25px rgba(177, 138, 69, 0.3);
    }
}

@media (hover: hover) {
    .text-link:hover {
        transform: translateY(-2px); 
        box-shadow: 0 15px 40px rgba(177, 138, 69, 0.7);
        filter: brightness(1.05); 
    }
}

.walkthrough {
    background: var(--white);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

.walkthrough-video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: none;
}

.video-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background: linear-gradient(
        135deg,
        #252525,
        #101010
    );
}

.video-fallback p {
    font-family: var(--serif);
    font-size: 25px;
    margin-top: 16px;
}

.video-fallback small {
    color: #aaa;
    font-size: 11px;
    margin-top: 7px;
}

.play-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--black);
    padding-left: 3px;
    font-size: 22px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

@media (hover: hover) {
    .video-wrapper:hover .play-circle {
        transform: scale(1.08);
        background: var(--gold-light, #d4b06a);
    }
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 45px;
}

.config-card {
    background: var(--white);
    padding: 24px 16px 20px; 
    border: 1px solid var(--gold);
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box; 
    box-shadow: 0 10px 30px rgba(184, 142, 69, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
}
.config-card.featured {
    border-color: var(--gold);
    border-top: 1px solid var(--gold); 
    box-shadow: 0 12px 35px rgba(184, 142, 69, 0.06);
}

.config-card > span {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 4px; 
    margin-bottom: 16px;
    text-transform: uppercase;
}

.config-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.config-card strong {
    display: block;
    width: 100%;
    font-family: var(--sans-serif, sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eae3d2; 
}

.config-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    min-height: 54px; 
}

.config-card a {
    display: block;
    width: 100%; 
    background: var(--gold); 
    color: #ffffff !important; 
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 30px; 
    box-sizing: border-box;
    box-shadow: 0 6px 18px rgba(184, 142, 69, 0.25);
    transition: all 0.4s ease;
}

@media (hover: hover) {
    .config-card:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(184, 142, 69, 0.08);
    }
    
    .config-card a:hover {
        filter: brightness(1.08); 
        box-shadow: 0 10px 25px rgba(184, 142, 69, 0.45);
    }
}


.gold-towers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-top: 70px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-sizing: border-box;
}

.gold-towers h3 {
    font-family: var(--serif);
    font-size: 32px; 
    line-height: 1.25;
    font-weight: 400;
    color: #1a1a1a;
    margin: 10px 0 0;
}

.gold-towers p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7; 
    margin-bottom: 24px;
}

.gold-link {
    display: inline-block;
    background: var(--gold); 
    color: #ffffff !important; 
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px; 
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(184, 142, 69, 0.3);
    animation: buttonPulseGlow 3s infinite ease-in-out;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: box-shadow, transform;
}

@keyframes buttonPulseGlow {
    0% {
        box-shadow: 0 10px 25px rgba(184, 142, 69, 0.3);
    }
    50% {
        box-shadow: 0 10px 35px rgba(184, 142, 69, 0.65);
    }
    100% {
        box-shadow: 0 10px 25px rgba(184, 142, 69, 0.3);
    }
}

@media (hover: hover) {
    .gold-link:hover {
        transform: translateY(-2px); 
        box-shadow: 0 15px 40px rgba(184, 142, 69, 0.7);
        filter: brightness(1.05); /
    }
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px; 
    margin-top: 40px;
    background: transparent;
    border: none;
}

.amenity-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    border-radius: 4px; 
    box-sizing: border-box;
    background: #000000; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.amenity-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    z-index: 1; 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.amenity-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;
    z-index: 2; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
}

.amenity-content span {
    position: absolute;
    top: 14px;
    left: 16px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.amenity-content h3 {
    color: #ffffff !important; 
    font-family: var(--sans-serif, sans-serif); 
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

.amenity-content p {
    display: none;
}


@media (hover: hover) {
    .amenity-item:hover {
        transform: scale(1.02); 
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
        z-index: 3;
    }
    
    .amenity-item:hover .amenity-bg {
        transform: scale(1.08);
    }
}

.amenity-note {
    margin-top: 45px;
    padding: 30px 25px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    box-sizing: border-box;
    border-radius: 0 4px 4px 0;
}

.amenity-note strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
}

.amenity-note p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 8px;
}

.floor-plans {
    background: var(--white, #ffffff);
    padding: 60px 0;
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px;
    margin-top: 40px;
}

.floor-plan-card {
    background: var(--white, #ffffff);
    border: 1px solid #eae3d2; 
    border-radius: 8px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(184, 142, 69, 0.02);
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
    will-change: transform, box-shadow;
}

.floor-plan-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; 
    background: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #f2edd2; 
}

.floor-plan-img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(4px);
    will-change: transform;
}

.floor-plan-title {
    background: #8b7355; 
    color: #ffffff !important;
    text-align: center;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.5;
    flex-grow: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-know-more {
    position: absolute;
    background: var(--white, #ffffff);
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.95; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

@media (hover: hover) {
    .plan-know-more {
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .floor-plan-card:hover {
        transform: translateY(-6px); 
        border-color: var(--gold); 
        box-shadow: 0 20px 45px rgba(184, 142, 69, 0.08);
    }
    
    .floor-plan-card:hover .floor-plan-img {
        transform: scale(1.03); 
    }
    
    .floor-plan-card:hover .plan-know-more {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .plan-know-more:hover {
        background: var(--gold); 
        color: #ffffff !important;
        box-shadow: 0 6px 20px rgba(184, 142, 69, 0.35);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #252525;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
}

@media (hover: hover) {
    .gallery-item:hover img {
        transform: scale(1.05);
    }
}

.spec-list {
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.spec-row {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 10px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}

.spec-row > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.spec-row strong {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.spec-row p {
    grid-column: 2 / -1;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    margin-top: 6px;
}

   location-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

.location-layout > div:first-child > p:not(.section-kicker) {
    color: var(--muted);
    font-size: 14px;
    max-width: 550px;
    margin-bottom: 30px;
}

.location-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.location-points div {
    background: var(--white);
    padding: 24px 16px;
    box-sizing: border-box;
    border: 1px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-points strong {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
}

.location-points span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 8px;
}

.map-card {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gold); 
    border-radius: 8px; 
    box-shadow: 0 12px 35px rgba(184, 142, 69, 0.04);
}

.map-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.map-placeholder span {
    letter-spacing: 5px;
    font-size: 10px;
}

.map-placeholder strong {
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1.05;
    margin: 10px 0;
}

.map-placeholder small {
    font-size: 9px;
    letter-spacing: 2px;
}

.enquiry.section-light {
    background-color: #fcfbf8;
    color: #1a1a1a;
    padding: 60px 20px;
    box-sizing: border-box;
    border-bottom: 2px solid #b88e45;
}

.enquiry-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
}

.enquiry-copy {
    width: 100%;
}

.enquiry-copy .section-kicker {
    color: #b88e45;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.enquiry-copy h2 {
    color: #111111;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: serif;
}

.enquiry-copy h2 span {
    color: #b88e45;
}

.enquiry-copy p {
    color: #444444;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.enquiry-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.enquiry-benefits span {
    color: #8c6827;
    font-size: 12px;
    font-weight: 600;
    background: #f4efe6;
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid rgba(184, 142, 69, 0.3);
}

.form-card {
    background: #111111;
    color: #ffffff;
    padding: 30px 24px;
    border-radius: 8px;
    border: 1px solid rgba(184, 142, 69, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #b88e45;
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    padding: 10px 0;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    border-radius: 0;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group select option {
    background-color: #111111;
    color: #ffffff;
}

.form-group input::placeholder {
    color: #888888;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #b88e45;
}

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 20px 0;
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
    cursor: pointer;
}

.consent input {
    width: 16px;
    height: 16px;
    accent-color: #b88e45;
    margin-top: 2px;
}

.submit-btn {
    width: 100%;
    min-height: 50px;
    border: none;
    background: #b88e45;
    color: #000000;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d4a757;
}

.form-note {
    color: #888888;
    font-size: 11px;
    text-align: center;
    margin-top: 14px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 10px;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #b88e45;
    color: #000;
    font-size: 22px;
    font-weight: bold;
}

.form-success h3 {
    font-family: serif;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-success p {
    color: #cccccc;
    font-size: 14px;
}

.site-footer {
    background-color: #0b0b0b;
    color: #a0a0a0;
    padding: 50px 20px 40px;
    font-family: var(--sans-serif, Arial, sans-serif);
    font-size: 13px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-project-name {
    color: var(--gold, #cda252);
    font-size: 18px;
    margin: 0 0 10px;
    font-family: var(--serif, serif);
}

.footer-address, .footer-agent-info {
    margin-bottom: 12px;
    font-size: 12px;
    color: #b0b0b0;
}

.footer-agent-info strong,
.footer-address strong {
    color: #dddddd;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
}

@media (hover: hover) {
    .footer-col ul li a:hover {
        color: var(--gold, #cda252);
    }
}

.footer-divider {
    border: 0;
    border-top: 1px solid #222222;
    margin: 25px 0;
}

.footer-disclaimer-box {
    background: #141414;
    border-left: 3px solid var(--gold, #cda252);
    padding: 15px;
    font-size: 11px;
    color: #888888;
    margin-bottom: 20px;
    border-radius: 2px;
}

.footer-disclaimer-box strong {
    color: #dddddd;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-policy-links a {
    color: #8c734b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.footer-policy-links a:hover {
    text-decoration: underline;
}

.footer-policy-links .divider {
    color: #8c734b;
    font-size: 13px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 99998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.callback-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    padding: 35px 25px 25px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
    box-sizing: border-box;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    will-change: transform, opacity;
}

.modal-overlay.active {
    display: block !important;
    opacity: 1;
}

.callback-modal.active {
    display: block !important;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    padding: 5px;
    cursor: pointer;
    color: #666666;
    transition: color 0.2s ease;
}

@media (hover: hover) {
    .modal-close:hover {
        color: #111111;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: #b88e45;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.modal-title {
    font-family: var(--serif, serif);
    font-size: 26px;
    color: #111111;
    margin: 0;
}

.modal-form .form-group {
    margin-bottom: 12px;
}

.modal-form input[type="text"],
.modal-form input[type="tel"],
.modal-form input[type="email"] {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-form input:focus {
    border-color: #b88e45;
    box-shadow: 0 0 0 2px rgba(184, 142, 69, 0.2);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: #666666;
    margin-bottom: 15px;
    cursor: pointer;
}

.consent-label input {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #b88e45;
}

.modal-submit-btn {
    width: 100%;
    height: 46px;
    background: #b88e45;
    color: #ffffff;
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .modal-submit-btn:hover {
        background: #9a7332;
        transform: translateY(-1px);
    }
}

.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    z-index: 2000;
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.3);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-cta-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.mobile-cta-btn:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-cta-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.mobile-cta-call {
    background: var(--gold, #a38143);
    color: #ffffff;
}
.mobile-cta-call svg {
    stroke: #ffffff;
    fill: none;
}

.mobile-cta-whatsapp {
    background: var(--gold, #a38143);
    color: #000000; 
}
.mobile-cta-whatsapp svg {
    fill: #000000;
}

.mobile-cta-enquire {
    background: var(--gold, #a38143);
    color: #ffffff;
}
.mobile-cta-enquire svg {
    stroke: #ffffff;
    fill: none;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 15px;
    box-sizing: border-box;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: #ffffff;
    color: #111111;
    width: 100%;
    max-width: 400px;
    padding: 30px 24px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid #b88e45;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    will-change: transform;
}

.popup-overlay.active .popup-card {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #f0f0f0;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #333333;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

@media (hover: hover) {
    .popup-close:hover {
        background: #b88e45;
        color: #ffffff;
    }
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-title {
    font-family: var(--serif, serif);
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0;
    color: #111111;
    text-transform: uppercase;
}

.popup-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    color: #b88e45;
    margin: 2px 0 12px 0;
    font-weight: 700;
    text-transform: uppercase;
}

.popup-tagline {
    font-size: 16px;
    font-family: var(--serif, serif);
    letter-spacing: 1.5px;
    color: #111111;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 6px 0;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.popup-field input {
    width: 100%;
    height: 44px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 13px;
    color: #111111;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.popup-field input:focus {
    border-color: #b88e45;
    background: #ffffff;
}

.popup-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 10px;
    color: #666666;
    line-height: 1.3;
    cursor: pointer;
}

.popup-consent input {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #b88e45;
}

.popup-submit-btn {
    width: 100%;
    height: 46px;
    background: #b88e45;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .popup-submit-btn:hover {
        background: #9a7332;
        transform: translateY(-1px);
    }
}

.popup-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.popup-success.active {
    display: block;
}

.popup-success-icon {
    width: 48px;
    height: 48px;
    background: #b88e45;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    font-size: 20px;
}

.popup-success h4 {
    font-family: var(--serif, serif);
    font-size: 22px;
    margin: 0 0 8px 0;
}

.popup-success p {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

@media (max-width: 420px) {
    .hero-content {
        padding-bottom: 75px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h1 span {
        font-size: 24px;
    }

    .hero-mini-info strong {
        font-size: 16px;
    }

    .hero-mini-info span {
        font-size: 7px;
    }

    .highlight-card {
        min-height: 195px;
        padding: 23px 18px;
    }

    .config-card {
        padding: 25px 17px;
    }

    .floating-callback {
        font-size: 11px;
        padding: 9px 14px;
    }

    .form-card {
        padding: 22px 18px;
    }

    .modal-box {
        padding: 28px 22px;
    }
}


@media (max-width: 767px) {
    .highlight-card {
        min-height: auto !important; 
        padding: 24px 20px !important; 
    }

    .config-grid {
        grid-template-columns: 1fr !important; 
        gap: 24px; 
    }

    .config-card {
        padding: 35px 24px 28px !important; 
    }

    .config-card p {
        min-height: auto !important; 
    }

    .gold-towers {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 35px 0;
    }

    .gold-towers h3 {
        font-size: 26px;
        line-height: 1.3;
    }

    .gold-link {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-right: 50px; 
        padding-left: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-disclaimer-box {
        font-size: 10.5px;
        line-height: 1.5;
    }
}


@media (min-width: 768px) {
    .header-inner {
        min-height: 76px;
    }

    .brand-logo {
        width: 155px;
    }

    .brochure-btn {
        min-width: 150px;
        min-height: 46px;
    }

    .hero-content {
        padding-bottom: 100px;
    }

    .highlight-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-layout {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 60px;
    }

    .about-content h2 {
        font-size: 36px; 
    }

    .image-placeholder {
        text-align: left;
        align-items: flex-start;
    }

    .image-placeholder span {
        margin-top: 30px;
    }

    .config-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px;
    }

    .amenity-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .amenity-item {
        aspect-ratio: 4 / 3;
    }

    .amenity-content {
        padding: 24px;
    }

    .amenity-content span {
        top: 20px;
        left: 24px;
    }

    .amenity-content h3 {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 4px;
    }

    .amenity-content p {
        display: block;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 11px;
        margin: 0;
        line-height: 1.4;
    }

    .floor-plan-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 24px;
        margin-top: 45px;
    }

    .floor-plan-title {
        font-size: 12px;
        min-height: 58px;
    }

    .footer {
        padding-bottom: 55px;
    }
}


@media (min-width: 992px) {
    .mobile-cta {
        display: none !important;
    }

    .location-layout {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 60px;
        align-items: start;
    }

    .map-card {
        height: 100%;
        min-height: 450px;
        aspect-ratio: auto;
    }

    .enquiry.section-light {
        padding: 80px 40px;
    }

    .enquiry-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .enquiry-copy h2 {
        font-size: 42px;
    }

    .form-card {
        padding: 40px;
    }
}


@media (min-width: 1100px) {
    .hero-content {
        padding-top: 180px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

@media (min-width: 1200px) {
    .floor-plan-title {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}