/* ============================================================
   css/footer.css — Footer global AutoServis
   Scope: .footer-modern și tot ce e în el
   ============================================================ */

.footer-modern {
    background: #0d1b2a;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: auto;
    padding: 18px 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Brand stânga */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    color: #fff;
    flex-shrink: 0;
}

.footer-text h4 {
    font-size: 0.875em;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.2;
}

.footer-text p {
    font-size: 0.75em;
    color: #64748b;
    line-height: 1.2;
}

/* Info dreapta */
.footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-version,
.footer-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.775em;
    color: #64748b;
}

.footer-version i,
.footer-author i {
    font-size: 0.9em;
    color: #475569;
}

/* Legal links */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.775em;
}
.footer-legal a {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .15s;
}
.footer-legal a:hover { color: #94a3b8; }
.footer-legal a i { font-size: .85em; color: #475569; }
.footer-sep { color: #334155; }

/* Responsive */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-info {
        gap: 14px;
    }
}
