.trade-in-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.trade-in-form .form-group {
    padding: 0 10px;
    margin-bottom: 15px;
    width: 100%;
}
.trade-in-form .form-group.half {
    width: 50%;
}
.trade-in-form .form-group.third {
    width: 33.333%;
}
.trade-in-form .form-section-title {
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-primary);
    position: relative;
    text-align: center;
}
.trade-in-form .form-section-title span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}
.trade-in-form .form-section-title hr {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #eee;
    z-index: 0;
}
.trade-in-form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--clr-text-main);
}
@media (max-width: 600px) {
    .trade-in-form .form-group.half,
    .trade-in-form .form-group.third {
        width: 100%;
    }
}

/* Custom Dropdown CSS */
.custom-make-dropdown {
    position: relative;
    width: 100%;
}
.custom-make-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
    user-select: none;
    min-height: 42px;
    color: #333; /* Fix text color inheritance */
}
.custom-make-selected .selected-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-make-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    color: #333; /* Fix text color inheritance */
}
.custom-make-options.active {
    display: block;
}
.custom-make-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}
.custom-make-option:last-child {
    border-bottom: none;
}
.custom-make-option:hover {
    background: #f8f9fa;
}
.make-logo, .custom-make-selected img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.make-logo-placeholder {
    width: 24px;
    height: 24px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #666;
    font-weight: bold;
}
