:root {
    --black: #080808;
    --black-soft: #121212;
    --charcoal: #1a1a1a;
    --gold: #c9a24d;
    --gold-light: #e8d5a8;
    --gold-dark: #9a7a32;
    --gold-glow: rgba(201, 162, 77, 0.35);
    --white: #ffffff;
    --cream: #f7f4ee;
    --text: #141414;
    --text-muted: #5c5c5c;
    --glass: rgba(8, 8, 8, 0.55);
    --radius: 2px;
    --radius-lg: 12px;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold-dark);
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    position: relative;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 0%, rgba(201, 162, 77, 0.08), transparent 60%),
        radial-gradient(ellipse 50% 30% at 90% 100%, rgba(201, 162, 77, 0.06), transparent 55%);
    pointer-events: none;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    opacity: 0.7;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0;
}

.eyebrow.light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    color: var(--black);
    margin: 0 0 1rem;
    font-weight: 600;
}

.section-title.light {
    color: var(--gold-light);
}

.section-text {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.section-text.light {
    color: rgba(255, 255, 255, 0.78);
}

.equal-grid {
    display: grid;
    align-items: stretch;
}

.equal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-primary,
.btn-enquire,
.btn-submit {
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    font-family: inherit;
}

.btn-primary:hover,
.btn-enquire:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--gold-glow);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold-dark);
    padding: 0.75rem 1.4rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-submit.full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: transparent;
    transition: background 0.4s var(--ease), padding 0.3s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(16px);
    padding: 0.65rem 5%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(201, 162, 77, 0.2);
}

.navbar-brand {
    text-decoration: none;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 162, 77, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.logo-wrap img {
    width: 130px;
    height: auto;
    display: block;
}

.logo-wrap-footer {
    margin-bottom: 1rem;
    background: var(--white);
}

.navbar.scrolled .logo-wrap {
    border-color: rgba(201, 162, 77, 0.5);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0.7rem;
    transition: color 0.2s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: var(--gold-light);
}

.navbar.scrolled .nav-link {
    text-shadow: none;
}

.navbar .btn-enquire {
    margin-left: 0.5rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.72rem;
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold);
}

.navbar .btn-enquire:hover {
    background: var(--gold);
    color: var(--black);
}

.hamburger {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.35);
    font-size: 1.4rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.3rem 0.55rem;
    border-radius: var(--radius);
}

.sidenav {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    z-index: 200;
    background: var(--black);
    overflow-x: hidden;
    transition: width 0.4s var(--ease);
    padding-top: 3.5rem;
    border-left: 1px solid rgba(201, 162, 77, 0.25);
}

.sidenav.open {
    width: 280px;
}

.sidenav .closebtn {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: none;
    background: transparent;
    color: var(--gold-light);
    font-size: 2rem;
    cursor: pointer;
}

.sidenav a {
    display: block;
    padding: 0.85rem 2rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.sidenav a:hover {
    color: var(--gold-light);
    padding-left: 2.3rem;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    padding: 0;
}

.hero-canvas {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6.5rem 5% 4rem;
    overflow: hidden;
    max-width: 100%;
}

.hero-canvas > img,
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    z-index: 0;
    pointer-events: none;
}

.banner-mobile {
    display: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.45) 0%, rgba(8, 8, 8, 0.25) 45%, rgba(8, 8, 8, 0.65) 100%),
        radial-gradient(ellipse at center, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.55) 100%);
}

.hero-glass-card {
    position: relative;
    z-index: 2;
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 162, 77, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 100%;
}

.hero-copy {
    margin: 0 auto;
    max-width: min(640px, 100%);
    width: 100%;
    text-align: center;
}

.hero-copy .btn-primary {
    margin: 0;
}

.hero-cta-row,
.contact-cta-row,
.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.25rem;
}

.contact-cta-row {
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1.35rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    font-family: inherit;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.2s ease;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.btn-cta-call {
    background: #1a1a1a;
    color: var(--gold-light);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-cta-call:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 12px 30px var(--gold-glow);
}

.btn-cta-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #1ebe57;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-cta-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.btn-cta-pulse {
    animation: ctaPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 var(--gold-glow);
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.55);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(201, 162, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0);
    }
}

.hero-kicker {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-lead {
    margin: 1.25rem auto 1.75rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 162, 77, 0.35);
    justify-content: center;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stats span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.25rem;
}

.form-glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    pointer-events: none;
}

.form-kicker {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
}

.hero-form-card h2 {
    margin: 0.35rem 0 1.25rem;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.65);
}

.form-group input,
.enquiry-form input:not([type="hidden"]) {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.6rem 0;
    font: inherit;
    background: transparent;
    outline: none;
    color: var(--white);
}

.form-group input::placeholder,
.enquiry-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.enquiry-form input:focus {
    border-bottom-color: var(--gold);
}

.enquiry-form .btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Overview */
.overview-section {
    background: var(--cream);
}

.overview-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
}

