/* FOOTER — REDESIGNED */
.site-footer {
    background: linear-gradient(180deg, #0F0A0A 0%, #080505 100%);
    color: rgba(255,255,255,0.55);
    padding: 4.5rem 0 0;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-red) 20%,
        #fff 50%,
        var(--color-red) 80%,
        transparent 100%
    );
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.footer-logo-link {
    display: block;
    margin-bottom: 1.25rem;
}
.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}
.footer-brand-name em {
    color: #fff;
    font-style: normal;
    position: relative;
}
.footer-brand-name em::after {
    content: '';
    position: absolute;
    bottom: 1px; left: 0; right: 0;
    height: 3px;
    background: var(--color-red);
    border-radius: 2px;
}
.footer-brand-freq {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-red);
    vertical-align: middle;
    margin-left: 0.35rem;
    opacity: 0.8;
}
.footer-about {
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 300px;
    color: rgba(255,255,255,0.5);
}
.site-footer h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.site-footer h4::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-red);
    margin-top: 0.6rem;
    border-radius: 1px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.55rem;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-contact-item {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-red);
    margin-top: 3px;
    opacity: 0.7;
}

/* Social Icons — Redesigned */
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}
.social-link:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224,32,32,0.3);
}

/* Footer Bottom Bar */
.footer-bottom {
    margin-top: 3.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 991px) {
    .site-footer { padding: 3.5rem 0 0; }
    .footer-bottom { justify-content: center; text-align: center; }
}
