/* Digiwold Residency — Dark Navy + Indigo/Purple Premium Theme */

:root {
    --lux-black:        #0f172a;          /* dark navy background */
    --lux-black-soft:   #111827;          /* sidebar base */
    --lux-surface:      rgba(30, 41, 59, 0.72);
    --lux-glass:        rgba(99, 102, 241, 0.04);
    --lux-glass-border: rgba(99, 102, 241, 0.22);
    --lux-electric:     #818cf8;          /* indigo-400 — primary accent */
    --lux-royal:        #6366f1;          /* indigo-600 */
    --lux-cyan:         #a78bfa;          /* purple-400 — secondary accent */
    --lux-text:         #f8fafc;
    --lux-muted:        #94a3b8;
    --lux-glow:         0 0 40px rgba(99, 102, 241, 0.3);
    --font-display:     'Outfit', 'Inter', sans-serif;
    --font-body:        'Inter', system-ui, sans-serif;
    --nav-height:       80px;
    --section-pad:      clamp(4rem, 8vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body.luxury-page {
    margin: 0;
    font-family: var(--font-body);
    background: var(--lux-black);
    color: var(--lux-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
}

body.luxury-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 30% -10%, rgba(99, 102, 241, 0.14), transparent),
        radial-gradient(ellipse 55% 40% at 90% 60%, rgba(139, 92, 246, 0.1), transparent),
        radial-gradient(ellipse 45% 35% at 10% 85%, rgba(99, 102, 241, 0.07), transparent);
    pointer-events: none;
    z-index: 0;
}

.lux-container {
    width: min(1200px, 92vw);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ── Navigation ── */
.lux-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.lux-nav.scrolled {
    background: rgba(3, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--lux-glass-border);
}

.lux-nav-inner {
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lux-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.lux-brand img {
    height: 38px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.lux-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lux-nav-links a {
    color: var(--lux-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: color 0.25s, background 0.25s;
}

.lux-nav-links a:hover,
.lux-nav-links a.active {
    color: var(--lux-electric);
    background: rgba(99, 102, 241, 0.1);
}

.lux-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lux-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-family: inherit;
}

.lux-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
}

.lux-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.55);
    color: #fff;
}

.lux-btn-ghost {
    background: rgba(99, 102, 241, 0.04);
    color: var(--lux-text);
    border: 1px solid rgba(99, 102, 241, 0.25);
    backdrop-filter: blur(12px);
}

.lux-btn-ghost:hover {
    border-color: var(--lux-electric);
    color: var(--lux-electric);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.lux-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--lux-glass-border);
    color: var(--lux-text);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.25rem;
    cursor: pointer;
}

/* ── Hero ── */
.lux-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lux-hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.lux-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.lux-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to bottom, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.6) 50%, var(--lux-black) 100%),
        linear-gradient(to right, rgba(15, 23, 42, 0.88) 0%, transparent 55%);
    pointer-events: none;
}

.lux-hero-content {
    position: relative;
    z-index: 3;
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
}

.lux-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.28);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
}

.lux-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #818cf8;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.7);
    animation: lux-pulse 2s ease infinite;
}

@keyframes lux-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.lux-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    max-width: 680px;
}

.lux-gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, #818cf8 50%, #a78bfa 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lux-hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--lux-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lux-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.lux-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.lux-stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lux-stat-label {
    font-size: 0.78rem;
    color: var(--lux-muted);
    margin-top: 0.15rem;
}

.lux-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--lux-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: lux-bounce 2s ease infinite;
}

.lux-scroll-hint span {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #818cf8, transparent);
}

@keyframes lux-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Section shared ── */
.lux-section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 2;
}

.lux-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.lux-section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 0.75rem;
}

.lux-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.lux-section-desc {
    color: var(--lux-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Glass cards ── */
.lux-glass-card {
    background: rgba(30, 41, 59, 0.68);
    border: 1px solid rgba(99, 102, 241, 0.22);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.lux-glass-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 12px 36px rgba(99, 102, 241, 0.2);
}

/* ── About ── */
.lux-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.lux-about-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--lux-glass-border);
}

.lux-about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.28), transparent 60%);
}

.lux-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lux-mini-stat {
    padding: 1rem;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.lux-mini-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    background: linear-gradient(135deg, #818cf8, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lux-mini-stat span {
    font-size: 0.78rem;
    color: var(--lux-muted);
}

/* ── Amenities ── */
.lux-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.lux-amenity-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.lux-amenity-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #818cf8;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.lux-amenity-card:hover .lux-amenity-icon {
    transform: translateY(-8px) rotateY(15deg);
    box-shadow: var(--lux-glow);
}

.lux-amenity-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}

.lux-amenity-card p {
    font-size: 0.85rem;
    color: var(--lux-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Floor Plans ── */
.lux-floor-viewer {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--lux-glass-border);
    background: var(--lux-black-soft);
    height: min(520px, 70vh);
}

.lux-floor-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.lux-floor-controls {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(3, 5, 8, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 1px solid var(--lux-glass-border);
}

.lux-floor-controls button {
    background: transparent;
    border: none;
    color: var(--lux-muted);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.lux-floor-controls button.active,
.lux-floor-controls button:hover {
    background: rgba(99, 102, 241, 0.18);
    color: #818cf8;
}

.lux-floor-hint {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.72rem;
    color: var(--lux-muted);
    padding: 0.4rem 0.85rem;
    background: rgba(3, 5, 8, 0.7);
    border-radius: 999px;
    border: 1px solid var(--lux-glass-border);
}

/* ── Gallery ── */
.lux-gallery {
    columns: 3;
    column-gap: 1rem;
}

.lux-gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--lux-glass-border);
    cursor: pointer;
}

.lux-gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

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

.lux-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 5, 8, 0.85), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.lux-gallery-item:hover .lux-gallery-overlay {
    opacity: 1;
}

