/* Wizard Container */
.wizard-container {
    max-width: 800px;
    margin: 50px auto 40px;
    padding: 0 20px;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.form-header h1 {
    font-size: 22px;
    color: #2B5B8C;
    margin: 0;
    font-weight: 700;
}

/* Progress Bar */
.wizard-progress {
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2B5B8C 0%, #5A8C4E 100%);
    border-radius: 10px;
    width: 14.28%; /* 1/7 steps */
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #2B5B8C 0%, #5A8C4E 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(43, 91, 140, 0.3);
}

.progress-step.completed .step-circle {
    background: #5A8C4E;
    color: white;
    border-color: #5A8C4E;
}

.step-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    max-width: 90px;
    line-height: 1.2;
}

.progress-step.active .step-label {
    color: #2B5B8C;
    font-weight: 700;
}

/* Wizard Form */
.wizard-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    min-height: 400px;
    position: relative;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.step-content h2 {
    font-size: 24px;
    color: #2B5B8C;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.step-content h2 svg {
    stroke: currentColor;
    flex-shrink: 0;
}

.step-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.options-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}

.options-grid.two-column {
    grid-template-columns: repeat(2, 1fr);
}

.option-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.option-icon {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon svg {
    stroke: currentColor;
}

.option-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.option-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.option-card:hover .option-content {
    border-color: #2B5B8C;
    background: #f0f7ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(43, 91, 140, 0.15);
}

.option-card:hover .option-icon {
    transform: scale(1.1);
}

.option-card:hover .option-icon svg {
    stroke: #2B5B8C;
}

.option-card input[type="radio"]:checked ~ .option-content {
    background: linear-gradient(135deg, #2B5B8C 0%, #5A8C4E 100%);
    border-color: #2B5B8C;
    color: white;
    box-shadow: 0 4px 15px rgba(43, 91, 140, 0.25);
    transform: translateY(-3px);
}

.option-card input[type="radio"]:checked ~ .option-content h3,
.option-card input[type="radio"]:checked ~ .option-content p {
    color: white;
}

.option-card input[type="radio"]:checked ~ .option-content .option-icon svg {
    stroke: white;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-card {
    cursor: pointer;
    display: block;
}

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

.checkbox-content {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.checkbox-icon {
    min-width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-icon svg {
    stroke: currentColor;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text h4 {
    font-size: 15px;
    color: #333;
    margin: 0 0 3px 0;
    font-weight: 600;
}

.checkbox-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.checkbox-card:hover .checkbox-content {
    border-color: #2B5B8C;
    background: #f0f7ff;
    transform: translateX(5px);
}

.checkbox-card:hover .checkbox-icon svg {
    stroke: #2B5B8C;
}

.checkbox-card input[type="checkbox"]:checked ~ .checkbox-content {
    background: linear-gradient(135deg, #2B5B8C 0%, #5A8C4E 100%);
    border-color: #2B5B8C;
    color: white;
}

.checkbox-card input[type="checkbox"]:checked ~ .checkbox-content h4,
.checkbox-card input[type="checkbox"]:checked ~ .checkbox-content p {
    color: white;
}

.checkbox-card input[type="checkbox"]:checked ~ .checkbox-content .checkbox-icon svg {
    stroke: white;
}

/* Recommendation Results */
.recommendation-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.recommendation-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.recommendation-card.featured {
    border: 3px solid #2B5B8C;
    box-shadow: 0 8px 30px rgba(43, 91, 140, 0.2);
    position: relative;
}

.recommendation-card.featured::before {
    content: "⭐ ÖNERİLEN";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2B5B8C 0%, #5A8C4E 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.recommendation-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.recommendation-card h3 {
    font-size: 20px;
    color: #2B5B8C;
    margin-bottom: 8px;
    font-weight: 700;
}

.recommendation-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.recommendation-features {
    text-align: left;
    margin: 15px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.recommendation-features li {
    font-size: 12px;
    color: #555;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.recommendation-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5A8C4E;
    font-weight: bold;
}

.btn-view-product {
    display: inline-block;
    background: linear-gradient(135deg, #2B5B8C 0%, #5A8C4E 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.btn-view-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 91, 140, 0.4);
}

.btn-view-product:active {
    transform: translateY(0);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2B5B8C;
    box-shadow: 0 0 0 3px rgba(43, 91, 140, 0.1);
}

.consent-group {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.consent-label a {
    color: #2B5B8C;
    text-decoration: underline;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2B5B8C 0%, #5A8C4E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(43, 91, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 91, 140, 0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #5A8C4E 0%, #2B8C5A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(90, 140, 78, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 140, 78, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    text-align: center;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5A8C4E 0%, #2B8C5A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.modal-content h2 {
    font-size: 24px;
    color: #2B5B8C;
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wizard-container {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .form-header {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .form-header h1 {
        font-size: 18px;
    }
    
    .wizard-progress {
        padding: 15px 20px;
    }
    
    .progress-steps {
        gap: 3px;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .step-label {
        font-size: 9px;
        max-width: 55px;
    }
    
    .wizard-form {
        padding: 25px 15px;
    }
    
    .step-content h2 {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .options-grid,
    .options-grid.three-column,
    .options-grid.two-column {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .option-content {
        padding: 18px 12px;
    }
    
    .option-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .checkbox-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .step-content h2 svg {
        width: 24px;
        height: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 24px;
    }
    
    .recommendation-results {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 25px 15px;
        margin: 15px;
    }
}

@media (max-width: 480px) {
    .form-header {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .form-header h1 {
        font-size: 16px;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 8px;
        max-width: 45px;
    }
    
    .option-content h3 {
        font-size: 15px;
    }
    
    .option-content p {
        font-size: 11px;
    }
    
    .step-content h2 {
        font-size: 18px;
    }
    
    .option-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .checkbox-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .step-content h2 svg {
        width: 20px;
        height: 20px;
    }
}

