/* ============================================
   Code en ligne - Footer
   ============================================ */

.crt-footer {
    background: var(--crt-gray-900);
    color: var(--crt-gray-400);
    padding: var(--crt-space-20) 0 var(--crt-space-8);
    margin-top: auto;
}

.crt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--crt-space-12);
    margin-bottom: var(--crt-space-16);
}

.crt-footer .crt-logo-text {
    color: white;
}

.crt-footer-brand {
    max-width: 320px;
}

.crt-footer-col {
    min-width: 0;
}

.crt-footer-desc {
    color: var(--crt-gray-400);
    font-size: var(--crt-text-sm);
    line-height: 1.7;
    margin-top: var(--crt-space-4);
    max-width: 300px;
}

.crt-footer-social {
    display: flex;
    gap: var(--crt-space-3);
    margin-top: var(--crt-space-6);
}

.crt-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--crt-gray-800);
    color: var(--crt-gray-400);
    border-radius: var(--crt-radius-md);
    transition: var(--crt-transition);
}

.crt-footer-social a:hover {
    background: var(--crt-primary);
    color: white;
    transform: translateY(-2px);
}

.crt-footer-title {
    font-size: var(--crt-text-sm);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--crt-space-6);
}

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

.crt-footer-links li {
    margin-bottom: var(--crt-space-3);
}

.crt-footer-links a {
    color: var(--crt-gray-400);
    font-size: var(--crt-text-sm);
    transition: var(--crt-transition);
    text-decoration: none;
}

.crt-footer-links a:hover {
    color: white;
    padding-left: var(--crt-space-2);
}

.crt-footer-bottom {
    padding-top: var(--crt-space-8);
    border-top: 1px solid var(--crt-gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--crt-space-4);
}

.crt-footer-bottom p {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
    margin: 0;
}

.crt-footer-note {
    font-size: var(--crt-text-xs) !important;
    color: var(--crt-gray-600) !important;
}
