/* ========================================
   VivoMusic - Footer
   ======================================== */

.vm-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    padding: 3rem 5% 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.vm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.vm-footer-col h4 {
    color: #22c55e;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vm-footer-col p {
    color: #86efac;
    font-size: 0.82rem;
    line-height: 1.8;
    opacity: 0.8;
}

.vm-footer-col a {
    display: block;
    color: #86efac;
    text-decoration: none;
    font-size: 0.82rem;
    padding: 0.3rem 0;
    transition: all 0.3s;
    opacity: 0.7;
}

.vm-footer-col a:hover {
    color: #22c55e;
    opacity: 1;
    padding-right: 0.5rem;
}

.vm-footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.vm-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0;
}

.vm-footer-social a:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    transform: translateY(-2px);
    padding-right: 0;
}

.vm-footer-bottom {
    max-width: 1300px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #555;
    font-size: 0.78rem;
}

.vm-footer-bottom span {
    color: #22c55e;
}

@media (max-width: 768px) {
    .vm-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .vm-footer-grid {
        grid-template-columns: 1fr;
    }
}