/* Form Step Tasarımı - Modern ve Temiz */
.step-form[data-type="year"]
{
    display: block;
}

.form-step {
    margin-bottom: 56px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Progress Steps Tasarımı */
.progress-steps {
    margin: 66px 0;
    position: relative;
}

.progress-bar-container {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 1;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color1);
    transition: width 0.3s ease;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    list-style: none;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d1d5db;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color1);
    box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.2);
}

.step.completed .step-number {
    background-color: var(--primary-color1);
}

.step.completed .step-number:after {
    content: '✓';
    position: absolute;
}

.step-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
}

.step.active .step-text {
  color: #6b7280;
    font-weight: 600;
}

/* Bilgi Kutusu Tasarımı */
.info-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.info-box .icon {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-box .icon i {
    font-size: 24px;
    color: #4b5563;
}

.info-box .content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.info-box .content ul {
    margin: 0;
    padding-left: 20px;
}

.info-box .content ul li {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 5px;
}

.info-box .content ul li:last-child {
    margin-bottom: 0;
}

/* Seçim Kutuları Tasarımı */
.form-list-select {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-list-select li {
    flex: 0 0 calc(20% - 12px);
    cursor: pointer;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    height: 100%;
    min-height: 48px;
    transition: all 0.3s ease;
    box-shadow: 1px 1px 3px -1px #ccccccab;
}

.step-form[data-type="brands"] .form-list-select li
{
    display: flex;
    flex-direction: column;
}


.step-form[data-type="brands"] .form-list-select li img
{
    height: 48px;
    width: 48px;
    object-fit: contain;
    margin: 0 auto;
}

.form-list-select li:hover{
    border-color: var(--primary-color1);
    background: rgba(249, 115, 22, 0.05);
}

.form-list-select li.selected{
    background: var(--primary-color1);
    color: #fff;
    border-color: var(--primary-color1);
    box-shadow: 0 2px 5px rgba(249, 115, 22, 0.3);
}

/* Step Form Tasarımı */
.step-form {
    display: none;
    margin-bottom: 30px;
    background: #dee2e617;
    padding: 42px;
    box-shadow: 1px 1px 3px 3px #cccccc3b;
}

.step-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step-form h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

/* Araç Seçim Başlıkları */
.vehicle-selection-header {
    margin-bottom: 30px;
}

.vehicle-selection-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.vehicle-selection-header p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Loading Indicator */
.loading-indicator {
    position: absolute;
    padding-top: 78px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none;
    text-align: center;
}

.loading-indicator i {
    font-size: 65px;
    color: var(--primary-color1);
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-left  {
    padding: 12px 44px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: #f3f4f6;
    color: #4b5563;
    display: none;
}

.btn-left i {
margin-right: 5px;
}

.btn-left:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Brand Search */
.brand-search {
    margin-bottom: 20px;
}

.brand-search input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.brand-search input:focus {
    border-color: var(--primary-color1);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    outline: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .form-list-select li {
        flex: 0 0 calc(25% - 12px);
    }
}

@media (max-width: 768px) {
    .form-list-select li {
        flex: 0 0 calc(33.333% - 10px);
    }

    .step-form[data-type="body_type"] .form-list-select li,
    .step-form[data-type="models"] .form-list-select li
    {
        flex: 0 0 calc(100% - 10px);
    }
    
    .step-text {
        font-size: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .form-list-select li {
        flex: 0 0 calc(49% - 6px);
            font-size: 14px;
    }
    
    .step-indicators {
        flex-wrap: wrap;
    }
    
    .progress-bar-container {
        display: none;
    }
    
    .step {
        flex: 0 0 47%;
        margin-bottom: 15px;
    }
}

/* Step 2 Form Styles */
.degerleme-step-2 .modern-form {
    max-width: 800px;
    /* margin: 0 auto; */
}

.degerleme-step-2 .form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.degerleme-step-2 .form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.degerleme-step-2 .form-header {
    text-align: center;
    margin-bottom: 35px;
}

.degerleme-step-2 .form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.degerleme-step-2 .form-header p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.degerleme-step-2 .form-group {
    margin-bottom: 30px;
}

.degerleme-step-2 .degerleme-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 10px;
}

.degerleme-step-2 .input-wrapper {
    position: relative;
}

.degerleme-step-2 .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 16px;
    z-index: 1;
}

.degerleme-step-2 .input-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 13px;
    color: #64748b;
}

.degerleme-step-2 .input-info i {
    color: var(--primary-color1);
}

.degerleme-step-2 .form-control {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.degerleme-step-2 .form-control:focus {
    border-color: var(--primary-color1);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(var(--primary-color1-rgb), 0.1);
    outline: none;
}

.degerleme-step-2 .custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l4-4H4l4 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.degerleme-step-2 .tramer-wrapper {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.degerleme-step-2 .tramer-wrapper:hover {
    border-color: var(--primary-color1);
    background: #fff;
}

.degerleme-step-2 .radio-group {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.degerleme-step-2 .radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.degerleme-step-2 .radio-label:hover {
    background: rgba(var(--primary-color1-rgb), 0.05);
}

.degerleme-step-2 .radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--primary-color1);
}

.degerleme-step-2 .radio-text {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
}

.degerleme-step-2 .tramer-input {
    position: relative;
}

.degerleme-step-2 .currency {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.degerleme-step-2 .btn-submit {
    width: 100%;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color1);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.degerleme-step-2 .btn-submit:hover {
    background: var(--primary-color1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color1-rgb), 0.2);
}

.degerleme-step-2 .btn-submit i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.degerleme-step-2 .btn-submit:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .degerleme-step-2 .form-container {
        padding: 25px;
    }
    
    .degerleme-step-2 .form-header h3 {
        font-size: 20px;
    }
    
    .degerleme-step-2 .form-group {
        margin-bottom: 25px;
    }
    
    .degerleme-step-2 .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .degerleme-step-2 .radio-label {
        padding: 8px 15px;
    }
}

/* Step 3 Form Styles */
.step-3 .arac-hasar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-3 .arac-hasar-table thead th {
    background: #f8fafc;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    border: none;
}

.step-3 .arac-hasar-table tbody tr:hover {
    background-color: #f8fafc;
}

.step-3 .arac-hasar-table th label {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.step-3 .arac-hasar-table td {
    padding: 12px;
    vertical-align: middle;
    border: none;
    border-top: 1px solid #e2e8f0;
}

/* Radio button styling */
.step-3 .arac-hasar-table td.tac {
    text-align: center;
} 

.step-3 .arac-hasar-table td.tac input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.step-3 .arac-hasar-table td.tac input[type="radio"]:checked {
    border-color: var(--primary-color1);
    background: var(--primary-color1);
}

.step-3 .arac-hasar-table td.tac input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* Color indicators */
.step-3 .head-colors {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-3 .head-colors ul {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-3 .head-colors ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.step-3 .head-colors ul li span:first-child {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

/* Submit button */
.step-3 .btn-search-list {
    width: 100%;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color1);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step-3 .btn-search-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color1-rgb), 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-3 .arac-hasar-table {
        display: block;
        background: none;
        box-shadow: none;
    }

    .step-3 .arac-hasar-table thead {
        display: none;
    }

    .step-3 .arac-hasar-table tbody {
        display: block;
    }

    .step-3 .arac-hasar-table tbody tr {
        display: block;
        background: #fff;
        margin-bottom: 15px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        padding: 15px;
    }

    .step-3 .arac-hasar-table tbody tr:hover {
        background: #fff;
    }

    .step-3 .arac-hasar-table th {
        display: block;
        width: 100%;
        padding: 3px 6px 12px 13px;
        border: none;
        text-align: left;
    }

    .step-3 .arac-hasar-table th label {
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
    }

    .step-3 .arac-hasar-table td {
        display: inline-block;
        width: calc(25% - 8px);
        padding: 8px 4px;
        border: none;
        text-align: center;
    }

    .step-3 .arac-hasar-table td.tac {
        position: relative;
    }

    .step-3 .arac-hasar-table td.tac::before {
        content: attr(data-label);
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 11px;
        color: #64748b;
        white-space: nowrap;
    }

    .step-3 .arac-hasar-table td.tac:nth-child(3)::before { content: "Orijinal"; }
    .step-3 .arac-hasar-table td.tac:nth-child(4)::before { content: "Lokal Boya"; }
    .step-3 .arac-hasar-table td.tac:nth-child(5)::before { content: "Boyalı"; }
    .step-3 .arac-hasar-table td.tac:nth-child(6)::before { content: "Değişen"; }

    .step-3 .arac-hasar-table td.tac input[type="radio"] {
        width: 18px;
        height: 18px;
    }

    .step-3 .arac-hasar-table td.tac input[type="radio"]:checked::after {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .step-3 .arac-hasar-table tbody tr {
        padding: 12px;
        margin-bottom: 12px;
    }

    .step-3 .arac-hasar-table th label {
        font-size: 14px;
    }

    .step-3 .arac-hasar-table td {
        width: calc(25% - 6px);
        padding: 6px 3px;
    }

    .step-3 .arac-hasar-table td.tac::before {
        font-size: 10px;
        top: -18px;
    }

    .step-3 .arac-hasar-table td.tac input[type="radio"] {
        width: 16px;
        height: 16px;
    }

    .step-3 .arac-hasar-table td.tac input[type="radio"]:checked::after {
        width: 5px;
        height: 5px;
    }
}

/* Step 4 Form Styles */
.step-4 .form-validate {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 35px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-4 .form-inner {
    margin-bottom: 20px;
}

.step-4 .form-inner label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 8px;
}

.step-4 .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.step-4 .form-control:focus {
    border-color: var(--primary-color1);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--primary-color1-rgb), 0.1);
    outline: none;
}

.step-4 select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l4-4H4l4 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Checkbox styling */
.step-4 .form-agreement {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1.5px solid #e2e8f0;
}

.step-4 .form-agreement .form-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    width: 100%;
}

.step-4 .form-agreement input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-4 .form-agreement input[type="checkbox"]:checked {
    background: var(--primary-color1);
    border-color: var(--primary-color1);
}

.step-4 .form-agreement input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.step-4 .form-agreement label {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
}

.step-4 .form-agreement a {
    color: var(--primary-color1);
    text-decoration: none;
    font-weight: 500;
}

.step-4 .form-agreement a:hover {
    text-decoration: underline;
}

/* Submit button */
.step-4 .btn-next {
    width: 100%;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color1);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step-4 .btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color1-rgb), 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-4 .form-validate {
        padding: 20px;
    }
    
    .step-4 .form-agreement {
        padding: 12px;
    }
    
    .step-4 .form-agreement label {
        font-size: 13px;
    }
}

