.blockImplantation {
    background-color: #fff;
}

.blockImplantation__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blockImplantation__content {
    padding: 2rem 0;
    background: #F6F6F1;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 100%;
    padding: 70px;
    position: relative;
}
@media (max-width: 991px){
    .blockImplantation__content{
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}
@media (min-width: 992px){
    .blockImplantation__content::after {
        content: '';
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #F6F6F1;
    }
}

.blockImplantation__title {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.blockImplantation__company-name {
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-transform: uppercase;  
}

.blockImplantation__address-details p {
    color: #666;
    line-height: 1.5;
}

.blockImplantation__map-container {
    position: relative;
    height: 650px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blockImplantation__map {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

/* Responsive design */
@media (max-width: 991.98px) {
    .blockImplantation__title {
        font-size: 2rem;
        text-align: center;
    }
    
    .blockImplantation__company-name {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .blockImplantation__content {
        text-align: center;
        padding: 3rem 0;
    }
    
    .blockImplantation__map-container {
        height: 400px;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .blockImplantation__title {
        font-size: 1.75rem;
    }
    
    .blockImplantation__company-name {
        font-size: 1.1rem;
    }
    
    .blockImplantation__map-container {
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    .blockImplantation__title {
        font-size: 1.5rem;
    }
    
    .blockImplantation__company-name {
        font-size: 1rem;
    }
    
    .blockImplantation__map-container {
        height: 400px;
    }
}

/* Styles pour le bouton */
.blockImplantation .btn {
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blockImplantation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animation pour le changement d'adresse */
.blockImplantation__address {
    transition: all 0.3s ease;
}

.blockImplantation__address.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
