/* ==========================================================================
   Classicx FM - Footer Styling
   ========================================================================== */

.site-footer {
    background-color: #0d121d;
    color: #e2e8f0;
    padding-top: 45px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px 12px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    padding-bottom: 35px;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 10px;
}

.footer-menu-list a,
.social-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease-in-out;
}

.footer-menu-list a:hover,
.social-link:hover {
    color: #e91e63;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom {
    background-color: #080b12;
    padding: 18px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}