/* --- FOOTER SECTION (NEW) --- */
.main-footer {
    background: var(--dark-blue);
    color: white;
    padding: 50px 0 20px;
    font-size: 0.95em;
}

.main-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.main-footer .footer-logo,
.main-footer .footer-social,
.main-footer .footer-contact,
.main-footer .footer-copyright {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.main-footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    flex: 0.8;
}

.main-footer .footer-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

.main-footer h3 {
    color: var(--light-green);
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-footer .social-links-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.main-footer .social-links-footer a {
    color: white;
    font-size: 1.8em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-footer .social-links-footer a:hover {
    color: var(--secondary-green);
    transform: translateY(-3px);
}

.main-footer .footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.main-footer .footer-contact p i {
    margin-right: 10px;
    color: var(--light-blue);
    font-size: 1.1em;
}

.main-footer .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85em;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .main-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .main-footer .footer-logo,
    .main-footer .footer-social,
    .main-footer .footer-contact,
    .main-footer .footer-copyright {
        min-width: unset;
        width: 100%;
        margin-bottom: 30px;
    }
    .main-footer .footer-logo {
        margin-bottom: 40px;
    }
    .main-footer .footer-social .social-links-footer {
        justify-content: center;
    }
}
