/* ==========================================
   GOAN ELEMENT - MASTERPIECE STYLES v25
   (Corrected Gaps, Mobile Optimizations, Premium UI)
   ========================================== */

:root {
    --bg-body: #0A0A0A;
    --bg-card: #111111;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #D6A043;
    --accent-glow: rgba(214, 160, 67, 0.3);
    --border: rgba(255, 255, 255, 0.1);
    --map-filter: grayscale(100%) invert(100%) contrast(0.9);
    --btn-email-bg: #C29B40;
    --btn-wa-bg: #25D366;
}

body.light-theme {
    --bg-body: #F5F5F0;
    --bg-card: #FFFFFF;
    --text-main: #00204a;
    --text-muted: #5b6b80;
    --accent: #C2B280;
    --accent-glow: rgba(194, 178, 128, 0.3);
    --border: rgba(0, 32, 74, 0.1);
    --map-filter: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Headers */
.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.accent-text {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.anim-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.anim-header.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* General Section Padding - Default */
section {
    padding: 100px 5vw;
}

/* HEADER */
.site-header-transparent {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
}

body.scrolled .site-header-transparent {
    background: var(--bg-body);
    border-bottom: 1px solid var(--border);
}

.nav-left-transparent,
.nav-right-transparent {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right-transparent {
    justify-content: flex-end;
}

.brand-center-transparent {
    flex: 0;
    display: flex;
    justify-content: center;
}

.nav-link-transparent {
    color: var(--text-main);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-link-transparent:hover {
    color: var(--accent);
    opacity: 1;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

body.light-theme .logo-dark {
    display: none;
}

body.light-theme .logo-light {
    display: block;
}

.btn-booking-transparent {
    background: var(--accent);
    color: var(--bg-body);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* VIDEO HERO */
.video-hero-container {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-bottom: 0;
    padding: 0;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    /* Align to bottom to show write-up, crop top */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.mobile-video {
    display: none;
}

.desktop-video {
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    /* Reduced to 5% flat overlay */
    z-index: 2;
    pointer-events: none;
}

.hero-text-reveal {
    position: absolute;
    z-index: 3;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease-out;
    width: 100%;
    pointer-events: none;
}

.reveal-title {
    font-size: 5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-text-reveal.hidden {
    opacity: 0;
}

/* OFFERINGS */
.horizontal-section {
    height: 100vh;
    background: var(--bg-body);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.pin-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 5vw;
    width: 100%;
}

.intro-text {
    min-width: 400px;
    padding-right: 80px;
    z-index: 2;
}

.cards-track {
    display: flex;
    gap: 40px;
    min-width: max-content;
    padding-right: 150px;
    height: 60vh;
    align-items: center;
}

.h-card {
    width: 400px;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.4s ease;
    flex-shrink: 0;
    background: var(--bg-card);
}

.h-card:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}

.h-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 50%);
    z-index: 1;
}

.card-num-big {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
}

.card-info h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1;
}

.card-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

/* FEATURES */
.features-3d-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-body);
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: var(--border);
    opacity: 0.1;
    pointer-events: none;
}

.swiper {
    width: 100%;
    padding: 50px 0;
    z-index: 2;
    overflow: visible;
}

.swiper-slide {
    width: 320px;
    height: 450px;
}

.feature-box {
    background: var(--bg-card);
    height: 100%;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s;
}

.swiper-slide-active .feature-box {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--accent-glow);
}

.feature-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* TEAM */
.hero-team-boho {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    text-align: center;
    padding-bottom: 100px;
    margin: 0;
}

.wall-boho {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.member-boho {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.member-boho img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    border: 3px solid transparent;
    transition: 0.4s;
}

.member-boho:hover img,
.member-boho.active img {
    filter: grayscale(0%);
    border-color: var(--accent);
    transform: scale(1.05);
}

.member-popup {
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 240px;
    background: var(--bg-body);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 10;
    pointer-events: none;
}

.member-boho:hover .member-popup,
.member-boho.active .member-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.pop-name {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
}

.pop-role {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* REVIEWS */
.reviews-ribbon-section {
    padding: 80px 0;
    background: var(--bg-body);
    overflow: hidden;
    margin: 0;
}

.centered-title {
    text-align: center;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.review-card {
    width: 350px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.review-stars {
    color: #F59E0B;
    margin-bottom: 10px;
}

/* LOCATIONS - PREMIUM UI */
.location-section {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border);
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Added Premium Space */
.location-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 50px;
}

.location-info {
    flex: 1;
    padding-top: 40px;
}

.loc-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.loc-card:hover,
.loc-card.active {
    border-color: var(--accent);
    transform: translateX(10px);
    background: linear-gradient(145deg, var(--bg-card), #1a1a1a);
}

.loc-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.loc-card p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.status-dot.open {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 5px;
}

.map-container {
    flex: 1.5;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    filter: var(--map-filter);
}

/* FORM (Squeezed & Golden) */
.lead-form-section-boho {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 60px 5vw;
}

.lead-form-boho {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid var(--accent);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(214, 160, 67, 0.1);
}

.form-group-boho {
    margin-bottom: 20px;
}

.form-group-boho input,
.form-group-boho select,
.form-group-boho textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 6px;
}

.form-submit-btn-boho {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--bg-body);
    border: none;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit-btn-boho:hover {
    background: #fff;
}

/* READY TO BOOK */
.ready-to-book {
    padding: 100px 0;
    background: var(--bg-card);
    text-align: center;
    border-top: 1px solid var(--border);
}

.book-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.btn-book-email,
.btn-book-whatsapp {
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-book-email {
    background: var(--btn-email-bg);
}

.btn-book-whatsapp {
    background: var(--btn-wa-bg);
    font-size: 1.1rem;
}

.btn-book-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-book-email:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(194, 155, 64, 0.4);
}

/* FOOTER */
.site-footer-detailed {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 80px 5vw 20px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-btn-call,
.social-btn-wa {
    color: var(--text-main);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.social-btn-call:hover {
    background: var(--accent);
    color: #000;
}

.social-btn-wa:hover {
    background: #25D366;
    color: #fff;
}

.contact-col i {
    color: var(--accent);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-logo img {
    width: 150px;
    display: block;
    margin-bottom: 1rem;
}

/* AESTHETIC MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.aesthetic-modal {
    background: #111;
    border: 1px solid var(--accent);
    width: 90%;
    max-width: 450px;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--accent), #b08634);
    padding: 30px 20px;
    color: #000;
}

.modal-icon-glow {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.modal-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.modal-body {
    padding: 30px 20px;
    color: #ccc;
}

.modal-sub {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    font-weight: bold;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 20px 30px;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-call {
    background: var(--text-main);
    color: var(--bg-body);
}

.btn-wa-modal {
    background: #25D366;
    color: #fff;
    border: none;
}

.modal-close {
    background: transparent;
    border: none;
    color: #666;
    padding-bottom: 20px;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.8rem;
    width: 100%;
    display: block;
}

/* Hide Mobile Nav Overlay on Desktop */
.mobile-nav-overlay {
    display: none;
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        text-align: center;
    }

    section {
        padding: 60px 5vw;
    }

    /* Tighter padding */

    .nav-left-transparent,
    .nav-right-transparent {
        display: none;
        /* Hidden by default, toggled via JS */
    }

    /* Premium Mobile Menu Container (Slide from Right) */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        height: 100vh;
        background: var(--bg-card);
        z-index: 999;
        display: flex !important;
        /* Override display: none from desktop styles */
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        /* Left align items for parallel look */
        padding-left: 40px;
        /* Indent content */
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        /* Start off-screen to the right */
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        /* Smooth ease */
        border-left: 1px solid var(--border);
        box-shadow: -100vw 0 0 0 rgba(0, 0, 0, 0.6);
        /* Darken the rest of the screen */
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        /* Slide in */
    }

    .mobile-nav-link {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        /* Larger font */
        color: var(--text-main);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0;
        transform: translateX(30px);
        /* Slide text in from right too */
        transition: 0.4s ease-out;
        position: relative;
    }

    /* Animated underline effect */
    .mobile-nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: 0.3s;
    }

    .mobile-nav-link:hover::after {
        width: 50px;
    }

    .mobile-nav-overlay.active .mobile-nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-nav-link:hover {
        color: var(--accent);
    }

    /* Hamburger Button Animation */
    .mobile-menu-toggle-transparent {
        display: block;
        background: none;
        border: none;
        padding: 10px;
        z-index: 1001;
        /* Above the overlay */
        position: relative;
        cursor: pointer;
    }

    .mobile-menu-toggle-transparent span {
        display: block;
        width: 30px;
        height: 2px;
        background: var(--text-main);
        margin-bottom: 6px;
        transition: 0.3s;
        transform-origin: center;
    }

    /* X Animation */
    .mobile-menu-toggle-transparent.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle-transparent.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle-transparent.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-logo {
        height: 40px;
    }

    .desktop-video {
        display: none !important;
        /* Force hide desktop video on mobile */
    }

    /* Mobile: video scrolls with the page (not fixed).
       Fills width, uses the working 52vh height, aligns top. */
    .mobile-video {
        display: block !important;
        position: absolute !important;  /* flows with page, not fixed to viewport */
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;         /* 100% of parent container */
        height: 52vh !important;        /* keep the height that worked perfectly before */
        object-fit: cover;              /* fill the container */
        object-position: center top;    /* align visible frame to top */
        transform: none !important;
        transform-origin: center top !important;
        z-index: 1 !important;
    }

    /* Wrapper flows with page, not fixed */
    .video-wrapper {
        position: relative !important;  /* flows with document, not fixed */
        top: auto !important;
        left: auto !important;
        width: 100% !important;         /* 100% of parent */
        height: 52vh !important;        /* match video height for proper sizing */
        pointer-events: none;
        z-index: 1 !important;
    }

    /* Hero container normal document flow */
    .video-hero-container {
        height: 52vh;                   /* match the working height */
        margin-bottom: 0;
        background: #000;
        position: relative;             /* establish positioning context */
        width: 100%;
    }

    /* Ensure the overlay and hero text remain above the fixed video */
    .video-overlay { z-index: 2 !important; }
    .hero-text-reveal { z-index: 3 !important; pointer-events: none; top: 33%; }

    /* Reduce dark overlay shadow to 5% */
    .video-overlay {
        background: rgba(0, 0, 0, 0.05) !important;
    }

    /* Removed gaps */
    .reveal-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .horizontal-section {
        height: auto;
        padding: 60px 0;
        overflow: hidden;
        /* Revert to hidden to prevent page scroll */
        width: 100%;
        position: relative;
    }

    .pin-wrap {
        display: block;
        padding: 0;
        height: auto;
        width: 100%;
        overflow-x: auto;
        /* Allow scrolling here */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pin-wrap::-webkit-scrollbar {
        display: none;
    }

    .intro-text {
        padding: 0 20px;
        margin-bottom: 30px;
        min-width: auto;
        text-align: center;
    }

    .cards-track {
        display: flex;
        gap: 20px;
        padding: 0 20px 40px 20px;
        /* More bottom padding */
        width: max-content;
        /* Allow track to grow beyond screen width */
        height: auto;
        /* Overflow handled by parent .pin-wrap now */
        scroll-snap-type: x mandatory;
    }

    .cards-track::-webkit-scrollbar {
        display: none;
    }

    .h-card {
        width: 75vw;
        /* Reduced by ~10% to show next card */
        min-width: 75vw;
        height: 55vh;
        /* Slightly reduced height for better proportion */
        scroll-snap-align: center;
        margin-bottom: 10px;
        margin-right: 15px;
        /* Ensure gap is maintained */
    }

    .scroll-hint {
        display: none;
    }

    .features-3d-section {
        height: auto;
        padding: 60px 0;
    }

    .swiper {
        padding: 30px 0;
    }

    .swiper-slide {
        width: 280px;
        height: 400px;
    }

    .hero-team-boho {
        padding-bottom: 60px;
    }

    /* Reduced gap */
    .wall-boho {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 40px;
        padding: 0 15px;
    }

    .member-boho {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        position: relative;
        overflow: visible;
        /* Allow popup to show outside if needed, though we are overlaying it */
    }

    .member-popup {
        position: absolute;
        top: 85%;
        /* Position below the face */
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 160px;
        /* Fixed width for a clean card look */
        background: #111;
        /* Solid dark background */
        border: 1px solid var(--accent);
        border-radius: 12px;
        /* Rounded corners */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        /* Smooth bounce effect */
        z-index: 100;
        /* Ensure it floats above other elements */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        pointer-events: none;
    }

    .member-boho.active .member-popup {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .member-boho.active .member-popup {
        opacity: 1;
    }

    .pop-name {
        font-size: 0.9rem;
        margin: 0;
    }

    .pop-role {
        font-size: 0.6rem;
        margin: 0;
    }

    .pop-bio {
        display: block !important;
        /* Force reveal */
        font-size: 0.65rem;
        line-height: 1.3;
        color: var(--text-muted);
        text-align: center;
        margin-top: 6px;
        font-style: italic;
        width: 100%;
    }

    .location-section {
        padding: 60px 5vw;
        padding-top: 80px;
    }

    /* Reduced, Premium space */
    .location-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .map-container {
        height: 300px;
        order: -1;
    }

    .location-info {
        padding-top: 10px;
    }

    /* Reduced internal gap */

    .lead-form-section-boho {
        padding: 40px 20px;
    }

    .lead-form-boho {
        width: 100%;
        padding: 20px;
        box-shadow: none;
        border: 1px solid var(--border);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
        /* Increased spacing for better aesthetics */
        text-align: left;
    }

    .brand-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }

    .contact-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* UI friendly separator */
    }

    .social-links {
        justify-content: center;
    }

    .brand-col img {
        margin: 0 auto 20px;
        width: 40%;
    }

    .book-buttons {
        flex-direction: row;
        width: 100%;
        gap: 10px;
        padding: 0 10px;
    }

    .btn-book-email,
    .btn-book-whatsapp {
        width: auto;
        flex: 1;
        justify-content: center;
        padding: 14px 15px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}