/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #ffffff;
    --dark: #1B2D5B;
    --dark-2: #162448;
    --dark-3: #1E3368;
    --charcoal: #2C3E6B;
    --white: #FFFFFF;
    --off-white: #F3F5F8;
    --text-muted: #7A869A;
    --teal: #2A7B6F;
    --teal-light: #3A9E8E;
    --section-pad: 100px;
    --radius: 4px;
    --shadow: 0 24px 64px rgba(0,0,0,0.18);
    --black: #000000;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.65;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 200;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -0.01em;
}
.section-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
}
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.section-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.section { padding: var(--section-pad) 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ===== NAVBAR ===== */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1e2a49;
    box-shadow: 0 2px 16px rgba(27,45,91,0.15);
    padding: 0;
}
.navbar.scrolled {
    background: #1e2a49;
    box-shadow: 0 2px 32px rgba(27,45,91,0.3);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 40px;
}
.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.2em;
}
.logo-sub {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--white);
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 9px 22px;
    font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--dark-2);
    padding: 24px 40px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: auto;
    min-height: unset;
    aspect-ratio: 16/7;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0d1b3e;
    animation: none;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
/* .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,13,13,0.88) 0%,
        rgba(13,13,13,0.55) 50%,
        rgba(13,13,13,0.75) 100%
    );
    z-index: 1;
} */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px 80px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}
.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease forwards;
}
.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 200;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    animation: fadeUp 0.9s 0.1s ease forwards;
    opacity: 0;
}
.hero-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--gold-light);
}
.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeUp 0.9s 0.2s ease forwards;
    opacity: 0;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeUp 0.9s 0.3s ease forwards;
    opacity: 0;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeUp 0.9s 0.4s ease forwards;
    opacity: 0;
}
.stat-num {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-light);
}
.stat-num sup { font-size: 1.2rem; }
.stat-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}
.scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 1s 0.6s ease forwards;
    opacity: 0;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== OVERVIEW ===== */
.overview { background: var(--off-white); }
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 48px;
}
.overview-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #444;
    margin-bottom: 16px;
}
.overview-text .btn-primary { margin-top: 16px; }
.overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.feature-card {
    background: var(--white);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    outline: 2px solid #1B2D5B;
    box-shadow: 0 2px 12px rgba(27,45,91,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
    box-shadow: 0 8px 32px rgba(27,45,91,0.13);
    transform: translateY(-4px);
}
.feature-icon-circle {
    width: 52px;
    height: 52px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}
.feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

/* ===== CONFIGURATION ===== */
.configuration { background: var(--dark); }
.config-cards {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    flex-wrap: wrap;
}
.config-card {
    flex: 1;
    min-width: 260px;
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 48px 40px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}
.config-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.config-badge {
    position: absolute;
    top: -1px;
    right: 32px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 14px;
}
.config-type {
    font-family: 'Raleway', sans-serif;
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}
.config-area {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Raleway', sans-serif;
    line-height: 1;
    margin-bottom: 4px;
}
.config-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.btn-config {
    display: inline-block;
    background: transparent;
    color: var(--gold-light);
    padding: 11px 28px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: background 0.3s, color 0.3s;
}
.btn-config:hover { background: var(--gold); color: var(--dark); }
.config-note {
    margin-top: 28px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== AMENITIES ===== */
.amenities { background: var(--white); }
.amenities-tabs {
    display: flex;
    gap: 0;
    margin-top: 48px;
    border-bottom: 1px solid #e5e0d8;
    flex-wrap: wrap;
}
.tab-btn {
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 14px 28px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active, .tab-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }

.amenities-content { margin-top: 0; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-top: 48px; }

.amenity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--off-white);
    font-size: 0.9rem;
    font-weight: 400;
    color: #000000;
    transition: background 0.2s;
    border: 1.5px solid #000000;
    border-radius: 4px;
}
.amenity-item:hover { background: var(--gold-pale); }
.amenity-icon { font-size: 1.2rem; }
.amenity-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ===== CONNECTIVITY ===== */
.connectivity { background: var(--dark-2); }
.connect-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    margin-top: 56px;
    align-items: stretch;
}
.connect-points { display: flex; flex-direction: column; gap: 20px; }
.connect-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s, border-color 0.3s;
}
.connect-point:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.2); }
.cp-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cp-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cp-info p { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.connect-map {
    border-radius: 0;
    overflow: hidden;
    min-height: 400px;
}
.connect-map iframe { display: block; width: 100%; height: 100%; }

/* ===== GALLERY ===== */
.gallery { background: var(--off-white); }
.gallery .container { padding-bottom: 48px; }
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 6px;
    margin-top: 48px;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: 1px solid var(--white);
    padding: 8px 20px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 85vh; }
