Call Me Back Modal Popup Styles

.call-me-back-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.call-me-back-modal.show {
    visibility: visible;
    opacity: 1;
}

.call-me-back-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.call-me-back-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(18, 46, 91, 0.15);
    animation: slideInDown 0.4s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.call-me-back-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 10;
}

.call-me-back-close-btn:hover {
    color: #122E5B;
}

.call-me-back-header {
    text-align: center;
    margin-bottom: 2rem;
}

.call-me-back-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #122E5B;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.call-me-back-header p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.call-me-back-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group .form-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #122E5B;
    margin-bottom: 0.5rem;
}

.form-group .text-danger {
    color: #dc3545;
    margin-left: 0.25rem;
}

.form-group .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #B87333;
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.15);
}

.form-group .form-control::placeholder {
    color: #adb5bd;
}

/* Captcha Wrapper */
.captcha-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.captcha-image {
    flex: 1;
    height: auto;
    min-height: 50px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem;
    background-color: #f8f9fa;
    cursor: pointer;
}

.btn-captcha-refresh {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: #122E5B;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    line-height: 1;
}

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

.captcha-input {
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Submit Button */
.btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #B87333 0%, #a66429 100%);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-text {
    display: inline;
}

.btn-loading {
    display: inline;
}

/* Alert Messages */
.call-me-back-modal .alert {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    margin-bottom: 1.5rem;
}

.call-me-back-modal .alert-success {
    background-color: #d4edda;
    color: #155724;
}

.call-me-back-modal .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.call-me-back-modal .alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Note at bottom */
.call-me-back-note {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 576px) {
    .call-me-back-modal-content {
        padding: 1.75rem 1.25rem;
        max-width: calc(100% - 1rem);
    }

    .call-me-back-header h2 {
        font-size: 1.5rem;
    }

    .call-me-back-header p {
        font-size: 0.9rem;
    }

    .call-me-back-form {
        gap: 1rem;
    }

    .form-group .form-control {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* Scrollbar styles for modal */
.call-me-back-modal-content::-webkit-scrollbar {
    width: 6px;
}

.call-me-back-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.call-me-back-modal-content::-webkit-scrollbar-thumb {
    background: #dec0a1;
    border-radius: 3px;
}

.call-me-back-modal-content::-webkit-scrollbar-thumb:hover {
    background: #B87333;
}

.z-index-999999 {
    z-index: 999999 !important;
}