/* ==================== FOOTER ==================== */

footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 80px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #FFD700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-socials a:hover {
    opacity: 0.7;
}

.footer-heading {
    font-family: 'Lobster', cursive;
    font-weight: 400;
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1.2rem;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-location {
    margin-bottom: 1.2rem;
}

.footer-loc-name {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.footer-loc-addr {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.2rem;
}

.footer-loc-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.83rem;
    color: #FFD700;
    margin-bottom: 0.2rem;
}

.footer-hours p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    footer {
        padding: 40px 24px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}