:root {
    --brand-orange: #e21e28;
}

/* 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: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-list-select li {
    flex: 0 0 calc(20% - 13px);
    cursor: pointer;
    padding: 18px 16px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    height: 100%;
    min-height: 64px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.form-list-select li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 30, 40, 0.1), transparent);
    transition: left 0.5s ease;
}

.form-list-select li:hover::before {
    left: 100%;
}

.step-form[data-type="year"]
{
    display: block;
}

.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(--brand-orange);
    background: rgba(226, 30, 40, 0.06);
    box-shadow: 0 4px 16px rgba(226, 30, 40, 0.15);
    transform: translateY(-2px);
}

.form-list-select li.selected {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #ff4757 100%);
    color: #fff;
    border-color: var(--brand-orange);
    box-shadow: 0 6px 20px rgba(226, 30, 40, 0.35);
    transform: translateY(-2px) scale(1.02);
}

.form-list-select li.selected::before {
    display: none;
}

/* Step Form Tasarımı */
.step-form {
    display: none;
    margin-bottom: 40px;
    background: #fff;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.step-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step-form:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.step-form h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    font-family: 'Mulish', sans-serif;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 16px;
}

.step-form h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange) 0%, #ff4757 100%);
    border-radius: 2px;
}

/* 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.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none;
    text-align: center;
    border-radius: 20px;
}

.loading-indicator i {
    font-size: 48px;
    color: var(--brand-orange);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-left {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #64748b;
    display: none;
    margin-right: 20px;
    font-family: 'Mulish', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-left i {
    margin-right: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-left:hover {
    background: #f8fafc;
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    box-shadow: 0 4px 12px rgba(226, 30, 40, 0.15);
    transform: translateX(-2px);
}

.btn-left:hover i {
    transform: translateX(-2px);
}

.step-form-header {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.step-form-header h4 {
    margin-bottom: 0;
    flex: 1;
}

/* 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(--brand-orange);
    box-shadow: 0 0 0 3px rgba(226, 30, 40, 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);
    }
    
    .step-form {
        padding: 36px 32px;
    }
    
    .step-form h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .form-list-select li {
        flex: 0 0 calc(33.333% - 11px);
        padding: 16px 14px;
        min-height: 60px;
        font-size: 14px;
    }

    .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-form {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .step-form h4 {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .step-form-header {
        margin-bottom: 24px;
    }
    
    .btn-left {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .form-list-select {
        gap: 12px;
    }
    
    .form-list-select li {
        flex: 0 0 calc(49% - 6px);
        font-size: 14px;
        padding: 14px 12px;
        min-height: 56px;
        border-radius: 10px;
    }
    
    .step-form {
        padding: 24px 20px;
        border-radius: 14px;
        margin-bottom: 30px;
    }
    
    .step-form h4 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .step-form h4::after {
        width: 50px;
        height: 2px;
    }
}

/* 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(--brand-orange);
}

.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(--brand-orange);
    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(--brand-orange);
    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(--brand-orange);
}

.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 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.degerleme-step-2 .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.degerleme-step-2 .btn-submit:hover {
    background: linear-gradient(135deg, #111111 0%, #252525 50%, #111111 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.degerleme-step-2 .btn-submit:hover::before {
    left: 100%;
}

.degerleme-step-2 .btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.degerleme-step-2 .btn-submit span {
    position: relative;
    z-index: 1;
}

.degerleme-step-2 .btn-submit i {
    font-size: 16px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.degerleme-step-2 .btn-submit:hover i {
    transform: translateX(5px);
}

/* 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;
    }
    
    .degerleme-step-2 .btn-submit {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .step-3 .btn-search-list {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .step-4 .btn-next {
        padding: 14px 24px;
        font-size: 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(--brand-orange);
    background: var(--brand-orange);
}

.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: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.step-3 .btn-search-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.step-3 .btn-search-list:hover {
    background: linear-gradient(135deg, #111111 0%, #252525 50%, #111111 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.step-3 .btn-search-list:hover::before {
    left: 100%;
}

.step-3 .btn-search-list:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* 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(--brand-orange);
    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: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-4 .form-agreement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.step-4 .form-agreement:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-4 .form-agreement:hover::before {
    transform: scaleX(1);
}

.step-4 .form-agreement .form-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.step-4 .form-agreement input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2.5px solid #cbd5e1;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-4 .form-agreement input[type="checkbox"]:hover {
    border-color: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(26, 26, 26, 0.15);
}

.step-4 .form-agreement input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.25);
}

.step-4 .form-agreement input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform-origin: center;
    animation: checkmark 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: translate(-50%, -60%) rotate(45deg) scale(0);
}

@keyframes checkmark {
    0% {
        transform: translate(-50%, -60%) rotate(45deg) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -60%) rotate(45deg) scale(1.2);
    }
    100% {
        transform: translate(-50%, -60%) rotate(45deg) scale(1);
        opacity: 1;
    }
}

.step-4 .form-agreement label {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
    flex: 1;
}

.step-4 .form-agreement:hover label {
    color: #1f2937;
}

.step-4 .form-agreement a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.step-4 .form-agreement a:hover {
    color: #2d2d2d;
    border-bottom-color: #2d2d2d;
    transform: translateY(-1px);
}

/* Submit button */
.step-4 .btn-next {
    width: 100%;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.step-4 .btn-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.step-4 .btn-next:hover {
    background: linear-gradient(135deg, #111111 0%, #252525 50%, #111111 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.step-4 .btn-next:hover::before {
    left: 100%;
}

.step-4 .btn-next:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-4 .form-validate {
        padding: 20px;
    }
    
    .step-4 .form-agreement {
        padding: 16px 18px;
    }
    
    .step-4 .form-agreement .form-group {
        gap: 12px;
    }
    
    .step-4 .form-agreement input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    
    .step-4 .form-agreement label {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* 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-wrapper {
    background: #ffffff;
    margin: 20px 0;
    padding-bottom: 0;
}

.simple-steps {
    /* CSS Variables */
    --step-black: #111;
    --step-gray: #64748b;
    --step-muted: #94a3b8;
    --step-border: #e5e7eb;
    --step-active: #111;
    --step-accent: #F59E0B;
    --step-circle: 32px;
    --step-gap: 20px;
    --step-sticky-top: 64px;

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-bottom: none;
    padding: 16px 24px 0;
    margin: 0;
    gap: 0;
}

/* Modern Progress Bar */
.step-progress-wrapper {
    width: 100%;
    padding: 0 24px 20px;
    margin-top: 25px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.step-progress-bar {
    width: 100% !important;
    height: 10px !important;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%) !important;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    margin: 0 auto;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50px;
}

.step-progress-fill {
    height: 100% !important;
    width: 25%;
    min-width: 0;
    background: linear-gradient(135deg, #e21e28 0%, #ff4757 30%, #ff6b7a 60%, #e21e28 100%) !important;
    background-size: 300% 100%;
    transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 
        0 0 20px rgba(226, 30, 40, 0.4),
        0 4px 12px rgba(226, 30, 40, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    animation: gradientShift 4s ease infinite, pulseGlow 2s ease-in-out infinite, slideIn 0.8s ease-out;
    transform-origin: left;
    border-radius: 50px;
}

.step-progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
    animation: shimmer 3s infinite;
}

.step-progress-fill::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: progressShine 2s infinite;
    filter: blur(4px);
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
        opacity: 0;
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(226, 30, 40, 0.4),
            0 4px 12px rgba(226, 30, 40, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(226, 30, 40, 0.6),
            0 6px 16px rgba(226, 30, 40, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }
}

.simple-steps .step {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.2s  ease;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    min-width: auto;
    flex-wrap: wrap;
}

.simple-steps .step:focus {
    outline: 2px solid var(--step-accent);
    outline-offset: 2px;
}

.simple-steps .step:hover:not(.is-disabled) .label {
    color: var(--step-black);
}

.simple-steps .circle {
    width: var(--step-circle);
    height: var(--step-circle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
    margin-bottom: 0;
    z-index: 2;
}

/* Step States */
.simple-steps .step.active .circle,
.simple-steps .step.is-active .circle {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #ff4757 100%);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(226, 30, 40, 0.35);
    border: 2px solid transparent;
}

.simple-steps .step.is-complete .circle {
    background: #ffffff;
    color: var(--step-black);
    border: 2px solid var(--step-black);
    position: relative;
}

.simple-steps .step.is-complete .circle::after {
    content: '✓';
    font-size: 12px;
    font-weight: 700;
}

.simple-steps .step:not(.active):not(.is-active):not(.is-complete) .circle {
    background: transparent;
    color: var(--step-muted);
    border: 2px solid var(--step-border);
}

/* Label */
.simple-steps .label {
    font-size: 15px;
    font-weight: 500;
    color: var(--step-muted);
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1.2;
    text-align: left;
}

.simple-steps .step.active .label,
.simple-steps .step.is-active .label {
    color: var(--brand-orange);
    font-weight: 700;
}

.simple-steps .step.is-complete .label {
    color: var(--step-black);
    font-weight: 500;
}

.simple-steps .step.is-disabled {
    pointer-events: none;
    cursor: default;
}

.simple-steps .step.is-disabled .label {
    color: var(--step-muted);
}

/* Divider */
.simple-steps .divider {
    width: 48px;
    height: 2px;
    background: var(--step-border);
    position: relative;
    margin: 0 8px;
    transition: all 0.3s ease;
    z-index: 1;
}

.simple-steps .divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--brand-orange) 0%, #ff4757 100%);
    transition: width 0.3s ease;
}

/* Divider Progress - when previous step is complete */
.simple-steps .step.is-complete + .divider::before {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .simple-steps {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 12px 16px 0;
        justify-content: flex-start;
        gap: 0;
    }

    .simple-steps::-webkit-scrollbar {
        height: 4px;
    }

    .simple-steps::-webkit-scrollbar-track {
        background: var(--step-border);
        border-radius: 2px;
    }

    .simple-steps::-webkit-scrollbar-thumb {
        background: var(--step-muted);
        border-radius: 2px;
    }

    .simple-steps::-webkit-scrollbar-thumb:hover {
        background: var(--step-gray);
    }

    .simple-steps .step {
        scroll-snap-align: center;
        flex-shrink: 0;
        min-width: max-content;
        padding: 4px 12px;
    }

    .simple-steps .circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .simple-steps .label {
        font-size: 13px;
    }

    .simple-steps .divider {
        width: 32px;
        margin: 0 4px;
    }

    .step-progress-wrapper {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .simple-steps {
        padding: 10px 12px 0;
        --step-circle: 26px;
    }

    .simple-steps .step {
        padding: 2px 8px;
    }

    .simple-steps .circle {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .simple-steps .label {
        font-size: 12px;
    }

    .simple-steps .divider {
        width: 24px;
        margin: 0 2px;
    }

    .step-progress-wrapper {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .simple-steps {
        padding: 8px 10px 0;
        --step-circle: 24px;
    }

    .simple-steps .step {
        padding: 2px 6px;
    }

    .simple-steps .circle {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .simple-steps .label {
        font-size: 11px;
    }

    .simple-steps .divider {
        width: 20px;
        margin: 0 1px;
    }

    .step-progress-wrapper {
        display: none !important;
    }
    
    .simple-steps {
              padding: 8px 10px 10px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .simple-steps .step,
    .simple-steps .circle,
    .simple-steps .label,
    .simple-steps .divider,
    .simple-steps .divider::before {
        transition: none;
    }

    .simple-steps .step.active .circle,
    .simple-steps .step.is-active .circle {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .simple-steps {
        --step-border: #000000;
        --step-muted: #000000;
    }

    .simple-steps .step:not(.active):not(.is-active):not(.is-complete) .circle {
        border-color: #000000;
    }
}

/* Print styles */
@media print {
    .simple-steps {
        position: static;
        background: #ffffff;
        backdrop-filter: none;
        box-shadow: none;
        border-bottom: 1px solid #000000;
    }
}

/* Contact Hero Section - Same as ct-hero */
.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-image: url('../assets/img/bg.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 2rem 0;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.7) 50%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 56px;
    height: 3px;
    background-color: var(--brand-orange);
}

.contact-hero p {
    font-size: 18px;
    font-weight: 400;
    color: #cccccc;
    margin: 20px 0 0 0;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for contact hero */
@media (max-width: 767.98px) {
    .contact-hero {
        padding: 1.5rem 0;
        min-height: 220px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .contact-hero {
        min-height: 200px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-hero h1::after {
        width: 48px;
    }
}

.icon-km
{
        top: 36% !important;
}

/* Success Message Container - Step 5 */
.success-message-container {
    background: #fff;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.success-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    animation: successPulse 2s infinite;
    border-radius: 30%;

}

.success-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.success-subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

.success-content {
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    margin-bottom: 30px;
}

.contact-section h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-call,
.btn-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-call {
    background: var(--brand-orange);
    color: #fff;
}

.btn-call:hover {
    background: #e55a00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 30, 40, 0.3);
}

.btn-contact {
    background: #fff;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
}

.btn-contact:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 30, 40, 0.3);
}

.thank-you-note {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    text-align: center;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: #ff6a00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.thank-you-note p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #bf360c;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Responsive adjustments for success page */
@media (max-width: 768px) {
    .success-message-container {
        padding: 25px 20px;
    }
    
    .success-header h2 {
        font-size: 26px;
    }
    
    .success-subtitle {
        font-size: 16px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 15px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-call,
    .btn-contact {
        width: 100%;
        max-width: 300px;
    }
    
    .thank-you-note {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .note-icon {
        margin: 0 auto;
    }
}

.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;
    }
}
.btn-left
{
    display: none !important;
}

/* Premium Değerleme Sonuç Kutusu - Step 5 */
.degerleme-result-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.04);
    padding: 48px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s ease;
}

.degerleme-result-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #111111, #374151, #111111);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.degerleme-result-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 12px 35px rgba(0, 0, 0, 0.06);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.result-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.result-status {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.05), rgba(55, 65, 81, 0.03));
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.result-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.result-status i {
    color: #111111;
    font-size: 20px;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.result-status span {
    color: #111111;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.result-header h2 {
    font-size: 32px;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.result-price {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.result-price::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #111111, #374151);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.05;
}

.price-info {
    margin-bottom: 24px;
}

.price-label {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    color: #111111;
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(17, 17, 17, 0.1);
    background: linear-gradient(135deg, #111111, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
}

.price-note i {
    color: #111111;
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
    60% { transform: translateY(-2px); }
}

.price-note p {
    color: #64748b;
    font-size: 15px;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

.result-actions {
    margin-bottom: 48px;
}

.action-info {
    text-align: center;
    margin-bottom: 36px;
}

.action-info h4 {
    font-size: 24px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.action-info p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.action-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.action-buttons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-buttons a:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #111111, #374151);
    color: #fff;
    box-shadow: 0 8px 25px rgba(17, 17, 17, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(17, 17, 17, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #111111;
    border: 2px solid #111111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #111111;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(17, 17, 17, 0.2);
}

.action-buttons a i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.action-buttons a:hover i {
    transform: scale(1.1);
}

.result-disclaimer {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    position: relative;
    overflow: hidden;
}

.result-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #111111, #374151, #111111);
}

.disclaimer-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #111111, #374151);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.2);
}

.disclaimer-text p {
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .degerleme-result-box {
        padding: 36px;
    }

    .result-header h2 {
        font-size: 28px;
    }

    .price-value {
        font-size: 42px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .degerleme-result-box {
        padding: 28px;
        margin-bottom: 32px;
    }

    .result-header {
        margin-bottom: 36px;
    }

    .result-status {
        padding: 10px 20px;
    }

    .result-status i {
        font-size: 18px;
    }

    .result-status span {
        font-size: 15px;
    }

    .result-header h2 {
        font-size: 24px;
    }

    .result-price {
        padding: 28px;
        margin-bottom: 36px;
    }

    .price-value {
        font-size: 36px;
    }

    .action-info h4 {
        font-size: 20px;
    }

    .action-info p {
        font-size: 15px;
    }

    .action-buttons a {
        padding: 16px 20px;
        font-size: 15px;
        min-height: 56px;
    }

    .result-disclaimer {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }

    .disclaimer-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto 16px;
    }

    .disclaimer-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .degerleme-result-box {
        padding: 20px;
        border-radius: 16px;
    }

    .result-header h2 {
        font-size: 20px;
    }

    .price-value {
        font-size: 32px;
    }

    .action-buttons a {
        padding: 14px 16px;
        font-size: 14px;
        min-height: 52px;
    }
}

/* FAQ Section - Step Page */
.hf-faq-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(253,185,19,0.02) 50%, rgba(255,255,255,1) 100%);
}

.hf-faq-content {
    padding-left: 0;
}

.hf-faq-header {
    margin-bottom: 2rem;
    text-align: center;
}

.hf-faq-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

.hf-faq-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.hf-faq-accordion {
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hf-accordion-item {
    border: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.hf-accordion-item:hover {
    border-color: rgba(226, 30, 40, 0.3);
    box-shadow: 0 4px 12px rgba(226, 30, 40, 0.1);
}

.hf-accordion-button {
    width: 100%;
    padding: 1.125rem 1.25rem;
    background: #fff;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: none !important;
}

.hf-accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.hf-accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(226, 30, 40, 0.08) 0%, rgba(226, 30, 40, 0.02) 100%);
    color: #1e293b;
    box-shadow: none !important;
}

.hf-accordion-button:not(.collapsed)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--brand-orange);
}

.hf-accordion-button:hover {
    background: rgba(226, 30, 40, 0.05);
}

.hf-accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, rgba(226, 30, 40, 0.12) 0%, rgba(226, 30, 40, 0.05) 100%);
}

.hf-question-icon {
    width: 32px;
    height: 32px;
    background: rgba(226, 30, 40, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hf-question-icon i {
    font-size: 0.875rem;
    color: var(--brand-orange);
}

.hf-accordion-button:not(.collapsed) .hf-question-icon {
    background: rgba(226, 30, 40, 0.2);
}

.hf-question-text {
    flex: 1;
    line-height: 1.5;
}

.hf-accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.7;
    background: #fff;
}

.hf-accordion-body p {
    margin-bottom: 0.75rem;
}

.hf-accordion-body p:last-child {
    margin-bottom: 0;
}

/* Responsive FAQ */
@media (max-width: 991.98px) {
    .hf-faq-section {
        padding: 3rem 0;
    }
    
    .hf-faq-title {
        font-size: 1.5rem;
    }
    
    .hf-faq-subtitle {
        font-size: 0.9375rem;
    }
    
    .hf-accordion-button {
        padding: 1rem 1.125rem;
        font-size: 0.875rem;
    }
    
    .hf-question-icon {
        width: 28px;
        height: 28px;
    }
    
    .hf-question-icon i {
        font-size: 0.75rem;
    }
    
    .hf-accordion-body {
        padding: 0.875rem 1.125rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767.98px) {
    .hf-faq-section {
        padding: 2.5rem 0;
    }
    
    .hf-faq-header {
        margin-bottom: 1.5rem;
    }
    
    .hf-faq-title {
        font-size: 1.375rem;
    }
    
    .hf-faq-subtitle {
        font-size: 0.875rem;
    }
    
    .hf-accordion-item {
        margin-bottom: 0.625rem;
    }
    
    .hf-accordion-button {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
        gap: 0.75rem;
    }
    
    .hf-question-icon {
        width: 26px;
        height: 26px;
    }
    
    .hf-question-icon i {
        font-size: 0.75rem;
    }
    
    .hf-accordion-body {
        padding: 0.75rem 1rem 0.875rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 575.98px) {
    .hf-faq-section {
        padding: 2rem 0;
    }
    
    .hf-faq-title {
        font-size: 1.25rem;
    }
    
    .hf-faq-subtitle {
        font-size: 0.8125rem;
    }
}




.form-step.step-3 {
    margin-bottom: 75px;
}

/* ============================================
   CLK FAQ SECTION - PROFESSIONAL CENTERED DESIGN
   ============================================ */

.clk-faq-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(250,250,250,1) 0%, rgba(255,255,255,1) 100%);
}

.clk-faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.clk-faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.clk-faq-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 0.75rem;
  font-family: 'Mulish', sans-serif;
  letter-spacing: -0.02em;
}

.clk-faq-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
}

.clk-faq-accordion {
  margin-top: 0;
}

.clk-accordion-item {
  border: 2px solid transparent;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.clk-accordion-item:hover {
  border-color: rgba(226, 30, 40, 0.2);
  box-shadow: 0 6px 24px rgba(226, 30, 40, 0.12);
  transform: translateY(-2px);
}

.clk-accordion-button {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: #1f2937;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Mulish', sans-serif;
  box-shadow: none !important;
}

.clk-accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none;
}

.clk-accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.05) 0%, rgba(226, 30, 40, 0.02) 100%);
  color: #1f2937;
  box-shadow: none !important;
}

.clk-accordion-button:not(.collapsed)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e21e28 0%, #ff4757 100%);
}

.clk-accordion-button:hover {
  background: rgba(226, 30, 40, 0.03);
}

.clk-accordion-button:not(.collapsed):hover {
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.08) 0%, rgba(226, 30, 40, 0.04) 100%);
}