.lb-img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; }
.lb-close, .lb-prev, .lb-next {
    position: fixed;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 12px;
    transition: color 0.2s;
    z-index: 10000;
}
.lb-close { top: 24px; right: 32px; font-size: 1.4rem; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold-light); }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-top: 0;
}
.about-img-col {
    position: relative;
}
.about-img-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark);
    padding: 28px 32px;
    text-align: center;
    border: 3px solid var(--gold);
}
.ab-num {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.ab-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}
.about-text { padding-left: 16px; }
.about-text p {
    font-size: 1rem;
    font-weight: 300;
    color: #444;
    margin-top: 24px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.about-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.astat { text-align: left; }
.astat-num {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.astat-lbl {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== CONTACT ===== */
.contact { background: var(--dark-2); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.contact-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin: 24px 0 36px;
    line-height: 1.8;
}
.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-detail span { font-size: 1.2rem; flex-shrink: 0; }
.contact-detail p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.contact-form-wrap {
    background: var(--white);
    padding: 48px 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
}
.form-group input, .form-group textarea {
    width: 100%;
    background: var(--off-white);
    border: 1px solid #e0dbd0;
    padding: 12px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.btn-submit {
    width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit:hover { background: var(--gold); color: var(--dark); }
.form-error {
    background: #fff0f0;
    color: #c00;
    padding: 10px 16px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    border-left: 3px solid #c00;
}
.form-success {
    text-align: center;
    padding: 60px 20px;
}
.form-success span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 20px;
}
.form-success h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
}
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 48px 40px;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-logo { display: flex; align-items: baseline; gap: 10px; justify-content: center; margin-bottom: 16px; }
.footer .logo-text { font-size: 1.4rem; }
.footer-address {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin-bottom: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }

/* Floating CTA */
.float-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 26px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(201,168,76,0.4);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.float-brochure {
    position: fixed;
    bottom: 32px;
    left: 32px;
    background: var(--dark);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    outline: 2px solid var(--gold);
    border: none;
    cursor: pointer;
    padding: 14px 22px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(27,45,91,0.35);
    transition: background 0.3s, transform 0.2s;
}
.float-brochure:hover { background: var(--dark); color: var(--gold); transform: translateY(-3px); }
.float-cta:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .overview-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .connect-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .tab-panel.active { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 0 24px 64px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-actions { flex-direction: column; }
    .overview-features { grid-template-columns: 1fr; }
    .gallery-masonry { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(6) { grid-column: span 2; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
    .about-badge { bottom: -10px; right: -10px; }
    .amenity-grid { grid-template-columns: 1fr; }
    .scroll-indicator { display: none; }
    .nav-inner { padding: 18px 24px; }
}

@media (max-width: 480px) {
    .gallery-masonry { grid-template-columns: 1fr; }
    .gallery-item:nth-child(n) { grid-column: span 1; }
    .config-cards { flex-direction: column; }
    .float-cta { bottom: 20px; right: 20px; }
    .amenities-tabs { flex-direction: column; border-bottom: none; }
    .tab-btn { border-bottom: none; border-left: 2px solid transparent; }
    .tab-btn.active { border-left-color: var(--gold); }
}
/* ===== POPUP ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27,45,91,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.popup-box {
    background: var(--white);
    width: 90%;
    max-width: 820px;
    position: relative;
    display: flex;
    overflow: hidden;
    animation: popIn 0.4s ease;
}
@keyframes popIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2;
}
.popup-close:hover { color: var(--dark); }
.popup-inner {
    display: flex;
    width: 100%;
}
.popup-left {
    background: var(--dark);
    color: var(--white);
    padding: 48px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.popup-left h3 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.popup-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    border-left: 4px solid var(--gold);
    padding-left: 12px;
}
.popup-left p {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-top: 8px;
}
.popup-right {
    flex: 1;
    padding: 48px 40px;
    background: linear-gradient(160deg, #ffffff 70%, #eef1f8 100%);
}
.popup-right h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.pf-group {
    margin-bottom: 16px;
}
.pf-group {
    position: relative;
    margin-bottom: 20px;
}
.pf-group input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: none;
    border-bottom: 2px solid var(--grey-light);
    background: var(--off-white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 4px 4px 0 0;
}
.pf-group input:focus {
    border-bottom-color: var(--dark);
    background: #eef1f8;
}
.pf-group input::placeholder { color: var(--text-muted); font-size: 0.82rem; }
.pf-group::before {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
}
.pf-group:nth-child(1)::before { content: '👤'; }
.pf-group:nth-child(2)::before { content: '📱'; }
.pf-group:nth-child(3)::before { content: '✉️'; }
.pf-submit {
    width: 100%;
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 4px;
}
.pf-submit:hover { background: var(--gold); color: var(--dark); }
.pf-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}
.pf-success {
    text-align: center;
    padding: 40px 20px;
}
.pf-success span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--dark);
    color: var(--white);
    font-size: 1.4rem;
    border-radius: 50%;
    margin-bottom: 16px;
}
.pf-success h4 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pf-success p  { font-size: 0.88rem; color: var(--text-muted); }

/* ===== FLOATING BUTTONS ===== */
.float-brochure {
    position: fixed;
    bottom: 32px;
    left: 32px;
    background: var(--dark);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    padding: 14px 22px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(27,45,91,0.35);
    transition: background 0.3s, transform 0.2s;
}
.float-brochure:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }
.float-cta {
    font-family: 'Raleway', sans-serif;
    border: none;
    cursor: pointer;
}

@media (max-width: 640px) {
    .popup-inner  { flex-direction: column; }
    .popup-left   { padding: 28px 24px; }
    .popup-right  { padding: 28px 24px; }
    .popup-left h2 { font-size: 1.5rem; }
    .float-brochure { bottom: 80px; left: 16px; font-size: 0.7rem; padding: 11px 16px; }
}
/* ===== LOGO ===== */
.header-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
}
.popup-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
}