.alc-breadcrumb {
    font-size: 14px;
    margin: 10px 0 20px;
    padding: 8px 12px;
    background: #f8f8f8;
    border-radius: 6px;
    color: #555;
}
.alc-breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}
.alc-breadcrumb a:hover {
    text-decoration: underline;
}
/* ===== FOOTER 3 COLONNES PRO ===== */

.footer-pro{
    background:linear-gradient(135deg,#0b7bd8,#00c6ff);
    color:#fff;
    padding:50px 20px 20px;
    margin-top:60px;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:40px;
}

/* Colonnes */
.footer-col h4{
    margin-bottom:15px;
    font-size:1.1rem;
}

/* Branding */
.footer-brand img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
}

.footer-brand h3{
    margin:0 0 8px;
}

.footer-brand p{
    margin:0;
    opacity:0.9;
    font-size:0.95rem;
}

/* Liens */
.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.2s;
}

.footer-links a:hover{
    transform:translateX(5px);
    opacity:0.85;
}

/* Contact */
.footer-contact p{
    margin:0 0 12px;
    font-size:0.95rem;
}

.footer-contact a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* Réseaux */
.footer-socials{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.footer-socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    transition:0.2s;
}

.footer-socials a:hover{
    background:rgba(255,255,255,0.4);
    transform:translateY(-3px);
}

/* Bas */
.footer-bottom{
    text-align:center;
    margin-top:30px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,0.3);
    font-size:0.9rem;
}

/* Responsive */
@media (max-width: 900px){
    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-links{
        align-items:center;
    }

    .footer-socials{
        justify-content:center;
    }
}