
/* ====================================================
   UNIFIED FOOTER STYLES
   ==================================================== */

footer {
    background: #1a1c1e;
    color: #d1d5db;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 3rem; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 4rem 2rem 4rem; 
}

.footer-brand h4 { 
    color: var(--white, #ffffff); 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
    margin-top: 0; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.footer-brand h4 span { 
    color: var(--primary-teal, #1a8b9d); 
}

.footer-brand p { 
    color: #9ca3af; 
    line-height: 1.7; 
    margin-bottom: 1.5rem; 
    font-size: 0.95rem; 
}

.social-links { 
    display: flex; 
    gap: 1rem; 
}

.social-links a { 
    display: inline-flex; 
    justify-content: center; 
    align-items: center; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.05); 
    color: #fff; 
    transition: all 0.3s ease; 
    text-decoration: none;
}

.social-links a:hover { 
    background: var(--primary-teal, #1a8b9d); 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(26, 139, 157, 0.4); 
}

.footer-col h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-teal, #1a8b9d);
}

.footer-col ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.footer-col ul li { 
    margin-bottom: 0.8rem; 
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover { 
    color: var(--primary-teal, #1a8b9d); 
}

/* Fix active state for footer links to match nav (optional but nice) */
.footer-col ul li a.active {
    color: var(--primary-teal, #1a8b9d);
    font-weight: 600;
}

.footer-contact-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    margin-bottom: 1.2rem; 
    color: #9ca3af; 
    font-size: 0.95rem; 
    line-height: 1.6; 
}

.footer-contact-item i { 
    color: var(--primary-teal, #1a8b9d); 
    font-size: 1.2rem; 
    margin-top: 3px; 
}

.footer-contact-item a { 
    color: #9ca3af; 
    transition: color 0.3s; 
    text-decoration: none;
}

.footer-contact-item a:hover { 
    color: var(--primary-teal, #1a8b9d); 
}

.footer-badge { 
    background: rgba(255,255,255,0.05); 
    padding: 1rem; 
    border-radius: 8px; 
    border: 1px solid rgba(255,255,255,0.1); 
    margin-bottom: 1rem; 
    transition: transform 0.3s; 
}

.footer-badge:hover { 
    transform: translateY(-2px); 
    border-color: rgba(26, 139, 157, 0.5); 
}

.footer-badge i { 
    color: var(--primary-teal, #1a8b9d); 
    margin-right: 10px; 
}

.copyright { 
    background: #111315; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding: 0; 
}

.copyright div { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 1.5rem 2rem; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: center; 
    gap: 1rem; 
    color: #9ca3af; 
    font-size: 0.95rem; 
}

.copyright a {
    color: var(--primary-teal, #1a8b9d);
    font-weight: 600;
    text-decoration: none;
}

/* ====================================================
   MOBILE RESPONSIVENESS
   ==================================================== */
@media (max-width: 768px) {
    .footer-grid {
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }
    
    .copyright div {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0.8rem;
        padding: 1.5rem;
    }
}
