/**
 * DASH HEAVEN - Boutons de contact (WhatsApp & Appel)
 */

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.contact-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contact-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
}

.contact-btn-call {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.contact-btn-call:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
}

.contact-btn-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.contact-buttons-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-buttons-fixed .contact-btn {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
    }
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-buttons-fixed {
        bottom: 1rem;
        right: 1rem;
    }
    
    .contact-buttons-fixed .contact-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}





