/* --- Modern Section Title --- */
.section-title-modern {
    font-size: 1.7rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

/* Garis dekoratif animasi */
.section-title-modern::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ffc371);
    bottom: 0;
    left: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.section-title-modern:hover::after {
    width: 100%;
}

/* --- Button "Lihat Semua" modern --- */
.btn-see-all {
    font-weight: 600;
    text-decoration: none;
    color: #555;
    transition: 0.3s;
    padding: 6px 12px;
    border-radius: 6px;
}

.btn-see-all:hover {
    color: #ff5f6d;
    background: rgba(255, 95, 109, 0.1);
}