.overview-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.overview-quote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: var(--black);
    font-weight: 600;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}

.overview-editorial .section-text {
    margin: 0;
    max-width: none;
}

/* Highlights */
.highlights-section .container {
    position: relative;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: stretch;
}

.highlights-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.highlights-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 162, 77, 0.4);
    border-radius: inherit;
    pointer-events: none;
}

.highlights-image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.highlights-image:hover img {
    transform: scale(1.04);
}

.highlights-image-mobile {
    display: none;
    margin: 1.5rem 0;
}

.highlights-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.highlights-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 77, 0.12);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.highlights-list li:hover {
    border-color: rgba(201, 162, 77, 0.45);
    background: rgba(201, 162, 77, 0.06);
}

.highlights-list li img {
    width: 40px;
    filter: brightness(1.1);
}

.highlights-list li span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
}

/* Configuration */
.configuration-section {
    background: var(--white);
}

.config-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.config-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.config-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.config-card.featured {
    background: var(--black);
    border-color: var(--gold);
}

.config-card.featured .config-badge,
.config-card.featured .config-label {
    color: rgba(255, 255, 255, 0.5);
}

.config-card.featured h3,
.config-card.featured .config-area {
    color: var(--gold-light);
}

.config-badge {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.config-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--black);
}

.config-area {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.config-label {
    margin: 0 0 1.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.config-card .btn-primary,
.config-card .btn-outline-gold {
    margin-top: auto;
}

.table-note {
    text-align: right;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Amenities */
.amenities-section .container {
    position: relative;
    z-index: 1;
}

.amenities-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
    margin-top: 2.5rem;
}

.amenity-card {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 77, 0.15);
    transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: rgba(201, 162, 77, 0.08);
}

.amenity-card:nth-child(9),
.amenity-card:nth-child(12) {
    grid-column: span 1;
}

.amenity-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin: 0 auto 0.65rem;
}

.amenity-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery */
.gallery-section {
    background: var(--cream);
    overflow: hidden;
}

.carousel {
    position: relative;
    margin-top: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
    animation: fadeSlide 0.5s var(--ease);
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.gallery-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--black);
    color: var(--gold-light);
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.gallery-carousel-mobile {
    display: none;
}

/* Connectivity */
.connectivity-section .container {
    position: relative;
    z-index: 1;
}

.connectivity-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.connect-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.connect-card.open {
    border-color: var(--gold);
    background: rgba(201, 162, 77, 0.06);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1.15rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--gold-light);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.accordion-arrow {
    transition: transform 0.25s ease;
    color: var(--gold);
    font-size: 0.85rem;
}

.connect-card.open .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    display: none;
    padding: 0 1.25rem 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.8;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
}

.connect-card.open .accordion-body {
    display: block;
}

/* Floor Plan */
.floor-plan-section {
    background: var(--white);
}

.floor-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0 1.5rem;
}

.floor-tab {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--cream);
    color: var(--text);
    padding: 0.65rem 1.25rem;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.floor-tab:hover,
.floor-tab.active {
    background: var(--black);
    color: var(--gold-light);
    border-color: var(--gold);
}

.floor-panels {
    position: relative;
}

.floor-panel {
    display: none;
}

.floor-panel.active {
    display: block;
    animation: fadeSlide 0.45s var(--ease);
}

.floor-showcase {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow);
    align-items: stretch;
}

.floor-showcase img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: contain;
    background: var(--cream);
    padding: 1.5rem;
}

.floor-meta {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.floor-meta h4 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-light);
    font-weight: 600;
}

.floor-meta p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Contact */
.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.contact-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    align-items: start;
}

.contact-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gold-dark);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* About */
.about-section {
    background: var(--white);
    text-align: center;
}

.about-logo {
    margin: 1.5rem auto;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.75);
    padding: 3.5rem 0 2rem;
    border-top: 1px solid rgba(201, 162, 77, 0.2);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-brand .logo-wrap-footer img {
    max-width: 240px;
    width: 100%;
}

.footer-heading {
    color: var(--gold-light);
    font-weight: 700;
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.footer a {
    color: var(--gold-light);
}

.rera-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 1.5rem auto;
    font-size: 0.88rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 162, 77, 0.15);
}

.rera-block img {
    flex-shrink: 0;
}

.disclaimer-block {
    border-top: 1px solid rgba(201, 162, 77, 0.15);
    padding-top: 1.5rem;
    font-size: 0.82rem;
}

.footer-credit {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: 0.85rem;
}

.mobile-only { display: none; }
.desktop-only { display: block; }

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 300;
}

.modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-panel {
    position: relative;
    max-width: 440px;
    margin: 8vh auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    z-index: 1;
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 0.75rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-panel h3 {
    margin: 0 0 1.25rem;
    color: var(--black);
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
}

.modal-panel .form-group label {
    color: var(--text-muted);
}

.modal-panel .form-group input,
.modal-panel .enquiry-form input:not([type="hidden"]) {
    color: var(--text);
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

.modal-panel .form-group input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

/* FAB stack: Call above WhatsApp */
.fab-stack {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 95;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.fab-call,
.fab-whatsapp {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: transform 0.25s var(--ease);
}

.fab-call {
    background: #1a1a1a;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    animation: callPulse 2.2s ease-in-out infinite;
}

.fab-call svg {
    width: 26px;
    height: 26px;
}

.fab-call:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.08);
}

.fab-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
    animation: waPulse 2.2s ease-in-out infinite;
}

.fab-whatsapp svg {
    width: 30px;
    height: 30px;
}

.fab-whatsapp:hover {
    transform: scale(1.08);
    color: #fff;
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(201, 162, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0);
    }
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: none;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.25);
}

.sticky-mobile-cta a,
.sticky-mobile-cta button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0.95rem 0.4rem;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
}

.sticky-mobile-cta .cta-enquire {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    animation: ctaPulse 2s ease-in-out infinite;
}

.sticky-mobile-cta .cta-call {
    background: #1a1a1a;
    color: var(--gold-light);
    border-left: 1px solid rgba(201, 162, 77, 0.35);
    border-right: 1px solid rgba(201, 162, 77, 0.35);
}

.sticky-mobile-cta .cta-whatsapp {
    background: #25d366;
    color: #fff;
}

.thank-you-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 680px;
}

.thank-you-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.thank-you-logo img {
    width: min(220px, 70vw);
    height: auto;
    margin: 0 auto;
}

.thank-you-content a {
    color: var(--gold-light);
}

.thank-you-actions {
    margin-top: 1.75rem;
}

.thank-you-actions .btn-primary {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .connectivity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-editorial {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .floor-showcase {
        grid-template-columns: 1fr;
    }

    .floor-meta {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(8, 8, 8, 0.96);
        backdrop-filter: blur(16px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(201, 162, 77, 0.2);
    }

    .hero-section {
        min-height: 100dvh;
    }

    .section {
        padding: 3.5rem 0;
    }

    .desktop-nav {
        display: none;
    }

    .fab-stack {
        bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
        right: 1rem;
        gap: 0.65rem;
    }

    .fab-call,
    .fab-whatsapp {
        width: 52px;
        height: 52px;
    }

    .fab-call svg {
        width: 22px;
        height: 22px;
    }

    .fab-whatsapp svg {
        width: 26px;
        height: 26px;
    }

    .hamburger {
        display: block;
    }

    .hero-canvas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100dvh;
        box-sizing: border-box;
        padding: calc(5.75rem + env(safe-area-inset-top, 0px)) 1rem calc(5.75rem + env(safe-area-inset-bottom, 0px));
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .hero-gradient {
        background: linear-gradient(180deg, rgba(8, 8, 8, 0.35) 0%, rgba(8, 8, 8, 0.55) 50%, rgba(8, 8, 8, 0.85) 100%);
    }

    .hero-copy {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 1.75rem 1.25rem;
        border-radius: var(--radius-lg);
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .form-glow {
        display: none;
    }

    .gallery-section,
    .floor-plan-section,
    .connectivity-section,
    .amenities-section,
    .contact-section,
    .overview-section,
    .configuration-section,
    .highlights-section,
    .about-section,
    .footer {
        overflow-x: hidden;
        max-width: 100%;
    }

    .contact-map iframe {
        max-width: 100%;
        width: 100% !important;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .carousel-btn.prev { left: 6px; }
    .carousel-btn.next { right: 6px; }

    .hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.08;
    }

    .hero-lead {
        font-size: 0.92rem;
        margin: 0.85rem auto 1.15rem;
        line-height: 1.5;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: nowrap;
        margin-bottom: 1.25rem;
        padding-top: 0.85rem;
    }

    .hero-stats strong {
        font-size: 1.45rem;
    }

    .hero-stats span {
        font-size: 0.65rem;
    }

    .hero-copy .btn-primary {
        padding: 0.7rem 1.15rem;
        font-size: 0.78rem;
    }

    .overview-layout {
        grid-template-columns: 1fr;
    }

    .section-num {
        font-size: 2.5rem;
    }

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

    .highlights-image-desktop {
        display: none;
    }

    .highlights-image-mobile {
        display: block;
    }

    .config-cards {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .gallery-carousel-desktop {
        display: none;
    }

    .gallery-carousel-mobile {
        display: block;
    }

    .gallery-item img {
        height: 240px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .mobile-only {
        display: grid;
    }

    .sticky-mobile-cta {
        display: grid;
    }

    .desktop-only {
        display: none;
    }


    .rera-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    body {
        padding-bottom: 64px;
    }

    .hero-cta-row .btn-cta,
    .hero-cta-row .btn-primary {
        flex: 1 1 auto;
        min-width: 100px;
    }

    .contact-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .logo-wrap img {
        width: 100px;
    }

    .hero-stats {
        gap: 1.25rem;
    }
}
