/* ============================================================
   Site Footer — responsive rebuild
   Design reference: exhibitorly_base44 (visual only, rebuilt in
   plain CSS — no React/Tailwind/shadcn). See CLAUDE.md.
   ============================================================ */

.site_footer {
    width: 100%;
    background: #111827;
    color: #fff;
    padding: 48px 0 0;
}

.site_footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

.site_footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.site_footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
}

.site_footer-col p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.site_footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #fff;
}

.site_footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site_footer-col ul a {
    position: relative;
    display: inline-block;
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 2px;
    transition: color .3s ease;
}

.site_footer-col ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: #CFFF7F;
    transition: width .5s ease-out;
}

.site_footer-col ul a:hover {
    color: #fff;
}

.site_footer-col ul a:hover::after {
    width: 100%;
}

.site_footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    background: #CFFF7F;
    color: #0C2E16;
    border: none;
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .25s ease-out, box-shadow .25s ease-out;
}

.site_footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* ---------------- Contact column ---------------- */
.site_footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    font-size: 14px;
}

.site_footer-contact li.site_footer-address {
    align-items: flex-start;
}

.site_footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.site_footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color .2s ease;
}

.site_footer-contact a:hover {
    color: #fff;
}

.site_footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.site_footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}

.site_footer-social a:hover {
    background: #374151;
    transform: translateY(-2px);
}

.site_footer-social svg {
    width: 16px;
    height: 16px;
}

/* ---------------- Bottom bar ---------------- */
.site_footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 40px;
    padding: 24px 0;
    text-align: center;
}

.site_footer-bottom p {
    margin: 0;
    color: #9ca3af;
    font-size: 13px;
}

/* ---------------- Breakpoints ---------------- */
@media (max-width: 992px) {
    .site_footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 600px) {
    .site_footer {
        padding-top: 36px;
    }

    .site_footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .site_footer-container {
        padding: 0 20px;
    }

    .site_footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .site_footer-contact li {
        justify-content: center;
    }

    .site_footer-social {
        justify-content: center;
    }
}

/* The site-wide fixed "Get your 3 quotes now" tab overlaps left-aligned
   content unless cleared — same fix and same measured values as
   blog_list.css (28.19px tab below 768px, 42.3px at/above, x1.05 hover
   scale buffer). Applied equally on both sides so the footer stays
   visually centered rather than shifting left. Scoped to this page's own
   container only. */
.site_footer-container {
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 768px) {
    .site_footer-container {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site_footer-col ul a::after,
    .site_footer-btn,
    .site_footer-social a {
        transition: none !important;
    }
}