.clk-question-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.1) 0%, rgba(226, 30, 40, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid rgba(226, 30, 40, 0.1);
}

.clk-question-icon i {
  font-size: 1.125rem;
  color: #e21e28;
}

.clk-accordion-button:not(.collapsed) .clk-question-icon {
  background: linear-gradient(135deg, #e21e28 0%, #ff4757 100%);
  border-color: transparent;
  transform: scale(1.05);
}

.clk-accordion-button:not(.collapsed) .clk-question-icon i {
  color: #fff;
}

.clk-question-text {
  flex: 1;
  line-height: 1.5;
  font-weight: 600;
}

.clk-accordion-body {
  padding: 0 1.75rem 1.5rem 5.5rem;
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.8;
  font-family: 'Mulish', sans-serif;
  background: transparent;
}

.clk-accordion-body p {
  margin-bottom: 1rem;
}

.clk-accordion-body p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .clk-faq-section {
    padding: 3rem 0;
  }
  
  .clk-faq-wrapper {
    max-width: 100%;
  }
  
  .clk-faq-title {
    font-size: 1.75rem;
  }
  
  .clk-faq-subtitle {
    font-size: 0.9375rem;
  }
  
  .clk-accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .clk-question-icon {
    width: 40px;
    height: 40px;
  }
  
  .clk-question-icon i {
    font-size: 1rem;
  }
  
  .clk-accordion-body {
    padding: 0 1.5rem 1.25rem 5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 767.98px) {
  .clk-faq-section {
    padding: 2.5rem 0;
  }
  
  .clk-faq-header {
    margin-bottom: 2rem;
  }
  
  .clk-faq-title {
    font-size: 1.5rem;
  }
  
  .clk-faq-subtitle {
    font-size: 0.875rem;
  }
  
  .clk-accordion-item {
    border-radius: 14px;
    margin-bottom: 0.875rem;
  }
  
  .clk-accordion-button {
    padding: 1.125rem 1.25rem;
    font-size: 0.875rem;
    gap: 0.875rem;
  }
  
  .clk-question-icon {
    width: 36px;
    height: 36px;
  }
  
  .clk-question-icon i {
    font-size: 0.9375rem;
  }
  
  .clk-accordion-body {
    padding: 0 1.25rem 1.125rem 4.5rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 575.98px) {
  .clk-faq-section {
    padding: 2rem 0;
  }
  
  .clk-faq-title {
    font-size: 1.375rem;
  }
  
  .clk-accordion-item {
    border-radius: 12px;
  }
  
  .clk-accordion-button {
    padding: 1rem 1.125rem;
    font-size: 0.8125rem;
    gap: 0.75rem;
  }
  
  .clk-question-icon {
    width: 32px;
    height: 32px;
  }
  
  .clk-question-icon i {
    font-size: 0.875rem;
  }
  
  .clk-accordion-body {
    padding: 0 1.125rem 1rem 4rem;
    font-size: 0.8125rem;
  }
}

/* ============================================
   STEP-5 RESULT PAGE - MODERN DESIGN
   ============================================ */

/* Page Layout */
.result-page-wrapper {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding-top: 30px;
  padding-bottom: 50px;
  min-height: 80vh;
}

/* Steps Override */
.simple-steps .step.completed .circle {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-color: #27ae60;
  color: white;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Result Card */
.result-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.result-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Success Animation */
.success-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  border-radius: 50%;
  color: white;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
  position: relative;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.2);
  animation: pulsate 2s infinite;
  z-index: 1;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.result-title {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  font-family: 'Mulish', sans-serif;
  letter-spacing: -0.02em;
}

.result-subtitle {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 36px;
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
}

/* Price Display */
.price-display-box {
  background: linear-gradient(135deg, #e21e28 0%, #ff4757 50%, #ff6b7a 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  color: white;
  margin-bottom: 48px;
  position: relative;
  box-shadow: 0 12px 32px rgba(226, 30, 40, 0.35);
  overflow: hidden;
}

.price-display-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.price-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.95;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: 'Mulish', sans-serif;
}

.price-amount {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  font-family: 'Mulish', sans-serif;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.price-guarantee {
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 24px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.price-guarantee i {
  color: #fff !important;
  font-size: 16px;
}

/* Process Timeline */
.next-steps-timeline {
  margin-bottom: 40px;
}

.timeline-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  border-left: 4px solid #e21e28;
  padding-left: 16px;
  color: #1f2937;
  font-family: 'Mulish', sans-serif;
  letter-spacing: -0.01em;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.t-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.t-step:hover {
  background: #fff;
  border-color: rgba(226, 30, 40, 0.2);
  box-shadow: 0 4px 16px rgba(226, 30, 40, 0.1);
  transform: translateX(4px);
}

.t-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bg-blue {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.bg-purple {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.bg-green {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.t-content h5 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1f2937;
  font-family: 'Mulish', sans-serif;
}

.t-content p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  font-family: 'Mulish', sans-serif;
}

/* Actions */
.action-area {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-action {
  flex: 1;
  min-width: 200px;
  padding: 18px 24px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  gap: 8px;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #e21e28 0%, #c41e1e 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(226, 30, 40, 0.35);
  border: none;
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(226, 30, 40, 0.45);
  color: white;
  background: linear-gradient(135deg, #c41e1e 0%, #a01a1a 100%);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  border: none;
}

.btn-whatsapp:hover {
  background: #1ebc57;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.pulse-btn {
  animation: shadow-pulse 2s infinite;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 6px 20px rgba(226, 30, 40, 0.35);
  }
  50% {
    box-shadow: 0 6px 20px rgba(226, 30, 40, 0.35), 0 0 0 8px rgba(226, 30, 40, 0.1);
  }
  100% {
    box-shadow: 0 6px 20px rgba(226, 30, 40, 0.35);
  }
}

.disclaimer-note {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border: 2px solid #ffe0b2;
  padding: 20px;
  border-radius: 12px;
  font-size: 14px;
  color: #f57c00;
  line-height: 1.7;
  font-family: 'Mulish', sans-serif;
}

.disclaimer-note i {
  color: #f57c00;
  margin-right: 8px;
}

.disclaimer-note strong {
  color: #e65100;
}

/* Side Card */
.vehicle-summary-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.vehicle-summary-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.vs-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px 24px;
  font-weight: 700;
  color: #1f2937;
  border-bottom: 2px solid #e5e7eb;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
}

.vs-header i {
  color: #e21e28;
  margin-right: 8px;
}

.vs-body {
  padding: 24px;
}

.vs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 16px;
}

.vs-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.vs-label {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Mulish', sans-serif;
}

.vs-value {
  color: #1f2937;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
  font-family: 'Mulish', sans-serif;
}

.vs-footer {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 16px 24px;
  text-align: center;
  border-top: 2px solid #e5e7eb;
  font-family: 'Mulish', sans-serif;
}

.vs-footer small {
  color: #6b7280;
  font-size: 12px;
}

.vs-footer strong {
  color: #e21e28;
  font-weight: 700;
}

.contact-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.cc-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(226, 30, 40, 0.1) 0%, rgba(226, 30, 40, 0.05) 100%);
  color: #e21e28;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border: 2px solid rgba(226, 30, 40, 0.1);
}

.cc-content h6 {
  margin: 0 0 6px;
  font-weight: 700;
  color: #1f2937;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
}

.cc-content p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #6b7280;
  font-family: 'Mulish', sans-serif;
  line-height: 1.5;
}

.cc-phone {
  color: #e21e28;
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Mulish', sans-serif;
  transition: all 0.3s ease;
}

.cc-phone:hover {
  color: #c41e1e;
  text-decoration: underline;
}

.error-state {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.error-state .icon-box {
  color: #f59e0b;
}

.error-state h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  font-family: 'Mulish', sans-serif;
}

.error-state p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: 'Mulish', sans-serif;
}

/* Responsive */
@media (max-width: 991.98px) {
  .result-card {
    padding: 36px 32px;
  }

  .price-amount {
    font-size: 42px;
  }

  .result-title {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .result-page-wrapper {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .result-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .result-title {
    font-size: 22px;
  }

  .result-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .price-display-box {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .price-amount {
    font-size: 36px;
  }

  .price-label {
    font-size: 12px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .t-step {
    padding: 16px;
    gap: 14px;
  }

  .t-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .action-area {
    flex-direction: column;
    gap: 12px;
  }

  .btn-action {
    width: 100%;
    padding: 16px 20px;
  }

  .vs-body {
    padding: 20px;
  }

  .contact-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .cc-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .result-card {
    padding: 24px 20px;
  }

  .price-amount {
    font-size: 32px;
  }

  .result-title {
    font-size: 20px;
  }

  .t-content h5 {
    font-size: 16px;
  }

  .t-content p {
    font-size: 13px;
  }
}