.contact-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.contact-widget .icon {
    background-color: #bf0042;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.contact-widget .icon:hover {
    transform: scale(1.1);
}

/* Informations de contact masquées par défaut */
.contact-widget .contact-info {
    display: none;
    position: absolute;
    bottom: 0;
    right: 45px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    font-size: 14px;
}
.contact-widget .contact-info p {
    margin-bottom: 0.2rem
}

/* Affichage des informations au survol */
.contact-widget:hover .contact-info {
    display: block;
}