/* ====================================================================
   Global Footer Styles (Singodia)
   Consolidated from the near-identical footer CSS previously duplicated
   inside the <style> block of every page under Components/Web/Pages/*.razor.
   ==================================================================== */

footer {
    background: #1e1e2a;
    color: rgba(255, 255, 255, 0.75);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 12px;
}

.footer-brand .logo span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand .logo img {
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-col h5 {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
}
