/* footer.css - NATS ENERGY Footer Styling (Scoped) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --vf-blue: #004bb5;
    --vf-blue-hover: #003a8c;
    --vf-dark: #111111;
    --vf-light-bg: #f8f9fa;
    --vf-border: #e9ecef;
    --vf-text: #2b2b2b;
    --vf-text-muted: #6c757d;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
}

/* Scoped overrides to protect footer from global conflicts */
.site-footer * {
    box-sizing: border-box !important;
}

.site-footer *:not(i):not([class*="fa-"]) {
    font-family: var(--font-primary), sans-serif !important;
}

.site-footer {
    background-color: #0f1319 !important;
    color: #e9ecef !important;
    padding: 60px 0 30px !important;
    font-size: 0.9rem !important;
    border-top: 5px solid #004bb5 !important;
    display: block !important;
    width: 100% !important;
}

.site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 40px !important;
    max-width: 1280px !important;
    margin: 0 auto 40px !important;
    padding: 0 24px !important;
}

.site-footer .footer-logo {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.site-footer .footer-company-info {
    line-height: 1.7 !important;
}

.site-footer .footer-company-info p {
    margin-bottom: 8px !important;
    color: #a0aec0 !important;
}

.site-footer .footer-company-info strong {
    color: #ffffff !important;
}

.site-footer .footer-column h4 {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 0 20px 0 !important;
    position: relative !important;
    padding-bottom: 8px !important;
    font-weight: 700 !important;
}

.site-footer .footer-column h4::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 30px !important;
    height: 2px !important;
    background-color: #004bb5 !important;
}

.site-footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-footer .footer-links li {
    margin-bottom: 10px !important;
}

.site-footer .footer-links a {
    color: #a0aec0 !important;
    text-decoration: none !important;
}

.site-footer .footer-links a:hover {
    color: #ffffff !important;
    padding-left: 4px !important;
}

.site-footer .footer-bottom {
    border-top: 1px solid #2d3748 !important;
    padding-top: 24px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    color: #a0aec0 !important;
    font-size: 0.8rem !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 24px 24px 0 !important;
}

@media (max-width: 768px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
