:root {
    --primary-bg: #0b1a30; /* Midnight Navy */
    --secondary-bg: #13243d;
    --gold: #c5a880; /* Pearl Gold */
    --gold-light: #fdfaf6; /* Ivory light */
    --gold-hover: #d8bea0;
    --text-main: #f8fafc;
    --text-light: #ffffff;
    --text-muted: #a0aab8;
    --border-color: #2a3a52;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 90px;
    background-color: #0b1a30;
}

section {
    scroll-margin-top: 90px;
}

body {
    font-family: var(--font-body);
    background-color: #0b1a30;
    background-image: linear-gradient(rgba(11, 26, 48, 0.65), rgba(11, 26, 48, 0.85)), url('../images/KV%20BG.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.w-100 {
    width: 100%;
}

.radius-8 {
    border-radius: 8px;
}

/* Utilities */
.bg-light {
    background-color: #ffffff !important;
}

.text-dark {
    color: #1a1a1a !important;
}

.text-dark span {
    color: var(--gold) !important;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--primary-bg);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--primary-bg);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* SECTION TITLES */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-heading);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* SECTION LUXURY DIVIDERS */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 24px;
    position: relative;
    z-index: 2;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.5), rgba(197, 168, 128, 0.75));
}

.section-divider .divider-line:last-child {
    background: linear-gradient(90deg, rgba(197, 168, 128, 0.75), rgba(197, 168, 128, 0.5), transparent);
}

.divider-icon {
    margin: 0 24px;
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.95;
    text-shadow: 0 0 14px rgba(197, 168, 128, 0.75);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, rgba(11,26,48,0.9), transparent);
}

