/* ===== FOOTER MAIN AREA ===== */
.site-footer {
    background: #0f3d1e; /* dark green */
    color: white;
    padding: 50px 20px 0;
    margin-top: 50px;
    border-top: 3px solid #28a745;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* ===== LOGO SECTION ===== */
.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
}

.footer-section p {
    color: #cccccc;
    margin-top: 10px;
    line-height: 1.6;
}

/* ===== SOCIAL ICONS ===== */
.footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #28a745;
    background: white;
    width: 50px;
    height: 50px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #28a745;
    color: white;
    transform: translateY(-5px);
}

/* Facebook Icon Size Increase */
.facebook-icon {
    font-size: 30px;
}

/* ===== QUICK LINKS & CONTACT ===== */
.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #28a745;
}

.footer-section a {
    display: block;
    color: #cccccc;
    margin: 6px 0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #28a745;
    padding-left: 5px;
}

/* Contact icons */
.footer-section i {
    color: #28a745;
    margin-right: 8px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: #0d331a;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    border-top: 1px solid #1e7d3a;
}

.footer-bottom p {
    margin: 0;
    color: #a9d6b8;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .footer-logo {
        font-size: 1.7rem;
    }
}
