/* Teklif formu stilleri */
.quote__form__wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    backdrop-filter: blur(10px);
}

.quote__form__heading {
    text-align: center;
    margin-bottom: 30px;
}

.quote__form__heading h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.quote__form__heading p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.quote__form {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form__control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form__control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form__control::placeholder {
    color: #999;
}

.checkbox__group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox__group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.checkbox__group label {
    margin: 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.quote__submit__btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quote__submit__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.quote__submit__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    min-height: 15px;
}

/* Modal stilleri */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    backdrop-filter: blur(10px);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 25px 30px 20px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header .modal-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.modal-header .close {
    color: white;
    opacity: 0.8;
    font-size: 24px;
    font-weight: 300;
    text-shadow: none;
}

.modal-header .close:hover {
    opacity: 1;
    color: white;
}

.modal-body {
    padding: 30px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 30px 25px 30px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.modal-footer .btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modal-footer .btn-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    color: white;
}

.modal-footer .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.modal-footer .btn-danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
    border: none;
    color: white;
}

.modal-footer .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .quote__form__wrapper {
        margin-top: 30px;
        position: static;
    }
    
    .quote__form__heading h4 {
        font-size: 20px;
    }
    
    .quote__submit__btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

