/* Кнопка "Відгукнутися" */
.hp-crm-apply-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hp-crm-apply-btn:hover {
    background-color: #005a87;
}

.hp-crm-apply-btn:active {
    transform: translateY(1px);
}

/* Модальне вікно */
.hp-crm-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-crm-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hp-crm-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.hp-crm-close:hover {
    color: #000;
}

.hp-crm-modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

/* Форма */
.hp-crm-field {
    margin-bottom: 20px;
}

.hp-crm-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.hp-crm-field input[type="text"],
.hp-crm-field input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.hp-crm-field input[type="text"]:focus,
.hp-crm-field input[type="tel"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.hp-crm-submit-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.hp-crm-submit-btn:hover {
    background-color: #005a87;
}

.hp-crm-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Повідомлення */
#hp-crm-message {
    margin-top: 15px;
}

#hp-crm-message p {
    padding: 12px;
    border-radius: 4px;
    margin: 0;
}

#hp-crm-message .success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#hp-crm-message .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Мобільна адаптація */
@media (max-width: 600px) {
    .hp-crm-modal-content {
        padding: 20px;
        margin: 15px;
    }
    
    .hp-crm-modal-content h2 {
        font-size: 20px;
    }
}