/* Модальное окно формы заявки */
.modal-form-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-form-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-form-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.modal-form-close:hover {
    color: #000;
}

.modal-form-title {
    color: #0C6824;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}

/* Стили формы */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #0C6824;
    outline: none;
    box-shadow: 0 0 0 2px rgba(12, 104, 36, 0.1);
}

.service-preview {
    padding: 15px;
    background: #f5f5f5;
    border-radius: 6px;
    color: #0C6824;
    font-weight: bold;
    margin-top: 5px;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.form-submit-btn:hover {
    background-color: #0a5a2f;
    transform: translateY(-2px);
}

.form-submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 15px;
    text-align: center;
    display: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

/* Анимации */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Адаптивность */
@media (max-width: 768px) {
    .modal-form-content {
        padding: 25px 20px;
        width: 95%;
    }
    
    .modal-form-title {
        font-size: 20px;
    }
    
    .form-submit-btn {
        padding: 12px;
        font-size: 16px;
    }
}