/* ==========================================================================
   ALISTERA LUXURY GLASS NAVIGATION
   ========================================================================== */

/* Strict single caret enforcement: never allow duplicate ::after arrows */
.nav-menu > summary::after,
.nav-menu[open] > summary::after,
.nav-panel a::after,
.nav-panel a:hover::after,
.nav-panel a:focus-visible::after,
.nav-sub > summary::after,
.nav-sub[open] > summary::after,
.lang-menu > summary::after,
.lang-menu[open] > summary::after,
.lang-trigger::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
}

.site-menu,
[data-site-nav="glass"].site-menu {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    left: 50%;
    z-index: 999;
    transform: translateX(-50%);
    color: #F9F8F8;
    pointer-events: none;
}

.nav-menu {
    position: relative;
    pointer-events: auto;
}

/* --- Trigger Pill (ONLY the top-level direct child summary) --- */
.nav-menu > summary,
.nav-menu > summary.nav-pill {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(46, 44, 52, 0.72) 0%, rgba(32, 30, 36, 0.85) 100%);
    box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    cursor: pointer;
    user-select: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F9F8F8;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.2s ease,
                background 0.2s ease,
                box-shadow 0.2s ease;
}

.nav-menu > summary::-webkit-details-marker {
    display: none;
}

.nav-pill-burger {
    width: 14px;
    height: 14px;
    opacity: 0.85;
    flex-shrink: 0;
    color: var(--brand-blue, #A1BBCA);
}

.nav-pill-chevron {
    width: 11px;
    height: 11px;
    opacity: 0.65;
    transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.nav-menu[open] > summary .nav-pill-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-menu > summary:hover,
.nav-menu > summary:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(56, 54, 62, 0.82) 0%, rgba(38, 36, 44, 0.92) 100%);
    box-shadow: 0 20px 42px -4px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    outline: none;
}

