/* Popup Styling */
.callback-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Maven Pro', sans-serif;
}

.callback-popup-content {
    background-color: #fff;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.callback-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
}

.callback-popup h2 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    font-size: 24px;
}

.callback-popup .form-group {
    margin-bottom: 15px;
}

.callback-popup input[type="text"],
.callback-popup input[type="tel"],
.callback-popup textarea,
.callback-popup select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
}

.callback-popup textarea {
    resize: vertical;
    min-height: 80px;
}

.callback-popup .time-select {
    position: relative;
}

.callback-popup select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 30px;
}

.callback-popup .select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #555;
    pointer-events: none;
}

.callback-popup .gdpr-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.callback-popup .gdpr-checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.callback-popup .gdpr-checkbox label {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}

.callback-popup .datenschutz-link {
    color: #962c2f;
    text-decoration: none;
}

.callback-popup .form-submit {
    margin-top: 25px;
    text-align: center;
}

.callback-popup .submit-button {
    background-color: #962c2f;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s;
}

.callback-popup .submit-button:hover {
    background-color: #7f2427;
}

.callback-popup .message-container {
    margin-top: 20px;
    text-align: center;
}

.callback-popup .success-message {
    color: #2e7d32;
    background-color: #edf7ed;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
}

.callback-popup .error-message {
    color: #d32f2f;
    background-color: #fdecea;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
}
