:root {
    --primary: #1a1a1a;
    --accent: #c5a059; /* Dorado elegante */
    --text: #333;
    --light: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.32s ease, transform 0.32s ease, padding 0.24s ease, background 0.24s ease;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.logo { font-weight: 700; letter-spacing: 2px; color: var(--primary); display: flex; align-items: center; gap: 10px; text-transform: uppercase; font-size: 13px; }

.logo img { height: 40px; display: block; filter: invert(1) brightness(1.2); transition: filter 0.3s ease; }

.logo span { letter-spacing: 0.3em; }

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    margin-left: 30px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.navbar.navbar-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar.navbar-scrolled {
    background: rgba(255,255,255,1);
    padding: 10px 50px;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content { position: relative; width: 100%; max-width: 800px; margin: 0 auto; z-index: 2; }

.hero h1 { font-size: 4rem; margin-bottom: 20px; }

.tagline {
    display: inline-block;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 5px;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
}

/* Residences */
.residences { padding: 100px 0; background: var(--light); overflow: hidden; }

.residences .section-header {
    margin-bottom: 60px;
}

.residences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
}

.residence-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none; /* Removed the top border for a cleaner look */
}

.residence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.card-img-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: zoom-in;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.residence-card:hover .card-img-container img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(197, 160, 89, 0.4); /* Accent color with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.card-img-container:hover .card-overlay {
    opacity: 1;
}

.card-img-container:hover .card-overlay i {
    transform: scale(1);
}

.card-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.card-info .size {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-info p:not(.size) {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Concept */
.concept { padding: 0; background: #fff; }
.concept .container { max-width: none; padding: 0; }

.concept-hero {
    position: relative;
    min-height: 110vh;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.concept-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.concept-slide.active {
    opacity: 1;
}

.concept-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.concept-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,0,0,0.2), rgba(0,0,0,0.75));
}

.concept-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 5vw 100px;
    color: #fff;
}

.concept-hero-content .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 10px 18px;
    font-size: 13px;
    text-align: center;
}

.concept-hero-content h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.concept-hero-content p {
    max-width: 70ch;
    font-size: 15px;
}

.concept-note {
    margin-top: 30px;
}

/* Amenities */
.amenities {
    padding: 100px 0;
    background: var(--light);
}

.section-header h2,
.section-title {
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Amenities Bento Grid */
.amenities-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-bottom: 50px;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: background 0.3s ease;
}

.bento-info {
    color: white;
    width: 100%;
}

