/* === Ajánlatkérő Űrlap Stílusok === */

#quote-form-container {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* === Progress Bar === */
.progress-container {
    margin-bottom: 40px;
    position: relative;
}

.progress-bar-background {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    width: 100%;
}

.progress-bar {
    height: 100%;
    background-color: #007bff;
    width: 0%;
    border-radius: 2px;
    transition: width 0.4s ease-in-out;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    margin-top: -16px; /* A vonal fölé helyezés */
}

.step-circle {
    background: #fff;
    color: #adb5bd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
}

.step-circle.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: scale(1.1);
}

/* === Lépések és Tartalom === */
.quote-step {
    display: none;
    animation: fadeIn 0.5s;
}

.quote-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-step h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.step-number {
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.options-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.option-card {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.option-card input[type="radio"] {
    display: none;
}

.option-card:hover {
    border-color: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: #007bff;
    background: #e7f1ff;
    box-shadow: 0 0 0 2px #007bff;
}

.option-content {
    padding: 20px;
    border-radius: 8px;
    transition: background 0.2s ease;
    border: 2px solid transparent; /* Hely a belső border-nek */
}

.option-label {
    font-weight: 600;
    font-size: 1.05rem;
    color: #343a40;
}

/* === Form elemek === */
.form-row {
    display: flex;
    gap: 20px;
}
.form-row .form-control {
    flex: 1;
}

.form-control {
    margin-bottom: 20px;
}

.form-control label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.form-control input[type="text"],
.form-control input[type="email"],
.form-control input[type="tel"],
.form-control textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control input:focus, .form-control textarea:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.form-control textarea {
    resize: vertical;
    min-height: 120px;
}

/* === Navigáció === */
#quote-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
}

.btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}
