/* Sell Your Car */
.sell-page {
    background: #111;
}

/* Hero */
.sell-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
        url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1800') center center/cover no-repeat;
}

.sell-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.18), transparent 30%);
}

.sell-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.sell-hero-content h1 {
    font-size: 78px;
    line-height: 1;
    margin: 18px 0 28px;
}

.sell-hero-content p {
    color: #ddd;
    font-size: 22px;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Steps Section */
.sell-steps-section,
.payment-options-section {
    padding: 100px 0;
}

.payment-options-section {
    background: #0d0d0d;
}

.sell-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sell-step-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 38px;
    transition: 0.35s ease;
}

.sell-step-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.sell-step-card span {
    color: #C4622D;
    font-size: 46px;
    font-weight: bold;
}

.sell-step-card h3 {
    font-size: 24px;
    margin: 22px 0 14px;
}

.sell-step-card p {
    color: #aaa;
    line-height: 1.8;
}

/* Payment Options */
.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.payment-option-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 42px;
    transition: 0.35s ease;
}

.payment-option-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.featured-payment {
    border-color: #C4622D;
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.18), transparent 35%),
        #161616;
}

.payment-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.payment-option-card h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.payment-price {
    color: #C4622D !important;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 18px;
}

.payment-option-card p {
    color: #aaa;
    line-height: 1.8;
}

/* Form Section */
.sell-form-section {
    padding: 100px 0;
    background: #0d0d0d;
}

.sell-form-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 45px;
    align-items: start;
}

.sell-form-copy {
    position: sticky;
    top: 110px;
}

.sell-form-copy h2 {
    font-size: 54px;
    margin: 14px 0 24px;
}

.sell-form-copy p {
    color: #aaa;
    line-height: 1.9;
    margin-bottom: 24px;
}

.sell-contact-mini {
    background: #161616;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 30px;
    margin-top: 35px;
}

.sell-contact-mini p {
    margin: 0 0 14px;
}

/* Form Box */
.sell-form-box {
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 45px;
}

.sell-car-form h3 {
    color: #C4622D;
    font-size: 28px;
    margin: 40px 0 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sell-car-form label {
    display: block;
    margin-bottom: 8px;
    color: #F5F0E8;
    font-weight: bold;
}

.sell-car-form input,
.sell-car-form select,
.sell-car-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #F5F0E8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.sell-car-form input:focus,
.sell-car-form select:focus,
.sell-car-form textarea:focus {
    outline: none;
    border-color: #C4622D;
}

.booking-success {
    background: rgba(55,160,90,0.12);
    border: 1px solid rgba(55,160,90,0.35);
    color: #7ee09b;
    padding: 18px 22px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* CTA Strip */
.sell-cta {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.18), transparent 35%),
        #161616;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.sell-cta-inner {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.sell-cta-inner h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.sell-cta-inner p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 18px;
}

.sell-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media(max-width: 1200px) {

    .sell-form-layout {
        grid-template-columns: 1fr;
    }

    .sell-form-copy {
        position: relative;
        top: auto;
    }

}

@media(max-width: 1000px) {

    .sell-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-options-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 768px) {

    .sell-hero {
        min-height: 65vh;
    }

    .sell-hero-content h1 {
        font-size: 46px;
    }

    .sell-hero-content p {
        font-size: 18px;
    }

    .sell-steps-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .sell-form-copy h2 {
        font-size: 38px;
    }

    .sell-form-box {
        padding: 30px;
    }

    .sell-cta-inner h2 {
        font-size: 38px;
    }

}