/* assets/sections/footer.css */

.footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col .footer-logo img {
    max-height: 80px; /* Reduced slightly from 100px so it fits nicely */
    width: auto !important; /* Prevents global CSS from stretching the image */
    display: block; /* Ensures the image sits correctly inside the link */
}

.footer-col .footer-logo {
    display: inline-flex; /* Helps center the image perfectly */
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 5px 10px; /* Creates a clean, even white border around the logo */
    border-radius: 8px;
    margin-bottom: 1rem; 
    max-width: max-content; /* Strictly forces the white box to shrink-wrap the image */
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col address,
.footer-col a {
    color: var(--text-light); /* Brighter text */
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-light); /* Brighter text */
    font-size: 0.9rem;
}