footer {
    background-color: #1a2a06;
    color: #d8e8b0;
    font-family: "Roboto", sans-serif;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem calc(var(--spacing) * 12);
    align-items: start;
}

/* Brand column */
.footer-brand img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 15px;
    color: #a8c060;
    margin: 0;
    line-height: 1.6;
}

/* Contact column */
.footer-contact h3,
.footer-map h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.2rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--col1);
    font-size: 17px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.footer-contact a {
    color: #d8e8b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Map column */
.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 10px;
    display: block;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #2e4a0a;
    text-align: center;
    padding: 1rem calc(var(--spacing) * 12);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #6a8a30;
}
