/* ================= FOOTER MODERN ================= */

.footer-modern {
    background: linear-gradient(135deg, #0b1f4d, #3b1c71);
    position: relative;
    overflow: hidden;
}

/* efek glow */
.footer-modern::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.footer-modern::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.footer-logo {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.footer-text {
    color: rgba(255,255,255,0.75);
}

.footer-copy {
    color: rgba(255,255,255,0.6);
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #6610f2;
    transform: translateY(-5px) scale(1.08);
}