/* =====================================================
   MAPS SECTION - HK EQUIPMENT
===================================================== */
#maps {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Dekorasi Latar Belakang (Aksen Garis Industrial) */
#maps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 0;
}

.maps-container {
    position: relative;
    z-index: 1;
}


/* Bingkai Peta Premium */
.maps-window {
    border: 8px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #000;
}

.maps-window:hover {
    transform: scale(1.01) translateY(-5px);
    border-color: rgba(220, 53, 69, 0.2);
}

/* Filter Peta (Memberikan kesan Dark Mode agar menyatu dengan section) */
.maps-window iframe {
    filter: grayscale(100%) invert(90%) contrast(90%);
    transition: all 0.6s ease;
}

.maps-window:hover iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* Info Box di bawah Peta */
.maps-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.maps-info-pill i {
    color: var(--primary-color);
}

/* Update warna teks deskripsi agar cerah */
.maps-description {
    color: rgba(255, 255, 255, 0.85); /* Putih cerah, namun tidak menyilaukan */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}