/* ── SHARED FOOTER ── */

footer {
    background: #1a2a6c;
    padding: 64px 6% 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

.footer-logo-img {
    width: 240px;
    height: 46px;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin-bottom: 12px;
    margin-left: -26px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-pill {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 13px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.18s;
    letter-spacing: 0.2px;
}
.social-pill:hover {
    background: rgba(168, 188, 255, 0.15);
    border-color: rgba(168, 188, 255, 0.3);
    color: #a8bcff;
}

.footer-links-group {
    display: flex;
    gap: 48px;
    flex: 2;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 130px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.18s;
    line-height: 1.4;
}
.footer-link:hover { color: #a8bcff; }

.footer-link-admin {
    font-size: 11px;
    opacity: 0.35;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    margin-top: 4px;
    letter-spacing: 0.2px;
}
.footer-link-admin:hover { opacity: 1; color: rgba(255, 255, 255, 0.6); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

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

.footer-badge {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .footer-top { gap: 40px; }
    .footer-brand { max-width: 100%; }
    .footer-links-group { gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .footer-links-group { flex-direction: column; gap: 28px; }
}
