.elementor-27454 .elementor-element.elementor-element-061563c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-end;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-1463b5b *//* ===== MAIN CONTAINER ===== */
.vehicle-sell-process {
    max-width: 750px;
    margin: 40px auto;
    background: white;
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.5;
}

/* ===== HEADER ===== */
.sell-header {
    padding: 30px 20px 15px;
    text-align: center;
    background: white;
}

.sell-header h1 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PROGRESS STEPS ===== */
.progress-steps {
    display: flex;
    justify-content: center;
    padding: 25px 20px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.step-indicator {
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.step-indicator:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 1px;
    background: #d0d0d0;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    color: #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 12px;
}

.step-indicator.active .step-number {
    background: #000;
    color: white;
}

.step-label {
    font-weight: 500;
    color: #888;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.step-indicator.active .step-label {
    color: #000;
    font-weight: 600;
}

/* ===== FORM CONTAINER ===== */
.form-container {
    padding: 0 20px 40px;
}

/* ===== BIKE SUMMARY ===== */
.bike-summary {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 3px solid #000;
}

.bike-summary h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bike-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

@media (max-width: 576px) {
    .bike-summary-grid {
        grid-template-columns: 1fr;
    }
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: #666;
    font-weight: 500;
    font-size: 14px;
}

.summary-value {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

/* ===== FORM SECTIONS ===== */
.form-section {
    padding: 25px 0;
    border-bottom: 1px solid #eaeaea;
}

.form-section:first-of-type {
    padding-top: 10px;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TITLE OPTIONS ===== */
.title-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.title-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background: white;
    transition: all 0.2s;
    font-size: 14px;
    user-select: none;
}

.title-option:hover {
    border-color: #999;
    background: #f9f9f9;
}

.title-option input[type="radio"] {
    display: none;
}

.title-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 2px;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
    background: white;
}

.title-option input[type="radio"]:checked + .title-checkbox {
    background: #000;
    border-color: #000;
}

.title-option input[type="radio"]:checked + .title-checkbox::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 1px;
}

/* ===== NAME FIELDS ===== */
.name-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 576px) {
    .name-fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
}

/* ===== FORM INPUTS ===== */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    background: white;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
    color: #999;
    opacity: 1;
}

/* ===== TERMS SECTION ===== */
.terms-section {
    background: #f9f9f9;
    padding: 25px;
    margin: 30px 0;
    border-left: 3px solid #000;
}

.terms-section h3 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.terms-text strong {
    color: #000;
    font-weight: 600;
}

/* ===== FORM ACTIONS ===== */
.form-actions {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 10px;
    margin-top: 10px;
}

.btn-back {
    padding: 12px 30px;
    background: white;
    color: #666;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    min-width: 120px;
}

.btn-back:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

.btn-continue {
    padding: 12px 40px;
    background: #000;
    color: white;
    border: 1px solid #000;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    min-width: 140px;
}

.btn-continue:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-continue:active {
    transform: translateY(0);
}

/* ===== VALIDATION STYLES ===== */
.form-input.error {
    border-color: #d32f2f;
    background-color: #fff5f5;
}

.error-message {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.form-input.error + .error-message {
    display: block;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .vehicle-sell-process {
        margin: 20px auto;
        box-shadow: none;
    }
    
    .sell-header {
        padding: 20px 15px 10px;
    }
    
    .sell-header h1 {
        font-size: 26px;
    }
    
    .progress-steps {
        padding: 20px 15px;
    }
    
    .step-indicator {
        padding: 0 20px;
    }
    
    .step-indicator:not(:last-child)::after {
        width: 40px;
    }
    
    .form-container {
        padding: 0 15px 30px;
    }
    
    .title-options {
        gap: 10px;
    }
    
    .title-option {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .terms-section {
        padding: 20px;
        margin: 25px 0;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
        padding: 25px 0 5px;
    }
    
    .btn-back, .btn-continue {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .step-indicator {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .step-label {
        font-size: 13px;
    }
    
    .step-indicator:not(:last-child)::after {
        width: 30px;
    }
    
    .form-section h3 {
        font-size: 15px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .vehicle-sell-process {
        box-shadow: none;
        margin: 0;
    }
    
    .btn-back, .btn-continue {
        display: none;
    }
}

/* ===== ACCESSIBILITY ===== */
.form-input:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.title-option:focus-within {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bike-summary {
    animation: fadeIn 0.3s ease-out;
}/* End custom CSS */