/* Footer CBM - Styles principaux */
footer{
    margin-top: 200px;
    @media (max-width: 992px){
        margin-top: 100px;
    }
    a{
        transition: color 0.3s ease;
    }

        a:hover{
            color: var(--primary)!important;
            transition: color 0.3s ease;
        }

}
.footer-main {
    position: relative;
    background-color: #000;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    padding: 261px 245px 141px;
    /* min-height: 100vh; */
}

.footer-container {
    position: relative;
    z-index: 2;
}



/* Logo CBM */
.footer-logo {
    flex-shrink: 0;
    width: 270px;
    height: 116px;
}

.logo-cbm {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 250px;
}

@media (max-width: 992px){
    .footer-logo{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Colonnes du footer avec Bootstrap Grid */
.footer-columns {
    /* Bootstrap Grid gère maintenant la mise en page */
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 0;
}

/* Colonne Contact */
.footer-contact {
    /* width: 128px; */
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .icon {
    width: 15px;
    height: 18px;
}

.contact-text p {
    margin: 0;
    font-size: 14px;
    line-height: 25px;
    color: white;
}

/* Colonne Rejoignez-nous */
.footer-join {
    /* width: 147px; */
}

.join-item {
    display: flex;
    align-items: center;
}

.join-item p {
    margin: 0;
    font-size: 14px;
    line-height: 25px;
    color: white;
}

.social-link {
    display: flex;
    align-items: center;
}

.social-link a {
    display: block;
    width: 20.38px;
    height: 20px;
}

.icon-linkedin {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.info-item {
    display: flex;
    align-items: center;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    line-height: 25px;
    color: white;
}

/* Élément décoratif */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    HEIGHT: 200px;
    top: -100px;
}

.decoration-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        padding: 200px 100px 100px;
    }
    
    .footer-content {
        /* Bootstrap Grid gère maintenant la mise en page */
    }
    
    .footer-columns {
        /* Bootstrap Grid gère maintenant la mise en page */
    }
}

@media (max-width: 992px) {
    .footer-main {
        padding: 150px 50px 80px;
    }
    
    .footer-content {
        /* Bootstrap Grid gère maintenant la mise en page */
    }
    
    .footer-columns {
        /* Bootstrap Grid gère maintenant la mise en page */
    }
    
    .footer-column {
        align-items: center;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 100px 20px 60px;
        font-size: 12px;
    }
    
    .footer-logo {
        width: 200px;
        height: 86px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-columns {
        gap: 30px;
    }
    
    .footer-column {
        gap: 20px;
    }
    
    .contact-text p,
    .join-item p,
    .info-item p {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 80px 15px 40px;
        font-size: 11px;
    }
    
    .footer-logo {
        width: 150px;
        height: 65px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-columns {
        gap: 25px;
    }
    
    .footer-column {
        gap: 15px;
    }
    
    .contact-text p,
    .join-item p,
    .info-item p {
        line-height: 18px;
    }
    
    .contact-icon {
        width: 14px;
        height: 14px;
    }
    
    .contact-icon .icon-phone {
        width: 12px;
        height: 15px;
    }
    
    .social-link a {
        width: 18px;
        height: 18px;
    }
}

/* Hover effects */
.social-link a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.info-item p:hover,
.join-item p:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

footer .menu-item a{
    color: white;
    text-decoration: none;
}
footer .menu-item{
    list-style-type: none;
    padding-bottom: 20px;
}

@media (max-width: 992px){
    .contact-text{
        text-align: left;
    }
}