/* Sell Page Specific Styles */

/* Cash Offer Section - Replaces reused values-section styling */
.cash-offer-section {
    max-width: 1300px;
    margin: 100px auto;
    padding: 80px 40px;
    background-color: transparent;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cash-offer-left {
    padding-top: 0;
}

.cash-offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #eff6ff;
    color: #3675ff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 24px;
}

.cash-offer-section h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #091f3e;
}

.cash-offer-desc {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cash-offer-btn {
    display: inline-block;
    background: #3675ff;
    color: white;
    padding: 14px 32px;
    border-radius: 1000px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.cash-offer-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(54, 117, 255, 0.2);
}

.cash-offer-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cash-offer-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cash-offer-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cash-offer-icon svg {
    width: 24px;
    height: 24px;
    stroke: #3675ff;
    fill: none;
    stroke-width: 2;
}

.cash-offer-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0f172a;
}

.cash-offer-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .cash-offer-section {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 40px 24px;
        margin: 60px 20px;
    }

    .cash-offer-left {
        display: contents;
    }

    .cash-offer-tag {
        order: 1;
        margin-bottom: 16px;
        align-self: flex-start;
    }

    .cash-offer-section h2 {
        order: 2;
        font-size: 32px;
        margin-bottom: 24px;
    }

    .cash-offer-desc {
        order: 3;
        margin-bottom: 32px;
    }

    .cash-offer-right {
        order: 4;
    }

    .cash-offer-left .btn-blue,
    .cash-offer-btn {
        order: 5;
        align-self: center;
        width: auto;
        text-align: center;
    }
}

/* Hero Form Styles */
.sell-hero-form-container {
    margin: 0 auto 60px;
    max-width: 650px;
    /* Increased from 500px */
    width: 100%;
}

.sell-hero-form {
    background: white;
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
}

.sell-hero-input {
    flex: 1;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 100px;
    outline: none;
    min-width: 0;
}