.kantin-footer {
    background: linear-gradient(135deg, #ff6a00, #ff8f2d);
    color: white;
    padding: 30px 15px 40px;
    border-radius: 25px 25px 0 0;
    margin-top: 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    transition: 0.3s;
}

.social-icon:hover {
    background: #ffffff;
}

.social-icon:hover svg {
    fill: #ff6a00;
}

.footer-line {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 10px auto;
    width: 80%;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.8;
}

/* HANYA untuk perangkat MOBILE */
@media (max-width: 768px) {
    body {
        padding-bottom: 45px; /* Footer mobile */
    }
}