/* =========================================
   USER FOOTER – CLEQUA
   File: public/css/user_footer.css
========================================= */

.user-footer {
    background: #050816;
    color: #e5e7eb;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.user-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 16px;
}

/* TOP LAYOUT */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 24px;
}

/* BRAND / LOGO */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #fde68a, #fbbf24, #b45309);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #111827;
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #f9fafb;
}

.footer-description {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 16px;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
}

/* COLUMNS */
.footer-col {
    min-width: 0;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

/* CONTACT COLUMN */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 6px;
}

.footer-contact-item i {
    font-size: 13px;
    color: #60a5fa;
}

.footer-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.5);
    color: #bfdbfe;
    background: rgba(15, 23, 42, 0.9);
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding-top: 14px;
    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    font-size: 12px;
    color: #6b7280;
}

.footer-copy {
    margin: 0;
}

.footer-madeby {
    margin: 0;
}

.footer-madeby span {
    color: #e5e7eb;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .user-footer {
        padding: 32px 0 18px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        align-items: flex-start;
    }
}
