.quote-form-wrapper {
    max-width: 700px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    margin: 1rem 0 0;
    color: #1f2937;
    font-size: 1.5rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s;
}

.step.active {
    background: #3b82f6;
    color: white;
}

.step.completed {
    background: #10b981;
    color: white;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #e5e7eb;
}

.input-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.input-group textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.input-group.error input,
.input-group.error select,
.input-group.error textarea {
    border-color: #ef4444;
    background: #fef2f2;
}

.error-msg {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-group label:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.radio-group input[type="radio"] {
    width: auto;
    cursor: pointer;
}

.radio-group input[type="radio"]:checked + label,
.radio-group label:has(input:checked) {
    border-color: #3b82f6;
    background: #eff6ff;
}

.radio-group.error label {
    border-color: #ef4444;
}

.budget-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.meta-fields {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #e5e7eb;
}

.meta-fields h4 {
    margin: 0 0 1rem 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.back-btn, .next-btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.back-btn {
    background: #f3f4f6;
    color: #374151;
}

.back-btn:hover {
    background: #e5e7eb;
}

.next-btn {
    background: #3b82f6;
    color: white;
}

.next-btn:hover {
    background: #2563eb;
}

.next-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

.review-summary {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.review-summary h4 {
    color: #1f2937;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}

.review-summary h4:first-child {
    margin-top: 0;
}

.review-summary p {
    margin: 0.5rem 0;
    color: #4b5563;
}