.header.scrolled {
    background-color: rgba(11, 26, 48, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    width: 100%;
    gap: 20px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-yarraland {
    height: 32px;
    width: auto;
}

.logo-pdg {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-theone {
    height: 32px;
    width: auto;
}

.divider {
    width: 1px;
    height: 24px;
    background-color: var(--gold);
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    flex-shrink: 1;
}

.nav-menu a:not(.btn) {
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-menu a:not(.btn):hover {
    color: var(--gold);
}

.nav-menu .btn {
    padding: 8px 16px;
    font-size: 0.82rem;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--gold);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%; /* Fix hero alignment to show building top and body */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 26, 48, 0.88) 0%, rgba(11, 26, 48, 0.5) 55%, rgba(11, 26, 48, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 100px;
    margin-left: 5%;
}

.hero-main-logo {
    max-width: 500px;
    width: 100%;
    margin-bottom: 30px;
    display: block;
}

.subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.headline {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

/* SECTION BRAND LOGOS & HEADINGS */
.section-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(20, 40, 72, 0.75) 0%, rgba(10, 22, 40, 0.9) 100%);
    border: 1.5px solid rgba(197, 168, 128, 0.4);
    border-radius: 18px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(197, 168, 128, 0.15);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.section-brand-logo:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(197, 168, 128, 0.25);
    transform: translateY(-2px);
}

.yl-brand-logo {
    height: 96px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
    transition: transform 0.3s ease;
}

.section-brand-logo:hover .yl-brand-logo {
    transform: scale(1.03);
}

.pdg-brand-logo {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
    transition: transform 0.3s ease;
}

.section-brand-logo:hover .pdg-brand-logo {
    transform: scale(1.03);
}

.melcorp-logo-wrapper {
    margin-bottom: 20px;
}

.melcorp-luxe-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.section-lead strong {
    color: var(--gold);
}

/* YARRALAND SECTION */
.yarraland-section {
    position: relative;
    padding: 85px 0;
    background: transparent;
}

.yarraland-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.yl-strengths {
    margin: 25px 0 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.strength-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 22px;
    background: rgba(15, 32, 57, 0.65);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    border-right: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.strength-item:hover {
    background: rgba(22, 45, 78, 0.8);
    transform: translateX(6px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.2);
}

.strength-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    min-width: 32px;
}

.strength-text h4 {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.strength-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.certificate-box {
    background: rgba(15, 32, 57, 0.7);
    border: 1px solid rgba(197, 168, 128, 0.45);
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cert-img-wrapper {
    position: relative;
    width: 120px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cert-img-wrapper:hover {
    transform: scale(1.04);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.25);
}

.certificate-img {
    width: 100%;
    height: auto;
    display: block;
}

.cert-zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 26, 48, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.cert-img-wrapper:hover .cert-zoom-overlay {
    opacity: 1;
}

.cert-info h3 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cert-info p {
    font-size: 0.88rem;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.btn-cert-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-cert-view:hover {
    background: var(--gold);
    color: var(--primary-bg);
}

.yarraland-visual {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.yl-img-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.yl-img-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.yl-img-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.yl-img-caption {
    padding: 10px 16px;
    background: rgba(11, 26, 48, 0.92);
    font-size: 0.85rem;
    color: var(--gold-light);
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    font-style: italic;
}

/* PDG SECTION */
.pdg-section {
    position: relative;
    padding: 85px 0;
    background: transparent;
}

.pdg-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.pdg-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pdg-img-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.pdg-img-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.pdg-img-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pdg-img-joint img {
    max-height: 500px;
    object-fit: cover;
    object-position: center top;
}

.pdg-img-caption {
    padding: 10px 16px;
    background: rgba(11, 26, 48, 0.92);
    font-size: 0.85rem;
    color: var(--gold-light);
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    font-style: italic;
}

.pdg-highlights {
    margin: 25px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pdg-highlight-item {
    padding: 18px 22px;
    background: rgba(15, 32, 57, 0.65);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pdg-highlight-item:hover {
    transform: translateX(4px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.2);
}

.pdg-badge {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.pdg-highlight-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.pdg-highlight-item p strong {
    color: var(--gold-light);
}

.pdg-quote {
    padding: 22px 26px;
    background: rgba(197, 168, 128, 0.08);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--gold);
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    border-right: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.quote-author {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* FACTSHEET (PROJECT OVERVIEW) */
.factsheet {
    padding: 85px 0;
    background: transparent;
}

.factsheet-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    background: rgba(13, 27, 49, 0.85);
    backdrop-filter: blur(12px);
}

.factsheet-table {
    flex: 1.1;
    background: transparent;
    color: var(--text-main);
    border: none;
    border-right: 1px solid rgba(197, 168, 128, 0.25);
    display: flex;
    flex-direction: column;
}

.factsheet-image {
    flex: 0.9;
    border: none;
    background: rgba(7, 15, 28, 0.9);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    overflow: hidden;
}

.factsheet-image img {
    width: 100%;
    height: 100%;
    max-height: 540px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.factsheet-image:hover img {
    transform: scale(1.03);
}

.factsheet-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gold);
    background: rgba(11, 26, 48, 0.85);
    padding: 8px 12px;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(197, 168, 128, 0.3);
}

.fact-row {
    display: flex;
    border-bottom: 1px solid rgba(197, 168, 128, 0.18);
    flex: 1;
    transition: background 0.3s ease;
}

.fact-row:last-child {
    border-bottom: none;
}

.fact-row:hover {
    background: rgba(197, 168, 128, 0.06);
}

.fact-label {
    flex: 0 0 35%;
    padding: 18px 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--gold);
    border-right: 1px solid rgba(197, 168, 128, 0.18);
    display: flex;
    align-items: center;
}

.fact-value {
    flex: 1;
    padding: 18px 24px;
    font-size: 0.98rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    font-weight: 400;
}

/* LOCATION SECTION */
.location {
    padding: 85px 0;
    background-color: transparent;
    overflow: hidden;
}

.mapping-container {
    width: 100%;
    margin: 40px auto 0;
    position: relative;
}

.mapping-img {
    width: 100%;
    height: auto;
    display: block;
}

/* LOCATION CONNECTIVITY BADGES */
.location-connectivity-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.loc-card {
    background: rgba(15, 32, 57, 0.7);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 12px;
    padding: 22px 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.loc-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.2);
}

.loc-dist {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.loc-card h4 {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.loc-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* AMENITIES SECTION */
.amenities {
    padding: 95px 0;
    background-color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(197, 168, 128, 0.4);
    border-bottom: 1px solid rgba(197, 168, 128, 0.4);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
}

.gallery-wrapper {
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* LEVEL 10 AMENITY FLOORPLATE */
.amenity-floorplate-box {
    margin-top: 60px;
    background: #fdfaf6;
    border: 1px solid #d4c4af;
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.amenity-floorplate-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 25px;
}

.amenity-tag {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(197, 168, 128, 0.2);
    border: 1px solid var(--gold);
    color: #665030;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.amenity-floorplate-title {
    color: #1a1a1a;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.amenity-floorplate-desc {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.amenity-floorplate-display {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-floorplate-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.amenity-floorplate-img {
    width: 100%;
    height: auto;
    display: block;
}

.amenity-floorplate-zoom {
    position: absolute;
    inset: 0;
    background: rgba(11, 26, 48, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
}

.amenity-floorplate-display:hover .amenity-floorplate-zoom {
    opacity: 1;
}

.amenity-feature-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.feature-tag {
    background: #ffffff;
    border: 1px solid #d4c4af;
    color: #333333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* 360 VIEWLINES SECTION */
.viewlines {
    padding: 85px 0;
    background: transparent;
    position: relative;
}

.viewline-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 35px 0 25px;
    flex-wrap: wrap;
}

.viewline-btn {
    background: rgba(19, 36, 61, 0.85);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    min-width: 190px;
}

.viewline-btn:hover {
    border-color: var(--gold);
    background: rgba(197, 168, 128, 0.15);
}

.viewline-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-bg);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35);
}

.vl-level {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.vl-name {
    font-size: 0.82rem;
    opacity: 0.9;
}

.viewline-viewer-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(197, 168, 128, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #000000;
}

.panorama-viewer {
    width: 100%;
    height: 560px;
}

.viewer-hint {
    padding: 10px;
    background: rgba(11, 26, 48, 0.95);
    font-size: 0.85rem;
    color: var(--gold);
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

/* FLOORPLANS SECTION */
.floorplans {
    padding: 85px 0;
    background-color: transparent;
}

.floorplan-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: rgba(15, 32, 57, 0.7);
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.35s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(197, 168, 128, 0.25);
    background: rgba(22, 45, 78, 0.85);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid rgba(197, 168, 128, 0.3);
    background: #fff;
    padding: 20px;
}

.category-card h3 {
    padding: 20px;
    font-size: 1.2rem;
    color: var(--gold);
    margin: 0;
    text-align: center;
}

.fp-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.back-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.back-btn:hover {
    background: var(--gold);
    color: var(--primary-bg);
}

.floorplan-main-filters, .floorplan-sub-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.floorplan-sub-filters {
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--primary-bg);
    border-color: var(--gold);
}

.sub-btn {
    font-size: 0.9rem;
    padding: 6px 18px;
    border-color: rgba(255,255,255,0.1);
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.floorplan-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floorplan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--gold);
}

.fp-thumb {
    height: 220px;
    padding: 15px;
    background: #ffffff; /* White bg for technical drawings */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.fp-info {
    padding: 20px;
    text-align: left;
}

.fp-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.fp-stats {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* APARTMENT RENDERS GALLERY IN FLOORPLANS SECTION */
.apartment-gallery-block {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid rgba(197, 168, 128, 0.25);
    text-align: center;
}

.gallery-subheading {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.gallery-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.apartment-renders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.apt-render-card {
    background: linear-gradient(135deg, rgba(20, 40, 72, 0.85) 0%, rgba(10, 22, 40, 0.95) 100%);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.apt-render-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 168, 128, 0.25);
}

.apt-render-img-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.apt-render-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.apt-render-card:hover .apt-render-img-wrap img {
    transform: scale(1.06);
}

.apt-render-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 22, 40, 0.88);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    z-index: 2;
}

.apt-zoom-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 2;
}

.apt-render-card:hover .apt-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

.apt-render-info {
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.apt-render-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.apt-render-card:hover .apt-render-info h4 {
    color: var(--gold);
}

.apt-render-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* FULLSCREEN MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-modal {
    width: 95vw !important;
    height: 95vh !important;
    max-width: 1800px !important;
    background: var(--secondary-bg);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.active .fullscreen-modal {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.close-modal:hover {
    color: var(--gold);
}

.fullscreen-body {
    display: flex;
    height: 100%;
    width: 100%;
}

.fullscreen-img-container {
    flex: 3;
    background: #ffffff; /* keep white for clear floorplan reading */
    border-radius: 12px 0 0 12px;
    position: relative;
    overflow: hidden; /* important for panzoom */
    display: flex;
    align-items: center;
    justify-content: center;
}

#panzoomElement {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

#panzoomElement:active {
    cursor: grabbing;
}

.fullscreen-img-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.modal-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 8px;
}

.zoom-btn {
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.zoom-btn:hover {
    background: var(--gold);
}

.fullscreen-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    max-width: 450px;
}

.fullscreen-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.fullscreen-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* MELCORP LUXE INVESTMENT SECTION */
.investment {
    padding: 85px 0;
    background: transparent;
    position: relative;
}

.investment-header {
    max-width: 850px;
    margin: 0 auto 50px;
}

.luxe-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.pillar-card {
    background: rgba(15, 32, 57, 0.65);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.2);
}

.pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.pillar-card h4 {
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* RATES TABLE */
.luxe-rates-box {
    background: rgba(15, 32, 57, 0.75);
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 14px;
    padding: 38px;
    margin-bottom: 50px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.luxe-rates-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.rates-table-wrapper {
    overflow-x: auto;
    margin: 25px 0 15px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.rates-table th {
    background: rgba(197, 168, 128, 0.15);
    color: var(--gold);
    padding: 14px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.4);
    text-transform: uppercase;
}

.rates-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: var(--text-main);
}

.rates-table tr:hover td {
    background: rgba(197, 168, 128, 0.06);
}

.rate-highlight {
    font-weight: 700;
    color: var(--gold) !important;
    font-size: 1.05rem;
}

.rates-disclaimer {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
}

/* TWO FEE STRUCTURES */
.luxe-fees-wrapper {
    margin-bottom: 45px;
}

.section-subheading h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.section-subheading p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.luxe-fees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fee-card {
    background: rgba(15, 32, 57, 0.75);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 14px;
    padding: 38px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.fee-card-popular {
    border: 1.5px solid var(--gold);
    background: linear-gradient(180deg, rgba(25, 48, 80, 0.88) 0%, rgba(15, 32, 57, 0.85) 100%);
    box-shadow: 0 20px 45px rgba(197, 168, 128, 0.2);
}

.fee-badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: var(--gold);
    color: var(--primary-bg);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.fee-option-name {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.fee-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 8px;
}

.fee-price span {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 400;
}

.fee-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
    min-height: 45px;
}

.fee-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fee-features li {
    font-size: 0.92rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.fee-features .check {
    color: #4ade80;
    font-weight: bold;
}

.fee-features .plus {
    color: var(--gold);
    font-weight: bold;
}

.fee-features .info {
    color: #93c5fd;
    font-weight: bold;
}

.fee-yield-stat {
    margin-top: auto;
    padding: 14px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-val {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.05rem;
}

/* FOREIGN TAX ADVANTAGE */
.luxe-tax-box {
    display: flex;
    gap: 22px;
    align-items: center;
    background: rgba(15, 32, 57, 0.75);
    border: 1px solid rgba(197, 168, 128, 0.45);
    border-radius: 14px;
    padding: 28px 34px;
    margin-bottom: 45px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tax-box-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.tax-box-content h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.tax-box-content p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.tax-box-content strong {
    color: var(--gold);
}

/* CONTACT SECTION */
.contact {
    padding: 85px 0;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.advisors {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 400px;
}

.advisor-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(15, 32, 57, 0.75);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.advisor-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center; /* Fix for cropped head */
    border: 2px solid var(--gold);
}

.advisor-details h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.advisor-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.advisor-details .phone {
    color: var(--text-main);
    font-weight: 500;
    margin-top: 5px;
    font-size: 1.1rem;
}

.contact-form {
    flex: 1;
    background: rgba(15, 32, 57, 0.8);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid rgba(197, 168, 128, 0.35);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(11,26,48,0.5);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select option {
    background-color: #0b1a30;
    color: #ffffff;
}


.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

/* FOOTER */
.footer {
    background: rgba(6, 14, 26, 0.65);
    backdrop-filter: blur(8px);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo-pdg {
    height: 66px;
}

.footer-divider {
    width: 1px;
    height: 40px;
    background-color: var(--gold);
    opacity: 0.5;
}

.slogan {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    body {
        background-attachment: scroll !important;
    }
    .yarraland-grid, .pdg-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }
    .luxe-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .luxe-fees-grid {
        grid-template-columns: 1fr;
    }
    .panorama-viewer {
        height: 440px;
    }
    .headline {
        font-size: 3rem;
    }
    .fullscreen-body {
        flex-direction: column;
    }
    .fullscreen-img-container {
        border-radius: 12px 12px 0 0;
        flex: 2;
    }
    .fullscreen-info {
        flex: 1;
        padding: 20px;
    }
    .factsheet-wrapper {
        flex-direction: column;
    }
    .factsheet-table {
        border-right: 2px solid var(--gold);
        border-bottom: none;
    }
    .factsheet-image {
        border-left: 2px solid var(--gold);
        height: 300px;
    }
}

@media (max-width: 768px) {
    /* Header compact */
    .header {
        padding: 10px 0;
    }
    .header.scrolled {
        padding: 8px 0;
    }
    .logo-group {
        gap: 8px;
    }
    .logo-yarraland {
        height: 20px;
    }
    .logo-pdg {
        height: 28px;
    }
    .logo-theone {
        height: 22px;
    }
    .divider {
        height: 18px;
    }
    .footer-logos {
        gap: 16px;
        margin-bottom: 20px;
    }
    .footer-logo {
        height: 34px;
    }
    .footer-logo-pdg {
        height: 48px;
    }
    .footer-divider {
        height: 28px;
    }
    .nav-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
        gap: 4px;
        padding: 4px;
    }
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
    }

    /* Sections spacing */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 75px;
        padding-bottom: 60px;
    }
    .hero-bg img {
        object-position: 65% center;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(11, 26, 48, 0.78) 0%, rgba(11, 26, 48, 0.5) 45%, rgba(11, 26, 48, 0.9) 100%);
    }
    .hero-content {
        padding-top: 20px;
        margin-left: 0;
    }
    .hero-main-logo {
        max-width: 340px;
        margin-bottom: 20px;
    }
    .hero-content .description {
        color: #e8ecf2;
        font-size: 0.92rem;
        line-height: 1.5;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
        margin-bottom: 25px;
    }
    .legacy, .factsheet, .location, .amenities, .floorplans, .contact {
        padding: 60px 0;
    }

    /* Factsheet Compact Row Layout */
    .factsheet-wrapper {
        margin-top: 25px;
    }
    .fact-row {
        flex-direction: row;
        align-items: stretch;
    }
    .fact-label {
        flex: 0 0 38%;
        padding: 10px 12px;
        font-size: 0.72rem;
        letter-spacing: 0.5px;
        border-right: 1px solid rgba(197, 168, 128, 0.4);
        border-bottom: none;
        display: flex;
        align-items: center;
    }
    .fact-value {
        flex: 1;
        padding: 10px 14px;
        font-size: 0.82rem;
        line-height: 1.35;
        display: flex;
        align-items: center;
    }
    .factsheet-image {
        height: 170px;
        border-top: 1px solid var(--gold);
        border-left: 2px solid var(--gold);
    }
    .factsheet-image img {
        object-position: center 30%;
    }

    /* Amenities 2-Column Grid */
    .gallery-wrapper {
        margin-top: 25px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-item {
        aspect-ratio: 4/3;
        border-radius: 6px;
    }
    .gallery-caption {
        font-size: 0.78rem;
        padding: 24px 8px 8px;
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    }

    /* Floorplans 2-Column Grid */
    .floorplan-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }
    .category-card img {
        height: 110px;
        padding: 10px;
    }
    .category-card h3 {
        padding: 10px 6px;
        font-size: 0.88rem;
    }
    .floorplan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .floorplan-card .fp-thumb {
        height: 110px;
        padding: 10px;
    }
    .floorplan-card .fp-info {
        padding: 10px 8px;
    }
    .floorplan-card .fp-info h4 {
        font-size: 0.8rem;
    }
    .floorplan-card .fp-stats span {
        font-size: 0.7rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        border-left: none;
        padding-left: 0;
        margin-bottom: 25px;
    }
    .hero-stats .stat-title {
        color: var(--gold);
        font-size: 0.75rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    }
    .hero-stats .stat-value {
        color: #ffffff;
        font-size: 0.95rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    }
}

@media (max-width: 480px) {
    .logo-group {
        gap: 6px;
    }
    .logo-yarraland {
        height: 18px;
    }
    .logo-pdg {
        height: 25px;
    }
    .logo-theone {
        height: 19px;
    }
    .divider {
        height: 16px;
    }
    .footer-logos {
        gap: 12px;
    }
    .footer-logo {
        height: 28px;
    }
    .footer-logo-pdg {
        height: 38px;
    }
    .footer-divider {
        height: 22px;
    }
    .fact-label {
        flex: 0 0 42%;
        font-size: 0.68rem;
        padding: 8px 10px;
    }
    .fact-value {
        font-size: 0.78rem;
        padding: 8px 10px;
    }
    .category-card img {
        height: 95px;
        padding: 8px;
    }
    .category-card h3 {
        font-size: 0.82rem;
        padding: 8px 4px;
    }
    .gallery-caption {
        font-size: 0.72rem;
    }
}

/* LEAD POPUP */
.lead-popup-content {
    position: relative !important;
    max-width: 450px !important;
    width: 92% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 !important;
    background: #0d1e38 !important;
    border: 1.5px solid var(--gold) !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85) !important;
    transform: translateY(20px) scale(0.95);
    margin: auto !important;
}

.modal.active .lead-popup-content {
    transform: translateY(0) scale(1);
}

.popup-form {
    margin: 0;
    padding: 35px 28px 25px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#closeLeadPopup {
    position: absolute !important;
    top: 12px !important;
    right: 14px !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(197, 168, 128, 0.35) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    z-index: 100 !important;
    transition: all 0.25s ease !important;
}

#closeLeadPopup:hover, #closeLeadPopup:active {
    background: var(--gold) !important;
    color: #0b1526 !important;
    transform: rotate(90deg);
}

/* THANK YOU MODAL */
.thank-you-content {
    max-width: 480px !important;
    background: var(--secondary-bg) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 12px;
    padding: 45px 35px 35px !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    color: var(--text-main);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.modal.active .thank-you-content {
    transform: translateY(0) scale(1);
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.12);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 0 25px rgba(197, 168, 128, 0.2);
}

.thank-you-box h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.thank-you-desc {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.5;
}

.thank-you-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

#closeThankYou {
    top: 15px;
    right: 20px;
}

/* ==========================================================================
   FAQ SECTION (CÂU HỎI THƯỜNG GẶP)
   ========================================================================== */
.faq-section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.faq-accordion {
    max-width: 960px;
    margin: 45px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(15, 32, 57, 0.65);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--gold);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s ease;
    gap: 16px;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 26px 22px 26px;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    padding-top: 16px;
}

.faq-answer-inner p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.faq-answer-inner p strong {
    color: var(--gold);
}

/* ==========================================================================
   FLOATING VIP SPEED-DIAL CONCIERGE (ZALO - WHATSAPP - EMAIL - HOTLINE)
   ========================================================================== */
.vip-speed-dial {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6));
    user-select: none;
}

