/* Footer */
.site-footer {
    background-color: #0F2F20;
    /* Deep Emerald */
    color: var(--white);
    padding: 5rem 0 3rem;
    margin-top: 0;
    position: relative;
    border-top: 4px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    /* Soft Gold Border */
    padding-bottom: 3rem;
    text-align: left;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    border-radius: 2px;
    opacity: 0.7;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo::before {
    content: '☪';
    color: var(--gold);
    font-size: 1.8rem;
}

.footer-slogan {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    max-width: 260px;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
    transform: scale(0);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-slogan {
        margin: 0.5rem auto 0;
    }
}