/* Footer Styles */
.main-footer { 
    background: #fff; 
    padding: 5rem 0 2rem; 
    border-top: 1px solid #eee; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
    gap: 3rem; 
    margin-bottom: 3rem; 
}

.logo-footer { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 1.4rem; 
    font-weight: 900; 
    margin-bottom: 1rem; 
}

.logo-footer span { 
    color: var(--primary); 
}

.footer-col p { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    line-height: 1.6; 
}

.footer-col h4 { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 0.8rem; 
    margin-bottom: 1.2rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul { 
    list-style: none; 
    padding: 0; 
}

.footer-col ul li { 
    margin-bottom: 10px; 
}

.footer-col ul li a { 
    text-decoration: none; 
    color: var(--text-muted); 
    font-size: 0.8rem; 
    font-weight: 600; 
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter { 
    display: flex; 
    margin-top: 0.5rem; 
}

.newsletter input { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    font-size: 0.75rem; 
    background: #fcfcfc;
}

.newsletter button { 
    background: var(--primary); 
    color: #fff; 
    border: none; 
    padding: 0 20px; 
    border-radius: 8px; 
    margin-left: 8px; 
    font-weight: 700; 
    font-size: 0.75rem; 
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #0044cc;
}

.footer-bottom { 
    border-top: 1px solid #eee; 
    padding-top: 2rem; 
    text-align: center; 
}

.footer-bottom p { 
    font-size: 0.7rem; 
    color: var(--text-muted); 
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
