/* ============================================================
   Pied de page
   Extrait de templates/partials/footer.html.twig
   ============================================================ */

/* ── Footer ───────────────────────────────────────────── */
.iz-footer {
    background: #0A0E1A;
    color: rgba(255,255,255,0.7);
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.iz-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 87, 255, 0.6), rgba(21, 87, 255, 0.6), transparent);
}

.iz-footer::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(21, 87, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Main */
.iz-footer__main {
    padding: 5rem 0 4rem;
}

/* Brand */
.iz-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.iz-footer__logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #1557FF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(21, 87, 255, 0.4);
}

.iz-footer__logo img { filter: brightness(0) invert(1); }

.iz-footer__brand span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: -0.04em;
}

.iz-footer__tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

/* Social Icons */
.iz-footer__socials {
    display: flex;
    gap: 10px;
}

.iz-footer__social {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.iz-footer__social:hover {
    background: #1557FF;
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(21, 87, 255, 0.4);
}

/* Column Headings */
.iz-footer__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

/* Links */
.iz-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.iz-footer__links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.iz-footer__links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #1557FF;
    transition: width 0.2s ease;
}

.iz-footer__links a:hover {
    color: #fff;
    padding-left: 6px;
}

.iz-footer__links a:hover::before { width: 12px; }

/* Newsletter */
.iz-footer__newsletter-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.iz-footer__newsletter-group {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    margin-bottom: 24px;
    transition: border-color 0.2s ease;
}

.iz-footer__newsletter-group:focus-within {
    border-color: rgba(21, 87, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(21, 87, 255, 0.15);
}

.iz-footer__newsletter-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    outline: none;
}

.iz-footer__newsletter-group input::placeholder { color: rgba(255,255,255,0.3); }

.iz-footer__newsletter-group button {
    background: #1557FF;
    border: none;
    padding: 0 20px;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.iz-footer__newsletter-group button:hover { opacity: 0.9; }

/* Contact Info */
.iz-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.iz-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.iz-footer__contact-item i {
    color: #fff;
    width: 16px;
}

.iz-footer__contact-item a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.iz-footer__contact-item a:hover { color: #fff; }

/* Bottom Bar */
.iz-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.iz-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.iz-footer__copy {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.iz-footer__copy strong { color: rgba(255,255,255,0.7); }

.iz-footer__legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.iz-footer__legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.iz-footer__legal a:hover { color: rgba(255,255,255,0.8); }

.iz-footer__legal span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: inline-block;
}

@media (max-width: 576px) {
    .iz-footer__bottom-inner { flex-direction: column; text-align: center; }
    .iz-footer__main { padding: 3rem 0 2rem; }
}

.iz-footer__heart { color: var(--iz-accent); }
