/* Callback Widget - кнопка вызова */
.callback-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #e52d27;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: callback-pulse 2s infinite;
}
.callback-widget-icon i {
    color: white;
    font-size: 28px;
}
@keyframes callback-pulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 45, 39, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(229, 45, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 45, 39, 0); }
}

/* Modal */
.callback-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.callback-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.callback-modal-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}
.callback-modal-close:hover { color: #000; }
.callback-modal-content h3 { margin-top: 0; color: #333; font-size: 22px; font-weight: bold; margin-bottom: 10px; }
.callback-modal-content p { color: #666; font-size: 14px; margin-bottom: 20px; }
.callback-modal-content .callback-socials-title { margin-bottom: 10px; font-weight: bold; }
.callback-socials { margin-top: 25px; border-top: 1px solid #eee; padding-top: 20px; }
.social-icon { display: inline-block; padding: 8px 15px; border-radius: 4px; color: white !important; text-decoration: none; margin: 0 5px; font-size: 14px; }
.social-icon i { margin-right: 5px; }
.social-icon.whatsapp { background-color: #25d366; }
.social-icon.whatsapp:hover { background-color: #1ebd5c; }
.social-icon.telegram { background-color: #0088cc; }
.social-icon.telegram:hover { background-color: #007bb5; }

/* Form */
.callback-form-submit { background-color: #e52d27; border-color: #e52d27; }
#callbackFormMessage {
    margin-top: 10px;
    display: none;
    padding: 10px;
    border-radius: 4px;
}
.callback-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.callback-error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
