.footer {
    background: #f8f9fa;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #eee;
    color: #333;
    font-family: 'DM Sans', sans-serif;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2e7d32;
}
.footer-brand p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.footer-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #111;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #2e7d32;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}
.footer-social a:hover {
    background: #2e7d32;
    color: white;
}
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Footer responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer {
        padding: 2rem 1rem 1.5rem;
        margin-top: 2rem;
    }
    .footer-brand h2 {
        font-size: 1.5rem;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
}

/* ===== Contact Us nav button + modal ===== */
.contact-nav-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #333;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.contact-nav-btn:hover {
    background: #2e7d32;
    border-color: #2e7d32;
    color: white;
}

.contact-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}
.contact-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    background: #fff;
    border-radius: 14px;
    width: min(92vw, 380px);
    padding: 1.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    font-family: 'DM Sans', sans-serif;
}
.contact-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.contact-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.contact-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2e7d32;
    margin: 0;
}
.contact-modal-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #888;
    line-height: 1;
}
.contact-modal-close:hover {
    color: #333;
}

.contact-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-modal-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}
.contact-modal-list a {
    color: #333;
    text-decoration: none;
}
.contact-modal-list a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Mobile: modal edge-to-edge feel + nav button sizing */
@media (max-width: 480px) {
    .contact-nav-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.8rem;
    }
    .contact-modal {
        width: 90vw;
        padding: 1.5rem;
    }
}