/* MODALI - CONTATTACI & SUPPORTACI */

/* Modale Contattaci */
.modal-contattaci .modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.98));
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-contattaci .modal-header {
    border-bottom: 2px solid #1a1a1a;  /* ✅ NERO invece di #FFB800 */
    padding: 2rem 2rem 1.5rem;
}

.modal-contattaci .modal-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.75rem;
}

.modal-contattaci .btn-close {
    filter: brightness(0);
}

.modal-contattaci .modal-body {
    padding: 2rem;
}

/* Contact Item Card */
.contact-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a, #333333);  /* ✅ NERO/GRIGIO SCURO */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-item-icon i {
    font-size: 1.75rem;
    color: white;
}

.contact-item-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    word-break: break-all;
}

.contact-item-actions {
    display: flex;
    gap: 0.5rem;
}

.contact-item-actions .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.btn-primary-action {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    border: none;
    color: white;
}

.btn-primary-action:hover {
    background: linear-gradient(135deg, #000000, #1a1a1a);  /* ✅ NERO PIÙ SCURO */
    transform: translateY(-2px);
    color: white; !important;
}

.btn-primary-action:focus,
.btn-primary-action:active {
    color: white !important;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.btn-copy {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #495057;
}

.btn-copy:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.btn-copy.copied {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

/* WhatsApp specific */
.btn-whatsapp {
    background: #25D366;
    border: none;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-contattaci .modal-body {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-item-value {
        font-size: 1.1rem;
    }

    .contact-item-actions {
        flex-direction: column;
    }
}