/* FOOTER */
footer { 
    border-top: 1px solid var(--border); 
    padding: 80px 0 40px; 
    background: var(--surface); 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 30px; 
    margin-bottom: 40px; 
}

/* Update Footer Paragraphs to match link color */
.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem; /* Matches your footer link size */
    line-height: 1.6;
    margin-top: 15px; /* Adds breathing room below the brand name */
}

.footer-col h4 { 
    margin-bottom: 24px; 
    font-weight: 700; 
    color: var(--text-main); 
}

.footer-links { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.footer-links a { 
    text-decoration: none; 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    transition: var(--transition); 
}

.footer-links a:hover { 
    color: var(--primary); 
    transform: translateX(8px); 
}

.footer-bottom { 
    border-top: 1px solid var(--border); 
    padding-top: 20px; 
    text-align: center; 
    color: var(--text-muted); 
}