/* Footer - Compact Design */
.site-footer {
    background: var(--primary);
    color: white;
    padding: 24px 24px 80px 24px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-nav .separator {
    opacity: 0.5;
    font-size: 10px;
}

.footer-nav .franchise-info-txt {
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.footer-social a {
    color: white;
    display: flex;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.7;
}

.footer-bottom .footer-bottom-right{
    display: flex;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

@media (min-width: 769px) {
    .desktop-hide {
        display: none !important;
    }
}

@media (max-width: 768px) {

    .site-footer {
        padding-bottom: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-nav {
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-nav a {
        font-size: 15px;
    }
    
    .footer-nav a.franchise-info-txt {
        font-size: 14px;
    }

    .footer-left {
        display: flex;
    }

    .footer-bottom .footer-left,
    .footer-bottom .footer-legal {
        font-size: 8px;
        gap: 12px;
    }

    .mobile-hide {
        display: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        text-align: center;
    }
}