.nav-menu[open] > summary {
    border-color: rgba(161, 187, 202, 0.45);
    background: linear-gradient(135deg, rgba(50, 48, 56, 0.90) 0%, rgba(30, 28, 34, 0.95) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(161, 187, 202, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* --- Dropdown Glass Panel --- */
@keyframes navPanelFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

.nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: min(252px, calc(100vw - 32px));
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(38, 36, 46, 0.88) 0%, rgba(22, 20, 26, 0.95) 100%);
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.6),
                0 10px 24px -4px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    animation: navPanelFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-panel .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* --- Menu Item Links --- */
.nav-panel a.nav-link,
.nav-panel a:not(.lang-option) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 12px;
    color: rgba(249, 248, 248, 0.78);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.nav-link-chevron {
    width: 12px;
    height: 12px;
    opacity: 0.35;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    outline: none;
}

.nav-panel a:hover .nav-link-chevron,
.nav-panel a:focus-visible .nav-link-chevron {
    opacity: 0.9;
    transform: translateX(2px);
}

html[dir="rtl"] .nav-link-chevron {
    transform: rotate(180deg);
}

html[dir="rtl"] .nav-panel a:hover .nav-link-chevron,
html[dir="rtl"] .nav-panel a:focus-visible .nav-link-chevron {
    transform: rotate(180deg) translateX(2px);
}

html[dir="rtl"] .nav-panel a:hover .nav-link-chevron,
html[dir="rtl"] .nav-panel a:focus-visible .nav-link-chevron {
    transform: translateX(-2px);
}

/* Active page highlight */
.nav-panel a.is-current,
.nav-panel a[aria-current="page"] {
    background: rgba(161, 187, 202, 0.12);
    color: #FFFFFF;
    font-weight: 600;
}

.nav-panel a.is-current .nav-link-chevron,
.nav-panel a[aria-current="page"] .nav-link-chevron {
    opacity: 0.75;
    color: var(--brand-blue, #A1BBCA);
}

/* --- Elegant Divider --- */
.nav-divider {
    height: 1px;
    margin: 5px 6px;
    background: rgba(255, 255, 255, 0.08);
}

/* --- Language Submenu --- */
/* --- In-Drawer Language Dropdown (Inline Luxury Accordion) --- */
.nav-sub {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-top: 2px;
}

.nav-sub > summary,
.nav-sub > summary.nav-sub-trigger {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(249, 248, 248, 0.78);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none !important;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    width: 100%;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.nav-sub > summary::-webkit-details-marker {
    display: none;
}

.nav-sub > summary:hover,
.nav-sub > summary:focus-visible {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #FFFFFF;
    outline: none;
}

.nav-sub[open] > summary {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF;
}

.nav-sub-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-sub-icon {
    width: 14px;
    height: 14px;
    opacity: 0.75;
    color: var(--brand-blue, #A1BBCA);
    flex-shrink: 0;
}

.nav-sub-meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.lang-badge {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(249, 248, 248, 0.85);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.nav-sub-caret {
    width: 10px;
    height: 10px;
    opacity: 0.6;
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.nav-sub[open] > summary .nav-sub-caret {
    transform: rotate(180deg);
    opacity: 0.95;
}

/* In-Drawer Subpanel: Inline collapsible card strictly contained within nav-panel */
.nav-sub .nav-subpanel,
.nav-panel .nav-subpanel {
    display: none;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100% !important;
    box-sizing: border-box !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

.nav-sub[open] .nav-subpanel,
.nav-panel .nav-sub[open] .nav-subpanel {
    display: flex !important;
    animation: navSubSlideDown 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes navSubSlideDown {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Options inside the in-drawer dropdown */
.nav-subpanel .lang-option,
.nav-panel .nav-subpanel a.lang-option,
.nav-panel .nav-subpanel a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 36px !important;
    padding: 0 10px 0 12px !important;
    border-radius: 10px !important;
    color: rgba(249, 248, 248, 0.72) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
    transform: none !important;
    box-sizing: border-box !important;
    width: 100% !important;
    transition: background 0.15s ease, color 0.15s ease !important;
}

.nav-subpanel .lang-option:hover,
.nav-subpanel .lang-option:focus-visible,
.nav-panel .nav-subpanel a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
    transform: none !important;
}

.nav-subpanel .lang-option.is-active,
.nav-subpanel .lang-option[aria-current="true"],
.nav-panel .nav-subpanel a[aria-current="true"] {
    background: rgba(161, 187, 202, 0.18) !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
}

.lang-check {
    width: 13px;
    height: 13px;
    color: var(--brand-blue, #A1BBCA);
    opacity: 0.95;
    flex-shrink: 0;
}

.lang-check {
    width: 14px;
    height: 14px;
    color: var(--brand-blue, #A1BBCA);
}

/* --- Bar Nav Layout & Desktop Links -------------------------------- */
.nav-desktop-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.nav-desktop-links .nav-link-chevron {
    display: none !important;
}

.nav-desktop-links .nav-link {
    display: inline-flex;
    align-items: center;
    color: rgba(249, 248, 248, 0.65);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 6px 0;
    position: relative;
    transition: color 0.18s ease;
}

.nav-desktop-links .nav-link:hover {
    color: #FFFFFF;
}

.nav-desktop-links .nav-link.is-current,
.nav-desktop-links .nav-link[aria-current="page"] {
    color: #FFFFFF;
    font-weight: 600;
}

.nav-desktop-links .nav-link.is-current::after,
.nav-desktop-links .nav-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, var(--brand-blue, #A1BBCA), rgba(161, 187, 202, 0.3));
}

.top-nav-end {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-mobile-menu {
    display: none !important;
    position: relative;
}

.nav-mobile-pill {
    min-height: 38px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
}

@keyframes navMobilePanelFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nav-mobile-menu .nav-panel {
    right: 0;
    left: auto;
    top: calc(100% + 10px);
    animation: navMobilePanelFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

html[dir="rtl"] .nav-mobile-menu .nav-panel {
    right: auto;
    left: 0;
}

.nav-drawer-cta {
    width: 100%;
    margin-top: 4px;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .nav-desktop-links {
        display: none !important;
    }
    .nav-mobile-menu {
        display: block !important;
    }
}

/* --- Bar Nav Language Menu (Minimalist Quiet Luxury) ---------------- */
.lang-menu {
    position: relative;
}

.lang-trigger {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(249, 248, 248, 0.82);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.18s ease;
    user-select: none;
}

.lang-trigger::-webkit-details-marker {
    display: none;
}

.lang-globe-icon {
    width: 13px;
    height: 13px;
    color: var(--brand-blue, #A1BBCA);
    opacity: 0.85;
}

.lang-current {
    letter-spacing: 0.06em;
}

.lang-caret,
.nav-sub-caret {
    width: 10px;
    height: 10px;
    opacity: 0.55;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.lang-trigger:hover,
.lang-trigger:focus-visible,
.lang-menu[open] > .lang-trigger {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(161, 187, 202, 0.35);
    color: #FFFFFF;
    outline: none;
}

.lang-menu[open] > .lang-trigger .lang-caret,
.nav-sub[open] > summary .nav-sub-caret {
    transform: rotate(180deg);
    opacity: 0.9;
}

.lang-menu {
    position: relative;
    display: inline-block;
}

.lang-menu .lang-panel {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    min-width: 154px;
    padding: 6px;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: linear-gradient(150deg, rgba(46, 44, 52, 0.96), rgba(28, 26, 32, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
}

html[dir="rtl"] .lang-menu .lang-panel {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

.lang-menu .lang-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    color: rgba(249, 248, 248, 0.78);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-menu .lang-panel a:hover,
.lang-menu .lang-panel a[aria-current="true"] {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

/* --- Subtle Film Grain Texture (Luxury UI) - disabled per request -- */
.alistera-film-grain {
    display: none !important;
}

/* --- Floating VIP Circular WhatsApp Action ------------------------ */
.alistera-wa-fab,
.alistera-wa-float {
    position: fixed;
    top: 50%;
    bottom: auto;
    right: max(20px, env(safe-area-inset-right, 20px));
    transform: translateY(-50%);
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42), 0 4px 14px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.4, 1), box-shadow 0.22s ease;
}
.alistera-wa-fab:hover,
.alistera-wa-float:hover,
.alistera-wa-fab:focus-visible,
.alistera-wa-float:focus-visible {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55), 0 6px 18px rgba(0, 0, 0, 0.40);
    outline: none;
    color: #FFFFFF;
}
.alistera-wa-fab .wa-fab-pulse,
.alistera-wa-float .wa-fab-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.75);
    animation: alistera-wa-pulse-ring 2.4s infinite cubic-bezier(0.2, 0.8, 0.4, 1);
    pointer-events: none;
}
@keyframes alistera-wa-pulse-ring {
    0% { transform: scale(0.92); opacity: 0.95; }
    100% { transform: scale(1.48); opacity: 0; }
}
.alistera-wa-fab .wa-beacon,
.alistera-wa-float .wa-beacon {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2.5px solid #128C7E;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.alistera-wa-fab svg,
.alistera-wa-float svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: #FFFFFF;
}
.alistera-wa-fab .wa-tooltip,
.alistera-wa-float .wa-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    padding: 7px 15px;
    border-radius: 999px;
    background: linear-gradient(150deg, rgba(46, 44, 52, 0.96), rgba(28, 26, 32, 0.98));
    border: 1px solid rgba(249, 248, 248, 0.16);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #F9F8F8;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.alistera-wa-fab:hover .wa-tooltip,
.alistera-wa-fab:focus-visible .wa-tooltip,
.alistera-wa-float:hover .wa-tooltip,
.alistera-wa-float:focus-visible .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
html[dir="rtl"] .alistera-wa-fab,
html[dir="rtl"] .alistera-wa-float {
    right: auto;
    left: max(20px, env(safe-area-inset-left, 20px));
}
html[dir="rtl"] .alistera-wa-fab .wa-beacon,
html[dir="rtl"] .alistera-wa-float .wa-beacon {
    right: auto;
    left: 2px;
}
html[dir="rtl"] .alistera-wa-fab .wa-tooltip,
html[dir="rtl"] .alistera-wa-float .wa-tooltip {
    right: auto;
    left: calc(100% + 14px);
    transform: translateY(-50%) translateX(-6px);
}
html[dir="rtl"] .alistera-wa-fab:hover .wa-tooltip,
html[dir="rtl"] .alistera-wa-fab:focus-visible .wa-tooltip,
html[dir="rtl"] .alistera-wa-float:hover .wa-tooltip,
html[dir="rtl"] .alistera-wa-float:focus-visible .wa-tooltip {
    transform: translateY(-50%) translateX(0);
}
@media (max-width: 768px) {
    .alistera-wa-fab,
    .alistera-wa-float {
        top: 50%;
        bottom: auto;
        right: max(14px, env(safe-area-inset-right, 14px));
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
    }
    .alistera-wa-fab svg,
    .alistera-wa-float svg {
        width: 25px;
        height: 25px;
    }
    html[dir="rtl"] .alistera-wa-fab,
    html[dir="rtl"] .alistera-wa-float {
        right: auto;
        left: max(14px, env(safe-area-inset-left, 14px));
    }
}

/* --- 3D Tour Ambient Preloader ----------------------------------- */
.tour-loader {
    position: fixed;
    inset: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #323038;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.65s;
    pointer-events: auto;
}
.tour-loader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.tour-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    max-width: 380px;
}
.tour-loader__logo {
    width: 150px;
    height: auto;
    margin-bottom: 24px;
    animation: tour-logo-pulse 2.2s infinite ease-in-out;
}
@keyframes tour-logo-pulse {
    0%, 100% { opacity: 0.82; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}
.tour-loader__status {
    width: 140px;
    height: 2px;
    background: rgba(249, 248, 248, 0.12);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}
.tour-loader__bar {
    display: block;
    width: 50%;
    height: 100%;
    background: #A1BBCA;
    border-radius: 999px;
    animation: tour-bar-slide 1.8s infinite ease-in-out;
}
@keyframes tour-bar-slide {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(120%); }
    100% { transform: translateX(300%); }
}
.tour-loader__text {
    margin: 0 0 14px;
    color: rgba(249, 248, 248, 0.68);
    font-size: 13px;
    font-family: inherit;
    letter-spacing: 0.04em;
}
.tour-loader__bypass {
    color: #A1BBCA;
    font-size: 13px;
    font-family: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(161, 187, 202, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}
.tour-loader__bypass:hover {
    color: #F9F8F8;
    border-color: #F9F8F8;
}

/* --- Office Configurator (Pricing) ------------------------------ */
.office-calc {
    margin-top: 28px;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(249, 248, 248, 0.12);
    background: linear-gradient(145deg, rgba(50, 48, 56, 0.70), rgba(68, 66, 74, 0.45));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.office-calc__title {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #A1BBCA;
}
.office-calc__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.office-calc__tab {
    flex: 1 1 calc(25% - 8px);
    min-width: 120px;
    padding: 12px 14px;
    border: 1px solid rgba(249, 248, 248, 0.14);
    border-radius: 12px;
    background: rgba(249, 248, 248, 0.04);
    color: rgba(249, 248, 248, 0.75);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}
.office-calc__tab:hover {
    border-color: rgba(161, 187, 202, 0.5);
    color: #F9F8F8;
    background: rgba(249, 248, 248, 0.08);
}
.office-calc__tab.is-active {
    border-color: #A1BBCA;
    background: linear-gradient(145deg, rgba(161, 187, 202, 0.22), rgba(249, 248, 248, 0.10));
    color: #F9F8F8;
    box-shadow: 0 4px 20px rgba(161, 187, 202, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.office-calc__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(249, 248, 248, 0.08);
}
@media (max-width: 768px) {
    .office-calc__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.office-calc__spec h4 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 400;
    color: #F9F8F8;
}
.office-calc__spec p {
    margin: 0 0 12px;
    color: rgba(249, 248, 248, 0.72);
    font-size: 14px;
    line-height: 1.5;
}
.office-calc__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: rgba(249, 248, 248, 0.85);
}
.office-calc__features li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.office-calc__features li::before {
    content: "✓";
    color: #A1BBCA;
    font-weight: bold;
}
.office-calc__action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    text-align: right;
}
html[dir="rtl"] .office-calc__action {
    align-items: flex-start;
    text-align: left;
}
@media (max-width: 768px) {
    .office-calc__action,
    html[dir="rtl"] .office-calc__action {
        align-items: stretch;
        text-align: center;
    }
}
.office-calc__price {
    font-size: 28px;
    font-weight: 300;
    color: #F9F8F8;
}
.office-calc__price span {
    font-size: 14px;
    color: rgba(249, 248, 248, 0.6);
}
.office-calc__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    background: #A1BBCA;
    color: #323038;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.office-calc__cta:hover {
    background: #c5d8e2;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(161, 187, 202, 0.35);
}

/* --- Floor Plan Hotspot Explorer --------------------------------- */
.zone-explorer {
    margin-top: 24px;
}
.zone-explorer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.zone-pill {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(249, 248, 248, 0.14);
    background: rgba(249, 248, 248, 0.04);
    color: rgba(249, 248, 248, 0.75);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.zone-pill:hover {
    border-color: rgba(161, 187, 202, 0.5);
    color: #F9F8F8;
    background: rgba(249, 248, 248, 0.08);
}
.zone-pill.is-active {
    border-color: #A1BBCA;
    background: rgba(161, 187, 202, 0.18);
    color: #F9F8F8;
}
.zone-card {
    padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid rgba(249, 248, 248, 0.10);
    background: linear-gradient(145deg, rgba(50, 48, 56, 0.50), rgba(68, 66, 74, 0.35));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.zone-card--hero {
    background: linear-gradient(145deg, rgba(68, 66, 74, 0.60), rgba(50, 48, 56, 0.45));
    border-color: rgba(161, 187, 202, 0.25);
}
@media (max-width: 640px) {
    .zone-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
.zone-card__info h4 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
    color: #F9F8F8;
}
.zone-card__info p {
    margin: 0;
    font-size: 14px;
    color: rgba(249, 248, 248, 0.72);
}
.zone-card__stat {
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #A1BBCA;
    white-space: nowrap;
}

/* --- Unconditional Hidden Enforcement ----------------------------- */
[hidden],
.zone-card[hidden],
.office-calc__content[hidden] {
    display: none !important;
}

/* --- Tab Transitions ---------------------------------------------- */
@keyframes calcTabFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.office-calc__content.is-fading,
.zone-card.is-fading {
    animation: calcTabFade 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.office-calc__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 640px) {
    .office-calc__actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .office-calc__actions .office-calc__cta,
    .office-calc__actions .office-calc__wa {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
.office-calc__wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.38);
    background: rgba(37, 211, 102, 0.10);
    color: #25D366;
    font-weight: 650;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.office-calc__wa:hover {
    background: rgba(37, 211, 102, 0.22);
    border-color: #25D366;
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* --- FAQ Accordion Section -------------------------------------- */
.faq-section {
    padding: 60px 0 80px;
}
.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}
.faq-item {
    border: 1px solid rgba(249, 248, 248, 0.11);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(50, 48, 56, 0.55), rgba(68, 66, 74, 0.35));
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s;
}
.faq-item:hover {
    border-color: rgba(161, 187, 202, 0.4);
}
.faq-item[open] {
    border-color: rgba(161, 187, 202, 0.5);
    background: linear-gradient(145deg, rgba(50, 48, 56, 0.75), rgba(68, 66, 74, 0.50));
}
.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #F9F8F8;
    cursor: pointer;
    user-select: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: #A1BBCA;
    transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-content {
    padding: 0 26px 22px;
    color: rgba(249, 248, 248, 0.78);
    font-size: 15px;
    line-height: 1.65;
    border-top: 1px solid rgba(249, 248, 248, 0.06);
    padding-top: 16px;
}

/* --- Crystal-Clear Content & Media Visibility (No Murky Overlays or Scroll Opacity Fading) --- */
.web-section .web-media,
.web-section .web-intro,
.web-section .web-cards,
.web-section .web-list,
.web-section .web-gallery,
.web-section .web-plan-media,
.web-section .web-contact-panel,
.office-calc,
.faq-section {
    opacity: 1 !important;
    transform: none !important;
}

/* Remove murky overlay tint from full-bleed photography to preserve true colors */
.web-media::after {
    display: none !important;
}

/* --- Interactive Mouse Spotlight Glow on All Cards ---------------- */
.web-card,
.card,
.glass-card,
.glass-panel,
.office-calc,
.zone-card,
.zone-card--hero,
.faq-item,
.contact-card,
.contact-glass,
.download,
.lead-block,
.hero-panel,
.tour-card,
.stat-card,
.spec-card {
    position: relative;
    overflow: hidden;
}

/* Ensure absolute title box maintains absolute positioning inside .web-media */
.web-title-box {
    position: absolute !important;
    overflow: hidden;
}

.web-card::before,
.card::before,
.glass-card::before,
.glass-panel::before,
.office-calc::before,
.zone-card::before,
.zone-card--hero::before,
.faq-item::before,
.contact-card::before,
.contact-glass::before,
.download::before,
.lead-block::before,
.hero-panel::before,
.tour-card::before,
.web-title-box::before,
.stat-card::before,
.spec-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: radial-gradient(420px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(161, 187, 202, 0.22), transparent 72%);
    z-index: 1;
}

.web-card:hover::before,
.card:hover::before,
.glass-card:hover::before,
.glass-panel:hover::before,
.office-calc:hover::before,
.zone-card:hover::before,
.zone-card--hero:hover::before,
.faq-item:hover::before,
.contact-card:hover::before,
.contact-glass:hover::before,
.download:hover::before,
.lead-block:hover::before,
.hero-panel:hover::before,
.tour-card:hover::before,
.web-title-box:hover::before,
.stat-card:hover::before,
.spec-card:hover::before {
    opacity: 1;
}

.web-card > *,
.card > *,
.glass-card > *,
.glass-panel > *,
.office-calc > *,
.zone-card > *,
.zone-card--hero > *,
.faq-item > *,
.contact-card > *,
.contact-glass > *,
.download > *,
.lead-block > *,
.hero-panel > *,
.tour-card > *,
.web-title-box > *,
.stat-card > *,
.spec-card > * {
    position: relative;
    z-index: 2;
}



