.cible-container {
    position: relative;
    width: 900px;
    margin: 0 auto;
}

.cible {
    width: 100%;
    cursor: crosshair;
}

/* Bouton central */
.contact-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: red;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}
.contact-center-btn:hover {
    background: yellow;
    color: black;
}

/* Popup du formulaire */
.contact-form-popup {
    position: absolute;
    display: none;
    background: #fff;
    border: 2px solid #333;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    width: 250px;
    z-index: 1000;
}
.contact-form-popup label {
    display: block;
    margin-bottom: 8px;
}
.contact-form-popup input {
    width: 100%;
    padding: 5px;
    margin-top: 2px;
}
.contact-form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* Points de contact */
.contact-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00b2b2;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 5;
}
.contact-point:hover {
    transform: scale(1.3);
}

/* Tooltip */
.tooltip {
    position: absolute;
    display: none;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    max-width: 220px;
    line-height: 1.3;
    white-space: nowrap;
}

/* Supprime toute flèche ou pseudo-élément parasite */
.contact-point::before,
.contact-point::after,
.tooltip::before,
.tooltip::after {
    content: none !important;
}
