
/* =========================================================
    LOCATION AREA - FULL PREMIUM RE-ENGINEERING
========================================================= */
.location-area{
    /* position:relative;
    overflow-x:clip;
    overflow-y:hidden;
    isolation:isolate;
    overflow-x:hidden; */
}

/* Fluid Decorative Glow Nodes */
.location-glow-top,
.location-glow-bottom{
    pointer-events:none;
    z-index:-1;
}

.location-glow-top{
    top:0;
    right:0;

    width:420px;
    /* height:420px; */

    transform:translate(50%,-50%);
}

.location-glow-bottom{
    left:0;
    bottom:0;

    width:380px;
    /* height:380px; */

    transform:translate(-50%,50%);
}

/* Section Header Typography Overrides */
.location-area .section-heading h3 {
    color: #fffdf9;
}

.location-title-line {
    width: 50px;
    height: 3px;
    background: #c9962a;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Master Grid Alignment Wrapper */
.location-split-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* max-width: 1000px; */
    margin: 0 auto;
}

/* =========================================================
    ONE-LINE BUTTON SCROLLER TRACK WITH LUXURY SCROLLBAR
========================================================= */
.location-navigation-panel {
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 4px;
}

.tab-scroller-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* Strictly ensures everything stays on one line */
    gap: 12px;
    overflow-x: auto; /* Enables scroll mechanism */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;

    /* Firefox Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #c9962a rgba(255, 255, 255, 0.05);
}

/* Custom Webkit Scrollbar (Chrome, Safari, Edge) */
.tab-scroller-track::-webkit-scrollbar {
    height: 5px; /* Ultra sleek custom scrollbar height */
    display: block;
}

.tab-scroller-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.tab-scroller-track::-webkit-scrollbar-thumb {
    background: rgba(201, 150, 42, 0.3); /* Premium Gold translucent tint */
    border-radius: 10px;
    transition: background 0.3s ease;
}

.tab-scroller-track::-webkit-scrollbar-thumb:hover {
    background: #c9962a; /* Solid brand Gold on hover */
}

/* Refined Premium Tab Buttons */
.tab-scroller-track button {
    flex: 0 0 auto; /* Protects buttons from collapsing inside the single row */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
}

.tab-scroller-track button i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

/* Interactive States */
.tab-scroller-track button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.tab-scroller-track button.active {
    background: #c9962a; /* Gold Brand Base */
    border-color: #c9962a;
    color: #0d1b3e;
    box-shadow: 0 10px 25px rgba(201, 150, 42, 0.25);
}

.tab-scroller-track button.active i {
    color: #0d1b3e;
}

/* =========================================================
    CONTENT PANEL & MAP HOUSING
========================================================= */
.location-content-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tabcontent {
    animation: smoothTabFade 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes smoothTabFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inner Layout Meta Info Header */
.map-window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-left: 4px;
}

.indicator-pulse {
    width: 10px;
    height: 10px;
    background: #c9962a;
    border-radius: 50%;
    position: relative;
}

.indicator-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #c9962a;
    animation: radarPulse 1.8s infinite linear;
}

@keyframes radarPulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.map-window-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fffdf9;
    margin: 0;
}

/* Robust Map Housing Structure */
.map_iframe {
    width: 100%;
    height: 400px; /* Fixed proportional desktop height */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Force iframe scales */
.map_iframe iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* Responsive Overrides */
@media (max-width: 576px) {
    .location-content-panel {
        padding: 16px;
    }
    .map_iframe {
        height: 280px; /* Mobile dynamic height compression */
    }
}