/* =============================================================
   STAGENATION — footer-custom.css
   Footer kustom, disisipkan sebelum footer bawaan Astra
   ============================================================= */

.sn-custom-footer {
    background: #0a0118;
    border-top: 1px solid #1e1435;
    padding-top: 56px;
    color: #a89fc2;
}

.sn-footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

@media (max-width: 900px) {
    .sn-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .sn-footer-inner {
        grid-template-columns: 1fr;
    }
}

/* Kolom brand */
.sn-footer-logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.sn-footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #8f85a8;
    margin-bottom: 20px;
    max-width: 280px;
}

.sn-footer-social {
    display: flex;
    gap: 10px;
}

.sn-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1030;
    border-radius: 8px;
    color: #c9c2dd;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sn-footer-social a:hover {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #fff;
    transform: translateY(-2px);
}

/* Kolom link */
.sn-footer-heading {
    color: #f5f3fa;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.sn-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sn-footer-links li {
    font-size: 13px;
    color: #a89fc2;
}

.sn-footer-links a {
    color: #a89fc2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sn-footer-links a:hover {
    color: #e879f9;
}

/* Bottom bar */
.sn-footer-bottom {
    border-top: 1px solid #1e1435;
    padding: 20px 0;
}

.sn-footer-bottom-inner {
    text-align: center;
}

.sn-footer-bottom p {
    font-size: 12px;
    color: #6b6280;
    margin: 0;
}