/* Master Trigger Button */
.speed-dial-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(20, 40, 72, 0.96) 0%, rgba(10, 22, 40, 0.98) 100%);
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 8px 16px 8px 10px;
    cursor: pointer;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    color: inherit;
}

.speed-dial-trigger:hover,
.vip-speed-dial.active .speed-dial-trigger {
    background: linear-gradient(135deg, #1b355c 0%, #0d1b33 100%);
    border-color: #e5c38c;
    box-shadow: 0 0 25px rgba(197, 168, 128, 0.35);
    transform: translateY(-2px);
}

.trigger-icon-wrap {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.25) 0%, rgba(15, 32, 57, 0.9) 100%);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.vip-pulse-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid #0b1526;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: vipPulse 2s infinite;
}

@keyframes vipPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.trigger-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.title-short {
    display: none;
}

.speed-dial-trigger:hover .trigger-title,
.vip-speed-dial.active .trigger-title {
    color: var(--gold);
}

.dial-toggle-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, color 0.3s ease;
}

.vip-speed-dial.active .dial-toggle-indicator {
    transform: rotate(135deg);
    background: var(--gold);
    color: #0b1526;
}

/* Speed Dial Menu */
.speed-dial-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 12px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-speed-dial.active .speed-dial-menu,
.vip-speed-dial:hover .speed-dial-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Speed Dial Items */
.dial-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 32, 57, 0.95);
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 50px;
    padding: 6px 18px 6px 8px;
    text-decoration: none;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(12px) scale(0.92);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.vip-speed-dial.active .dial-item,
