/* assets/css/footer.css */

.site-footer { background: #2C2C2A; margin-top: 0; }

.footer-main { padding: 3rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}
.footer-logo {
    width: 40px; height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    padding: 2px;
}
.footer-org-name  { font-size: 0.95rem; font-weight: 700; color: #D3D1C7; }
.footer-org-reg   { font-size: 0.7rem;  color: #5F5E5A; margin-top: 2px; }

.footer-address   { font-style: normal; }
.addr-line {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.8rem;
    color: #888780;
    margin-bottom: 6px;
    line-height: 1.5;
}
.addr-line svg   { flex-shrink: 0; margin-top: 2px; color: #5DCAA5; }
.addr-line a     { color: #888780; }
.addr-line a:hover { color: #9FE1CB; text-decoration: none; }

.footer-cta-row {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 13px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.15s;
}
.footer-cta-btn:hover { opacity: 0.85; text-decoration: none; }
.footer-cta-call { background: #EF9F27; color: #412402; }
.footer-cta-wa   { background: #25D366; color: #fff; }

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #D3D1C7;
    margin-bottom: 0.875rem;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-links a {
    font-size: 0.82rem;
    color: #888780;
    text-decoration: none;
    transition: color 0.15s;
    display: block;
}
.footer-links a:hover { color: #9FE1CB; }

/* ── Footer bottom ─────────────────────────── */
.footer-bottom {
    border-top: 1px solid #3D3D3A;
    padding: 1rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy { font-size: 0.75rem; color: #5F5E5A; }

/* Role login buttons */
.login-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.login-nav-label {
    font-size: 0.72rem;
    color: #5F5E5A;
    margin-right: 2px;
}
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #3D3D3A;
    color: #888780;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}
.login-btn:hover { text-decoration: none; }
.login-btn--admin    { border-color: #5DCAA5; color: #5DCAA5; }
.login-btn--doctor:hover,
.login-btn--volunteer:hover,
.login-btn--hospital:hover { border-color: #5DCAA5; color: #9FE1CB; }
