/* ==================== FOOTER STYLES ==================== */
:root {
    --footer-bg: #071a10; /* Dark green background */
    --footer-yellow: #ffcc00; /* Accent yellow */
    --text-muted: #b3c2bc; /* Light gray text for paragraphs */
    --text-white: #ffffff;
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-white);
    padding: 70px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Column Headings (With the yellow underline) */
.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-white);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--footer-yellow);
}

/* About Section */
.footer-about .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--footer-yellow);
    color: var(--footer-bg);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

/* Contact Details */
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact ul li i {
    color: var(--footer-yellow);
    font-size: 16px;
    margin-top: 5px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-details span {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-details p, 
.contact-details a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-details a:hover {
    color: var(--footer-yellow);
}

/* Quick Links & Services */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links ul li a i {
    color: var(--text-white);
    font-size: 12px;
    margin-right: 10px;
    transition: margin-right 0.3s ease, color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--footer-yellow);
}

.footer-links ul li a:hover i {
    color: var(--footer-yellow);
    margin-right: 5px; /* Creates a small sliding effect on hover */
}

/* Copyright Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stacks all columns on mobile */
        gap: 30px;
    }

    .footer-col h3::after {
        width: 50px; /* Slightly longer underline on mobile for visibility */
    }
    
    .footer-bottom {
        margin-top: 30px;
    }
}