.vip-speed-dial:hover .dial-item {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.vip-speed-dial.active .dial-item:nth-child(3),
.vip-speed-dial:hover .dial-item:nth-child(3) { transition-delay: 0.04s; }
.vip-speed-dial.active .dial-item:nth-child(2),
.vip-speed-dial:hover .dial-item:nth-child(2) { transition-delay: 0.08s; }
.vip-speed-dial.active .dial-item:nth-child(1),
.vip-speed-dial:hover .dial-item:nth-child(1) { transition-delay: 0.12s; }

.dial-item:hover {
    transform: translateX(-4px) scale(1.02) !important;
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.25);
    background: rgba(22, 45, 78, 0.98);
}

.dial-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.icon-zalo {
    background: transparent;
    padding: 0;
    box-shadow: none;
    overflow: visible;
}

.zalo-img-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
    transition: transform 0.25s ease;
}

.dial-item:hover .zalo-img-icon {
    transform: scale(1.08);
}

.icon-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.icon-email {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.dial-label {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dial-sub {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold);
    line-height: 1.2;
}

.dial-main {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.dial-item:hover .dial-main {
    color: var(--gold);
}

/* RESPONSIVE ADDITIONS FOR NEW COMPONENTS */
@media (max-width: 992px) {
    .location-connectivity-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* Global Typography & Spacing on Mobile */
    .section-title {
        font-size: 1.55rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
    }
    .section-desc {
        font-size: 0.9rem !important;
        margin-bottom: 24px !important;
        line-height: 1.5 !important;
    }
    .section-lead {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }
    .section-tag {
        font-size: 0.7rem !important;
        padding: 4px 12px !important;
        letter-spacing: 1px !important;
        margin-bottom: 12px !important;
    }
    .yarraland-section, .pdg-section {
        padding: 45px 0 !important;
    }

    /* Section Brand Logos on Mobile */
    .section-brand-logo {
        padding: 8px 18px !important;
        margin-bottom: 14px !important;
        border-radius: 12px !important;
    }
    .yl-brand-logo {
        height: 52px !important;
        max-width: 140px !important;
    }
    .pdg-brand-logo {
        height: 44px !important;
        max-width: 130px !important;
    }

    /* Strength Items (Yarraland) */
    .yl-strengths {
        gap: 10px !important;
        margin: 16px 0 20px !important;
    }
    .strength-item {
        padding: 12px 14px !important;
        gap: 12px !important;
    }
    .strength-num {
        font-size: 1.25rem !important;
        min-width: 24px !important;
    }
    .strength-text h4 {
        font-size: 0.92rem !important;
        margin-bottom: 2px !important;
    }
    .strength-text p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    .certificate-box {
        padding: 14px !important;
        gap: 14px !important;
    }

    /* PDG Highlights & Team Photos on Mobile */
    .pdg-highlights {
        gap: 10px !important;
        margin: 16px 0 20px !important;
    }
    .pdg-highlight-item {
        padding: 12px 14px !important;
    }
    .pdg-badge {
        font-size: 0.75rem !important;
        padding: 3px 10px !important;
        margin-bottom: 6px !important;
    }
    .pdg-highlight-item p {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
    }
    .pdg-quote {
        padding: 14px 16px !important;
        margin-top: 18px !important;
    }
    .pdg-quote p {
        font-size: 0.85rem !important;
    }
    .yarraland-visual, .pdg-visual {
        gap: 14px !important;
        margin-top: 20px !important;
    }
    .pdg-img-joint img {
        max-height: 250px !important;
        object-fit: cover !important;
        object-position: center 20% !important;
    }
    .pdg-img-card img, .yl-img-card img {
        max-height: 220px !important;
        object-fit: cover !important;
    }
    .yl-img-caption, .pdg-img-caption {
        padding: 8px 12px !important;
        font-size: 0.76rem !important;
    }

    /* FAQ Section */
    .faq-section {
        padding: 50px 0 !important;
    }
    .faq-question {
        font-size: 0.9rem !important;
        padding: 16px 18px !important;
    }
    .faq-answer-inner {
        padding: 0 18px 16px 18px !important;
    }
    .location-connectivity-grid {
        grid-template-columns: 1fr !important;
    }

    /* Compact Floating Concierge Speed-Dial on Mobile */
    .vip-speed-dial {
        bottom: 16px !important;
        right: 14px !important;
    }
    .speed-dial-trigger {
        padding: 6px 12px 6px 8px !important;
        gap: 6px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    }
    .trigger-icon-wrap {
        width: 28px !important;
        height: 28px !important;
    }
    .trigger-icon-wrap svg {
        width: 15px !important;
        height: 15px !important;
    }
    .vip-pulse-dot {
        width: 8px !important;
        height: 8px !important;
    }
    .title-full {
        display: none !important;
    }
    .title-short {
        display: inline !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }
    .dial-toggle-indicator {
        width: 22px !important;
        height: 22px !important;
        margin-left: 2px !important;
    }
    .dial-toggle-indicator svg {
        width: 13px !important;
        height: 13px !important;
    }
    .dial-item {
        padding: 5px 12px 5px 6px !important;
        gap: 8px !important;
    }
    .dial-icon-wrap {
        width: 28px !important;
        height: 28px !important;
    }
    .dial-sub {
        font-size: 0.62rem !important;
    }
    .dial-main {
        font-size: 0.78rem !important;
    }

    /* Apartment Renders Gallery on Mobile */
    .apartment-gallery-block {
        margin-top: 40px !important;
        padding-top: 30px !important;
    }
    .gallery-title {
        font-size: 1.3rem !important;
    }
    .gallery-desc {
        font-size: 0.85rem !important;
    }
    .apartment-renders-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .apt-render-img-wrap {
        height: 190px !important;
    }
    .apt-render-info {
        padding: 14px 16px !important;
    }
    .apt-render-info h4 {
        font-size: 1.05rem !important;
        margin-bottom: 4px !important;
    }
    .apt-render-info p {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
    }

    /* Popup Modal Form on Mobile */
    .popup-form {
        padding: 28px 18px 18px !important;
    }
    .popup-form h3 {
        font-size: 1.15rem !important;
        padding-right: 28px !important;
    }
    .popup-form p {
        font-size: 0.82rem !important;
        margin-bottom: 14px !important;
    }
    .popup-form .form-group {
        margin-bottom: 10px !important;
    }
    .popup-form input, .popup-form select {
        padding: 9px 12px !important;
        font-size: 0.86rem !important;
    }
    .popup-form .btn {
        padding: 11px !important;
        font-size: 0.92rem !important;
    }
    .popup-form .form-note {
        font-size: 0.72rem !important;
        margin-top: 8px !important;
    }
}

