.company-profile-section {
    padding: 80px 0;
    background-color: #ffffff;
    /* Ganti URL di bawah dengan gambar pattern/topography tipis */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M11 18c3.86 0 7-3.14 7-7s-3.14-7-7-7-7 3.14-7 7 3.14 7 7 7zm48 25c3.86 0 7-3.14 7-7s-3.14-7-7-7-7 3.14-7 7 3.14 7 7 7zm-43-7c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm63 31c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zM34 90c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm56-76c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM12 86c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm28-65c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm23-11c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 60c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm29 22c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM10 50c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm42-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-24c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 40c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4-40c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z' fill='%23e67e22' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    position: relative;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    vertical-align: top;
    /* Align the text to the top */
    padding: 2px;
    /* Add padding for better readability */
}
    .map-container {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .custom-map {
        width: 100%;
        height: auto;
        filter: drop-shadow(10px 10px 15px rgba(0,0,0,0.1));
        transition: transform 0.3s ease;
    }

    /* Style Kotak Deskripsi Melayang */
    .custom-tooltip {
        position: absolute;
        display: none; /* Sembunyi secara default */
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
        border-left: 4px solid #021ce4ff;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        z-index: 100;
        width: 200px;
        pointer-events: none; /* Agar tidak mengganggu kursor */
        transform: translate(-50%, -110%); /* Posisi di atas titik */
        animation: fadeIn 0.3s ease;
    }

    .custom-tooltip h5 {
        color: #021ce4ff;
        margin: 0 0 5px 0;
        font-size: 16px;
        font-weight: bold;
    }

    .custom-tooltip p {
        margin: 0;
        font-size: 13px;
        color: #333;
        line-height: 1.4;
    }

    /* Marker Style */
    .marker {
        position: absolute;
        width: 18px;
        height: 18px;
        background-color: #021ce4ff;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        border: 2px solid white;
    }

    .marker::after {
        content: "";
        position: absolute;
        width: 100%; height: 100%;
        top: 0; left: 0;
        border: 2px solid #021ce4ff;
        border-radius: 50%;
        animation: radar-pulse 2s infinite;
    }

    @keyframes radar-pulse {
        0% { transform: scale(1); opacity: 1; }
        100% { transform: scale(3); opacity: 0; }
    }

    /* Titik Posisi */
    .point-1 { top: 30%; left: 74%; }
    .point-2 { top: 35%; left: 73%; }
    .point-3 { top: 43%; left: 80%; }
    .point-4 { top: 53%; left: 85%; }

    @keyframes fadeIn {
        from { opacity: 0; transform: translate(-50%, -100%); }
        to { opacity: 1; transform: translate(-50%, -110%); }
    }

.infra-slider-outer {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.infra-slider-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.infra-item {
    /* Menampilkan 5 item dalam satu baris (100% / 5) */
    min-width: 20%; 
    padding: 10px;
    box-sizing: border-box;
}

.facility-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px; /* Atur tinggi kartu */
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;      /* Warna putih solid */
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;   /* Membuat teks menjadi tebal */
}

/* Tombol Navigasi */
.infra-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.infra-nav:hover { background: #fff; color: #007bff; }
.infra-nav.prev { left: 10px; }
.infra-nav.next { right: 10px; }

/* Responsive Mobile */
@media (max-width: 992px) {
    .infra-item { min-width: 33.33%; } /* 3 item di tablet */
}
@media (max-width: 576px) {
    .infra-item { min-width: 50%; } /* 2 item di HP */
}

/* Frame Putih Modal */
.custom-modal-box {
    background-color: #fff;
    border: 10px solid #fff; /* Border putih tebal sesuai gambar */
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

/* Tombol Close Merah Bulat */
.custom-btn-close {
    position: absolute;
    top: -25px; /* Menjorok ke atas luar frame */
    right: -25px; /* Menjorok ke kanan luar frame */
    background-color: #ff4d4d; /* Merah */
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.custom-btn-close:hover {
    background-color: #d43f3f;
    transform: scale(1.1);
}

/* Overlay Hitam Latar Belakang */
.modal-backdrop.show {
    opacity: 0.85;
}
