/* === Footer - Light & Airy === */
:root {
    --primary: #A2B518;
    --accent: #C9A96E;
    --dark: #1F383D;
    --text-light: #6B7280;
}
.site-footer {
    background: #F8F6F3;
    color: var(--text, #2D2D2D);
    font-size: 0.88rem;
    border-top: 2px solid var(--primary, #A2B518);
    position: relative;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.footer-col h4 {
    color: var(--dark, #1F383D);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-logo {
    margin-bottom: 0.75rem;
}
.footer-logo img {
    height: 60px;
    width: auto;
}
.footer-desc {
    color: var(--text-light, #6B7280);
    line-height: 1.7;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    max-width: 360px;
}
.footer-social {
    display: flex;
    gap: 0.5rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.1);
    color: var(--accent, #C9A96E);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: var(--accent, #C9A96E);
    color: #fff;
    transform: translateY(-2px);
}
.footer-links-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li a {
    color: var(--text-light, #6B7280);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}
.footer-links-list li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent, #C9A96E);
    transition: width 0.25s ease;
}
.footer-links-list li a:hover {
    color: var(--accent, #C9A96E);
}
.footer-links-list li a:hover::after {
    width: 100%;
}
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.footer-contact-items .fc-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-light, #6B7280);
    font-size: 0.85rem;
    line-height: 1.5;
}
.footer-contact-items .fc-item i {
    color: var(--accent, #C9A96E);
    margin-top: 3px;
    min-width: 14px;
    font-size: 0.8rem;
}
.footer-contact-items .fc-item a {
    color: var(--text-light, #6B7280);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-contact-items .fc-item a:hover {
    color: var(--accent, #C9A96E);
}
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.78rem;
    color: #9CA3AF;
}
.footer-bottom a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-bottom a:hover {
    color: var(--accent, #C9A96E);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1.5fr 1.5fr;
        gap: 3rem;
    }
    .footer-bottom {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }
}
