/* ===== FOOTER ===== */
.site-footer{
    background-color:rgb(29, 29, 29);
    color:#e5e7eb;
    padding:60px 0 0;
    margin-top:80px;
}

/* ===== GRID ===== */
.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:center;
    max-width:1100px;
    margin:auto;
    padding:0 20px;
    gap:20px;
}

/* ===== LOGO ===== */
.footer-brand{
    text-align:left;
}

.footer-brand img{
    height:55px;
}

/* ===== KONTAK ===== */
.footer-contact{
    text-align:center;
}

.footer-contact h4{
    margin-bottom:14px;
    font-size:16px;
}

/* link kontak */
.footer-link{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
    color:#e5e7eb;
    font-size:14px;
    text-decoration:none;
    transition:0.2s;
}

/* 🔥 GARIS MERAH ANIMASI */
.footer-link::after{
    content:"";
    position:absolute;
    bottom:-4px;
    left:50%;
    width:0;
    height:2px;
    background:#ef4444;
    transition:0.3s;
    transform:translateX(-50%);
}

.footer-link:hover::after{
    width:60%;
}

/* hover text */
.footer-link:hover{
    color:#ef4444;
}

/* text biasa */
.footer-text{
    color:#e5e7eb;
    font-size:14px;
}

/* ===== SOSIAL ===== */
.footer-social{
    text-align:right;
}

.footer-social h4{
    margin-bottom:14px;
    font-size:16px;
}

/* icon sosial */
.social-group{
    display:inline-flex;
}

.social-group a{
    position:relative;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:44px;
    height:44px;
    margin-left:10px;
    border-radius:50%;
    background:#020617;
    border:1px solid rgba(255,255,255,0.08);
    color:#e5e7eb;
    font-size:20px;
    text-decoration:none;
    transition:0.3s;
}

/* hover icon */
.social-group a:hover{
    background:#ef4444;
    color:#fff;
    transform:translateY(-6px) scale(1.15);
    box-shadow:0 0 15px rgba(239,68,68,0.7);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom{
    width:100%;
    background:#000000;
    text-align:center;
    padding:18px 20px;
    margin-top:40px;
    font-size:12px;
    color:#9ca3af;
    letter-spacing:0.5px;
    border-top:1px solid rgba(255,255,255,0.05);
}

/* ========================= */
/* ===== RESPONSIVE ======== */
/* ========================= */

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:30px;
    }

    .footer-brand,
    .footer-social{
        text-align:center;
    }

    .footer-brand img{
        height:50px;
    }

    .footer-link{
        justify-content:center;
    }

    .social-group{
        justify-content:center;
        width:100%;
    }

    .social-group a{
        margin:0 6px;
    }

    /* hilangkan geser di mobile */
    .footer-link:hover{
        transform:none;
    }
}