.trade-in-banner-wrapper {
    background: linear-gradient(135deg, #003478 0%, #001f4d 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 52, 120, 0.2);
    color: #fff;
    position: relative;
    overflow: hidden;
    gap: 30px;
}
.trade-in-banner-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}
.trade-in-content {
    flex: 1.5;
    position: relative;
    z-index: 2;
}
.trade-in-title {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}
.trade-in-desc {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}
.trade-in-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.trade-in-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.05rem;
}
.trade-in-features i {
    color: #2ecc71;
    font-size: 1.2rem;
}

/* Floating Badge */
.trade-in-floating-badge {
    position: fixed;
    bottom: 250px;
    right: 20px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: bounceBadge 2s infinite;
}
.trade-in-floating-badge:hover {
    transform: scale(1.05);
    color: #fff;
}
.trade-in-floating-badge .badge-icon {
    font-size: 24px;
}
.trade-in-floating-badge .badge-text {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

@keyframes bounceBadge {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 992px) {
    .trade-in-banner-wrapper {
        flex-direction: column;
        padding: 30px 20px;
    }
    .trade-in-content {
        text-align: center;
        margin-bottom: 20px;
    }
    .trade-in-features {
        align-items: center;
    }
    .trade-in-floating-badge {
        bottom: 120px;
        right: 15px;
        padding: 8px 12px;
    }
    .trade-in-floating-badge .badge-icon {
        font-size: 20px;
    }
}