.bento-info i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.bento-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.bento-info p {
    font-size: 0.85rem;
    line-height: 1.4;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover Effects */
.bento-item:hover img {
    transform: scale(1.08);
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.bento-item:hover .bento-info p {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

/* Bento Grid Spanning */
.main-pool { grid-column: 1 / 3; grid-row: 1 / 3; }
.gym { grid-column: 3 / 4; grid-row: 1 / 2; }
.skybar { grid-column: 4 / 5; grid-row: 1 / 2; }
.spa { grid-column: 3 / 4; grid-row: 2 / 3; }
.sports-bar { grid-column: 4 / 5; grid-row: 2 / 3; }
.kids { grid-column: 1 / 3; grid-row: 3 / 4; }
.business-center { grid-column: 3 / 5; grid-row: 3 / 4; }
.pet-park { grid-column: 1 / 2; grid-row: 4 / 5; }
.grill { grid-column: 2 / 3; grid-row: 4 / 5; }
.wellness { grid-column: 3 / 4; grid-row: 4 / 5; }
.steam { grid-column: 4 / 5; grid-row: 4 / 5; }
.playground { grid-column: 1 / 5; grid-row: 5 / 6; }



@media (max-width: 1100px) {
    .amenities-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    .main-pool { grid-column: 1 / 3; grid-row: 1 / 3; }
    .gym { grid-column: 1 / 2; grid-row: 3 / 4; }
    .skybar { grid-column: 2 / 3; grid-row: 3 / 4; }
    .spa { grid-column: 1 / 2; grid-row: 4 / 5; }
    .sports-bar { grid-column: 2 / 3; grid-row: 4 / 5; }
    .kids { grid-column: 1 / 3; grid-row: 5 / 6; }
    .business-center, .pet-park, .grill, .wellness, .steam, .playground {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .amenities-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    .main-pool, .gym, .skybar, .spa, .sports-bar, .kids, .business-center, .pet-park, .grill, .wellness, .steam, .playground {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Virtual tour */
.virtual-tour {
    padding: 100px 0;
    background: #fff;
}

.virtual-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.virtual-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

.virtual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
}

.virtual-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 30px;
}

.virtual-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.virtual-content p {
    max-width: 520px;
    margin-bottom: 24px;
}

.virtual-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.virtual-play i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Calendar */
.booking { padding: 100px 0; background: #fff; }

.booking-card {
    background: var(--primary);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.lead-form {
    margin-top: 40px;
    text-align: left;
    background: rgba(255,255,255,0.04);
    padding: 30px;
    border-radius: 12px;
}

.lead-form h3 {
    margin-bottom: 5px;
}

.lead-form p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #ddd;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-row textarea {
    flex: 1;
    min-width: 0;
    border-radius: 6px;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
}

.form-field {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ccc;
}

.calendar-container {
    margin-top: 40px;
    background: white;
    border-radius: 10px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-calendar { color: #ccc; }

footer { padding: 50px 0 30px; background: #111; color: #aaa; font-size: 13px; }

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 260px;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
    color: #fff;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 4px;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-social .social-link:hover {
    color: #fff;
}

.social-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 16px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    z-index: 2000;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon i {
    font-size: 20px;
}

/* Gallery Zoom Button */
.gallery-zoom-trigger {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(197, 160, 89, 0.85); /* Accent color */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
    animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 5px rgba(197, 160, 89, 0.4), 0 0 10px rgba(197, 160, 89, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.8), 0 0 30px rgba(197, 160, 89, 0.4);
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        box-shadow: 0 0 5px rgba(197, 160, 89, 0.4), 0 0 10px rgba(197, 160, 89, 0.2);
    }
}

.gallery-zoom-trigger:hover {
    background: white;
    color: var(--primary);
    transform: translateX(-50%) scale(1.1);
    animation: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.gallery-zoom-trigger i {
    font-size: 1.2rem;
}

/* Lightbox Enhancements */
.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.image-lightbox.open {
    display: flex;
}

.image-lightbox img {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 3001;
}

.lightbox-nav:hover {
    background: white;
    color: var(--primary);
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

.image-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.image-lightbox-close:hover {
    background: #ff4d4d;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        background: white;
        padding: 10px 15px; /* Reduced padding */
        width: 100%;
        max-width: 100%; /* Ensure max-width is viewport width */
        left: 0;
        top: 0;
        box-sizing: border-box; /* Ensure padding doesn't affect total width */
        z-index: 2000; /* Increased z-index */
        display: flex; /* Changed from none to flex */
        justify-content: space-between;
        align-items: center;
        overflow-x: hidden; /* Prevent internal overflow */
    }

    .navbar.navbar-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar.navbar-scrolled {
        padding: 10px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 2002; /* Higher than Botpress and Navbar */
        margin-right: 0;
        cursor: pointer;
        pointer-events: auto !important; /* Ensure clickable */
    }
    
    .logo {
        font-size: 11px;
        margin-left: 0;
    }

    .logo img {
        height: 32px;
    }

    /* WhatsApp specific floating style */
    .whatsapp-float {
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.5s ease;
        visibility: hidden;
    }

    /* Initial state for Botpress container - hidden but with dimensions */
    #bp-web-widget-container {
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden;
        transition: opacity 0.5s ease;
    }

    .menu-toggle {
        opacity: 1 !important; /* Force visible */
        pointer-events: auto !important;
        visibility: visible !important;
        display: block; /* Ensure display block */
    }

    /* Override visibility for mobile */
    @media (max-width: 900px) {
        .whatsapp-float.visible,
        #bp-web-widget-container.visible {
            opacity: 1 !important;
            pointer-events: auto !important;
            visibility: visible !important;
        }
    }

    .whatsapp-float.visible,
    #bp-web-widget-container.visible {
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible;
    }

    .whatsapp-float {
        z-index: 2100;
        bottom: 24px; /* Default desktop position */
        left: 24px;   /* Default desktop position */
    }
    
    /* Hide floating elements when reaching footer */
    .whatsapp-float.fade-out,
    #bp-web-widget-container.fade-out {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    @media (max-width: 900px) {
        .whatsapp-float {
            bottom: 12px; /* Lowered to align with Botpress */
            left: 20px;
            transform: scale(1.2); 
            transform-origin: bottom left; 
            margin-bottom: 0;
        }
        
    /* Fixed position to prevent layout push */
    #bp-web-widget-container {
        position: fixed !important;
        right: 0 !important;
        bottom: 20px !important;
        width: auto !important;
        height: auto !important;
        max-width: 100px !important;
        max-height: 80px !important;
        overflow: hidden !important;
        z-index: 2100 !important;
    }
    }

    .nav-links {
        position: absolute; /* Changed from fixed to absolute */
        top: 100%; /* Position below navbar */
        right: 0;
        left: 0; /* Force full width correctly */
        width: 100%; /* Use 100% instead of 100vw */
        height: auto; /* Auto height */
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center; /* Center align items */
        padding: 20px 0; /* Remove side padding */
        border-radius: 0; /* Remove border radius */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;
        z-index: 1999; /* Changed to be slightly less than navbar but above content */
    }

    .navbar.navbar-active .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 16px;
        width: 100%;
        text-align: center; /* Center text */
    }

    .nav-links a {
        margin: 20px 0;
        font-size: 18px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .btn-primary {
        margin-top: 30px;
        padding: 12px 30px; /* Reduced padding for mobile */
    }

    /* Concept Hero Adjustments */
    .concept-hero-content {
        padding: 40px 20px 80px; /* Adjusted padding */
        text-align: center;
        align-items: center; /* Center items */
    }

    .concept-hero-content .btn-primary {
        align-self: center; /* Center button */
    }

    .concept-hero-content h2 {
        font-size: 1.8rem;
    }

    .concept-hero-content p {
        max-width: 100%; /* Ensure text uses full width */
        font-size: 14px;
        margin-bottom: 15px; /* Add spacing between paragraphs */
    }
    
    .concept-note {
        margin-top: 20px;
        font-size: 13px; /* Slightly smaller for the note */
        line-height: 1.5;
    }

    .gallery-zoom-trigger {
        bottom: auto;
        top: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
    
    .image-lightbox img {
        max-width: 95%;
    }

    .concept-hero {
        min-height: 100vh;
    }

    .residences, .amenities, .virtual-tour, .booking {
        padding: 60px 0;
    }

    .residences-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .amenities-list {
        gap: 10px;
    }

    .amenities-list span {
        padding: 8px 15px;
        font-size: 12px;
    }

    .virtual-content h2 {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-social .social-link {
        justify-content: center;
    }

    .booking-card {
        padding: 30px 15px;
    }

    .lead-form {
        padding: 15px;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .whatsapp-float {
        bottom: 96px;
    }
}
