
.wpp-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.wpp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.wpp-modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.wpp-icon {
    font-size: 2rem;
    color: white;
}

.wpp-modal-title {
    margin: 0;
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
}

.wpp-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer !important;
    pointer-events: auto;
    transition: background 0.2s ease;
}

.wpp-close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.wpp-modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: #f9f9f9;
}

.wpp-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wpp-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    background: white;
    border: 1px solid #eee;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.wpp-contact-item:hover {
    border-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
    transform: translateY(-1px);
    color: inherit;
}

.wpp-contact-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wpp-contact-info {
    flex: 1;
}

.wpp-contact-info strong {
    display: block;
    font-size: 1rem;
    color: #222;
}

.wpp-contact-phone {
    margin: 0;
    color: #888;
    font-size: 0.875rem;
}

.wpp-contact-icon {
    color: #25D366;
    font-size: 1.5rem;
}