/* Step 5 - Valuation Result Styles */
.step-5 .valuation-result {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.step-5 .valuation-result:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
}

.step-5 .valuation-header {
    margin-bottom: 30px;
    position: relative;
}

.step-5 .result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.step-5 .result-icon i {
    font-size: 40px;
    color: #fff;
}

.step-5 .valuation-result h4 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.step-5 .valuation-result h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 3px;
}

.step-5 .price-animation {
    margin: 30px 0;
    position: relative;
}

.step-5 .price-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-5 .animated-price {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    animation: priceReveal 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.step-5 .price-decoration {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 3px;
    opacity: 0.5;
}

.step-5 .info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.step-5 .info-box:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-5 .info-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-5 .info-icon i {
    font-size: 24px;
    color: #fff;
}

.step-5 .info-box p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.step-5 .contact-section {
    margin: 40px 0;
    position: relative;
}

.step-5 .section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.step-5 .section-icon i {
    font-size: 30px;
    color: #fff;
}

.step-5 .contact-section h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.step-5 .results-button {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-5 .results-button .btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.step-5 .results-button .btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.step-5 .results-button .btn i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.step-5 .results-button .btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border: none;
}

.step-5 .results-button .btn-secondary {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    border: none;
}

.step-5 .results-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-5 .results-button .btn:hover i {
    transform: scale(1.1);
}

.step-5 .disclaimer-box {
    background: #fff3cd;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.step-5 .disclaimer-icon {
    width: 50px;
    height: 50px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-5 .disclaimer-icon i {
    font-size: 24px;
    color: #fff;
}

.step-5 .disclaimer {
    color: #856404;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

@keyframes priceReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .step-5 .valuation-result {
        padding: 30px 20px;
    }

    .step-5 .result-icon {
        width: 60px;
        height: 60px;
    }

    .step-5 .result-icon i {
        font-size: 30px;
    }

    .step-5 .animated-price {
        font-size: 32px;
    }

    .step-5 .price-wrapper {
        padding: 15px 30px;
    }

    .step-5 .results-button {
        flex-direction: column;
    }

    .step-5 .results-button .btn {
        width: 100%;
    }

    .step-5 .disclaimer-box {
        padding: 20px;
    }

    .step-5 .disclaimer-icon {
        width: 40px;
        height: 40px;
    }

    .step-5 .disclaimer-icon i {
        font-size: 20px;
    }
}

.simple-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 53px 0;
    gap: 0;
    background: #dee2e617;
    padding: 31px 0px;
    box-shadow: 1px 1px 3px 3px #cccccc3b;
}

.simple-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    position: relative;
}

