/* ===============================
   START: Contact Modal Styles
   =============================== */
.contact-modal {
    display: none; /* Caché par défaut */
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    background-color: var(--tj-white);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: modalSlideUp 0.3s ease-out;
}

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

.contact-modal h3 {
    color: var(--tj-theme-secondary);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.contact-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-modal-close:hover {
    color: var(--tj-theme-primary);
}

.modal-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    background: #f0f2f5;
    color: var(--tj-heading-primary);
    border-radius: 12px;
    font-weight: var(--tj-fw-bold);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.modal-action-btn:hover {
    background: var(--tj-theme-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Couleurs spécifiques */
.modal-action-btn.whatsapp { background-color: #dcf8c6; color: #075e54; }
.modal-action-btn.whatsapp:hover { background-color: #25D366; color: white; }

.modal-action-btn.waze { background-color: #feea93; color: #333; }
.modal-action-btn.waze:hover { background-color: #ffc400; color: black; }

.modal-action-btn.gmail { background-color: #fce8e6; color: #c71610; }
.modal-action-btn.gmail:hover { background-color: #ea4335; color: white; }

.modal-action-btn.copy { background-color: #e8f0fe; color: #1967d2; }
.modal-action-btn.copy:hover { background-color: #1a73e8; color: white; }