/* ==========================================================================
   INSTALLATION AREAS – Auto-Scrolling Strip
   Compact single-row marquee showing active installation areas
   ========================================================================== */

.installation-areas-strip {
    background: linear-gradient(135deg, #071326 0%, #0a1a30 50%, #0d1f3a 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

/* Header Label */
.areas-strip-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem 0;
}

.areas-strip-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: areasDotPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes areasDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.85); }
}

.areas-strip-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
}

.areas-strip-label i {
    font-size: 0.68rem;
    margin-right: 0.2rem;
}

/* Track Wrapper & Infinite Scroll */
.areas-strip-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Fade edges for seamless look */
.areas-strip-track-wrapper::before,
.areas-strip-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 3;
    pointer-events: none;
}

.areas-strip-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #071326 0%, transparent 100%);
}

.areas-strip-track-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #0d1f3a 0%, transparent 100%);
}

.areas-strip-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: areasStripScroll 45s linear infinite;
}

.areas-strip-track:hover {
    animation-play-state: paused;
}

@keyframes areasStripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Area Pill Items */
.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    color: rgba(226, 232, 240, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    border-right: 1px solid rgba(56, 189, 248, 0.1);
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

.area-pill:hover {
    color: #38bdf8;
}

.area-pill i {
    color: #0ea5e9;
    font-size: 0.72rem;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.area-pill:hover i {
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .areas-strip-header {
        padding: 0.45rem 0.8rem 0;
    }

    .areas-strip-label {
        font-size: 0.62rem;
    }

    .areas-strip-live-dot {
        width: 6px;
        height: 6px;
    }

    .area-pill {
        font-size: 0.78rem;
        padding: 0.5rem 0.9rem;
        gap: 0.35rem;
    }

    .area-pill i {
        font-size: 0.65rem;
    }

    .areas-strip-track-wrapper::before,
    .areas-strip-track-wrapper::after {
        width: 30px;
    }
}
