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

.footer-modern {
    background: #ffffff;
    border-top: 1px solid #dfe5e8;
    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, #0d9488 0%, #0891b2 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: #0f1a1f;
    line-height: 1.2;
}

.footer-text p {
    font-size: 0.75em;
    color: #5a6a72;
    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: #5a6a72;
}

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

/* Legal links */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.775em;
}
.footer-legal a {
    color: #5a6a72;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .15s;
}
.footer-legal a:hover { color: #0d9488; }
.footer-legal a i { font-size: .85em; color: #8a9aa3; }
.footer-sep { color: #dfe5e8; }

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

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