/* ── Quick Bell — Site Footer ── */

.site-footer {
    background: var(--sidebar-bg, #0a1929);
    padding: 48px 0 24px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: auto;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.footer-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--color-primary, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: white;
    flex-shrink: 0;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.footer-social a:hover {
    background: var(--color-primary, #10b981);
    color: white;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.875rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary, #10b981);
    transform: none;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item i {
    color: var(--color-primary, #10b981);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--color-primary, #10b981);
}

/* Admin panel footer variant — pinned to bottom of flex column */
.content-wrapper .site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}
