.contact .info-item i {
    font-size: 26px;
    color: #00bcd4;
    width: 40px;
}

.contact h3 {
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact p {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 14px;
}

/* SOCIAL MEDIA */
.social-box h4 {
    font-size: 16px;
    font-weight: 600;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: orange;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-4px);
    background: #00bcd4;
    color: #fff;
}

/* MAP */
.contact iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.social-list.horizontal {
    display: flex;
    flex-wrap: nowrap;
    /* ⬅️ PENTING: jangan turun */
    overflow-x: auto;
    /* ⬅️ scroll ke samping */
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 6px;
}

.social-list.horizontal li {
    flex: 0 0 auto;
    /* ⬅️ item tidak menyusut */
}

.social-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    /* border-radius: 25px; */
    background: orange;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    /* ⬅️ teks tidak turun */
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-item i {
    font-size: 16px;
    margin-right: 8px;
}

.social-item:hover {
    background: orangered;
    /* transform: translateY(-3px); */
    color: #fff;
    text-decoration: none;
}






.research-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    /* border-radius: 8px; */
    padding: 20px;
    margin-bottom: 15px;
}

.research-title {
    /* color: #ff5a4f; */
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.research-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

.research-doi {
    font-size: 14px;
    margin-bottom: 0;
}

.research-doi a {
    color: #ff5a4f;
    text-decoration: none;
}

.research-doi a:hover {
    text-decoration: underline;
}

/* PAGINATION */
.pagination .page-link {
    color: orange;
}

.pagination .active .page-link {
    background: orange;
    border-color: orange;
    color: #fff;
}

.hover-zoom {
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hover-zoom:hover {
    transform: scale(1.03);
    background: rgba(255, 166, 0, 0.379);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}
.bg-orange{
    background: orange;
}

.br-0{
    border-radius: 0px !important;
}

  .show-mobile {
        display: none !important;
    }

    .hide-mobile {
        display: block !important;
    }

    @media (max-width: 767px) {
        .show-mobile {
            display: block !important;
        }

        .hide-mobile {
            display: none !important;
        }
    }

    .show-desktop {
        display: block !important;
    }

    /* Mobile */
    @media (max-width: 767px) {
        .show-desktop {
            display: none;
        }
    }