.lux-gallery-overlay span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ── Location ── */
.lux-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: stretch;
}

.lux-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--lux-glass-border);
    min-height: 380px;
    position: relative;
}

.lux-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(1.1) hue-rotate(180deg);
}

.lux-location-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.lux-location-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--lux-glass-border);
    font-size: 0.9rem;
    color: var(--lux-muted);
}

.lux-location-list li i {
    color: var(--lux-electric);
    margin-top: 0.15rem;
}

/* ── Pricing ── */
.lux-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.lux-price-card {
    position: relative;
    text-align: center;
    padding: 2.5rem 2rem;
}

.lux-price-card.featured {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.3);
    transform: scale(1.03);
}

.lux-price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
}

.lux-price-tier {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 0.5rem;
}

.lux-price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.lux-price-amount small {
    font-size: 1rem;
    color: var(--lux-muted);
    font-weight: 500;
}

.lux-price-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.lux-price-features li {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--lux-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lux-price-features li i {
    color: #818cf8;
}

/* ── Contact ── */
.lux-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
}

.lux-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lux-form-row .full { grid-column: 1 / -1; }

@media (max-width: 576px) {
    .lux-form-row { grid-template-columns: 1fr; }
}

.lux-form-group {
    margin-bottom: 0;
}

.lux-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lux-muted);
    margin-bottom: 0.5rem;
}

.form-label {
    color: #ffffff !important;
}

.lux-form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lux-glass-border);
    border-radius: 12px;
    color: var(--lux-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.lux-form-input:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.lux-form-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

textarea.lux-form-input {
    resize: vertical;
    min-height: 120px;
}

.lux-contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lux-contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    flex-shrink: 0;
}

.lux-contact-info-item h4 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
}

.lux-contact-info-item p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--lux-muted);
}

/* ── Footer ── */
.lux-footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--lux-glass-border);
    position: relative;
    z-index: 2;
}

.lux-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.lux-footer-brand p {
    color: var(--lux-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 360px;
}

.lux-footer h5 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.lux-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lux-footer-links a {
    color: var(--lux-muted);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    padding: 0.35rem 0;
    transition: color 0.25s;
}

.lux-footer-links a:hover {
    color: var(--lux-electric);
}

.lux-footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lux-glass-border);
    font-size: 0.8rem;
    color: var(--lux-muted);
}

/* ── Reveal animations (GSAP fallback) ── */
.lux-reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* ── Mobile nav ── */
.lux-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.lux-mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.lux-mobile-menu a {
    color: var(--lux-text);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.75rem;
    transition: color 0.25s;
}

.lux-mobile-menu a:hover {
    color: var(--lux-electric);
}

.lux-mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid var(--lux-glass-border);
    color: var(--lux-text);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.25rem;
    cursor: pointer;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .lux-nav-links,
    .lux-nav-actions .lux-btn-ghost { display: none; }
    .lux-menu-toggle { display: flex; align-items: center; justify-content: center; }
    .lux-mobile-menu { display: flex; }

    .lux-about-grid,
    .lux-location-grid,
    .lux-contact-grid {
        grid-template-columns: 1fr;
    }

    .lux-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .lux-price-card.featured { transform: none; }

    .lux-gallery { columns: 2; }

    .lux-hero-overlay {
        background:
            linear-gradient(to bottom, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.85) 60%, var(--lux-black) 100%);
    }
}

@media (max-width: 576px) {
    .lux-about-features { grid-template-columns: 1fr; }
    .lux-gallery { columns: 1; }
    .lux-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .lux-footer-brand p { margin: 0 auto; }
    .lux-hero-stats { gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ── Pricing & Gallery Enhancements ── */
.lux-pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.lux-price-card.featured.penthouse-featured {
    border-color: rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.3) !important;
}

.lux-price-card.featured.penthouse-featured::before {
    content: 'Signature Penthouse' !important;
    background: linear-gradient(135deg, #6366f1, #a78bfa) !important;
}

.lux-gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.lux-filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lux-glass-border);
    color: var(--lux-muted);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-filter-btn:hover {
    border-color: #818cf8;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.lux-filter-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Lightbox Overlay */
.lux-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lux-lightbox.open {
    display: flex;
    opacity: 1;
}

.lux-lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lux-lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    border: 1px solid var(--lux-glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-lightbox.open .lux-lightbox-img {
    transform: scale(1);
}

.lux-lightbox-title {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.lux-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--lux-glass-border);
    color: #ffffff;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 100000;
}

.lux-lightbox-close:hover {
    background: rgba(99, 102, 241, 0.18);
    border-color: #818cf8;
    color: #818cf8;
    transform: rotate(90deg);
}

.lux-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--lux-glass-border);
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 100000;
    user-select: none;
}

.lux-lightbox-nav:hover {
    background: rgba(99, 102, 241, 0.18);
    border-color: #818cf8;
    color: #818cf8;
}

.lux-lightbox-prev {
    left: 2rem;
}

.lux-lightbox-next {
    right: 2rem;
}

@media (max-width: 1200px) {
    .lux-pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lux-pricing-grid-4 {
        grid-template-columns: 1fr;
    }
    .lux-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lux-lightbox-prev {
        left: 1rem;
    }
    .lux-lightbox-next {
        right: 1rem;
    }
    .lux-lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

/* Override Bootstrap dark text-muted color for dark themed public pages */
.text-muted {
    color: rgba(255, 255, 255, 0.95) !important;
}

