/* FOOTER */
footer {
    background: var(--secondary);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}
.footer-content p,
footer p {
    color: #ffffff;
}
/* ========================================
   FOOTER TEXT FIX - White text on black background
======================================== */

.footer-content,
.footer-content p,
.footer-content a,
footer,
footer p,
footer a {
    color: #ffffff !important;
}

.footer-content a:hover,
footer a:hover {
    color: var(--accent-light) !important;
}