.simple-steps .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.simple-steps .step.active .circle {
    background: var(--primary-color1);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(var(--primary-color1-rgb), 0.2);
}

.simple-steps .label {
    color: #222;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.simple-steps .step.active .label {
    color: var(--primary-color1);
    font-weight: 600;
}

.simple-steps .divider {
    width: 40px;
    height: 2px;
    background: #ddd;
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

.simple-steps .step.active .divider {
    background: var(--primary-color1);
}

@media (max-width: 768px) {
    .simple-steps {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 20px;
        margin: 30px 0;
        gap: 15px;
        justify-content: space-between;
    }

    .simple-steps .step {
        width: calc(50% - 8px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: unset;
        padding: 15px 10px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
    }

    .simple-steps .step:hover {
        transform: translateY(-3px);
    }

    .simple-steps .step.active {
        background: rgba(var(--primary-color1-rgb), 0.05);
        border: 1px solid rgba(var(--primary-color1-rgb), 0.1);
    }

    .simple-steps .circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 8px;
        margin-right: 0;
    }

    .simple-steps .label {
        font-size: 13px;
        text-align: center;
        line-height: 1.3;
    }

    .simple-steps .divider {
        display: none;
    }

    .simple-steps .step::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .simple-steps {
        padding: 15px;
        gap: 10px;
    }

    .simple-steps .step {
        padding: 12px 8px;
    }

    .simple-steps .circle {
        width: 30px;
        height: 30px;
        font-size: 13px;
        margin-bottom: 6px;
    }

    .simple-steps .label {
        font-size: 11px;
    }
}

.icon-km
{
        top: 36% !important;
}

.degerleme-summary-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    padding: 32px 28px 28px 28px;
    margin: 0 auto;
    border: 1.5px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.degerleme-summary-box .summary-image img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.summary-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 15px;
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list span {
    color: #222;
    font-weight: 400;
}

.summary-list b {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 5px 14px;
    font-weight: 600;
    color: #222;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-list i {
    color: #bbb;
    font-size: 13px;
    margin-left: 4px;
}

@media (max-width: 991px) {
    .degerleme-summary-box {
        max-width: 100%;
        min-width: unset;
        margin-top: 32px;
    }
}









