/* =========================================================
   SELL PAGE
========================================================= */

.sell-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* =========================================================
   SELL HERO
========================================================= */

.sell-hero {
    position: relative;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            rgba(17, 48, 82, 0.55),
            rgba(17, 48, 82, 0.55)
        ),
        url("../images/hero/sell-hero.jpg") center / cover no-repeat;

    text-align: center;
    color: #ffffff;
}

.sell-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 72, 0.12);
}

.sell-hero-container {
    position: relative;
    z-index: 1;

    width: min(850px, 90%);
    margin: 0 auto;

    padding: 100px 0 80px;
}

.sell-hero .section-eyebrow {
    color: #d5a54a;
}

.sell-hero h1 {
    margin: 18px 0 20px;

    color: #ffffff;

    font-family: var(--heading-font);
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.sell-hero p {
    max-width: 700px;
    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1.08rem;
    line-height: 1.8;
}

.sell-hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.sell-hero-buttons .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: transparent;
}

.sell-hero-buttons .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary);
}


/* =========================================================
   INTRO / WHY SELL WITH KEVIN
========================================================= */

.sell-intro {
    padding: 110px 0 120px;
    background: #ffffff;
}

.sell-intro .section-heading {
    max-width: 820px;
    margin: 0 auto 70px;

    text-align: center;
}

.sell-intro .section-heading h2,
.selling-process .section-heading h2 {
    margin: 15px 0 20px;

    color: var(--text);

    font-family: var(--heading-font);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.05;
}

.sell-intro .section-heading p,
.selling-process .section-heading p {
    max-width: 760px;
    margin: 0 auto;

    color: var(--text-light);

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   SELLER BENEFITS
========================================================= */

.seller-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.seller-benefit {
    padding: 34px 28px;

    background: #ffffff;

    border: 1px solid #e5e8ec;
    border-radius: 8px;

    text-align: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.seller-benefit:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(20, 45, 75, 0.10);
}

.seller-benefit-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: rgba(213, 165, 74, 0.12);
    color: #c99532;

    font-size: 1.25rem;
}

.seller-benefit h3 {
    margin: 0 0 12px;

    color: var(--primary);

    font-family: var(--heading-font);
    font-size: 1.65rem;
    font-weight: 600;
}

.seller-benefit p {
    margin: 0;

    color: var(--text-light);

    font-size: 0.92rem;
    line-height: 1.7;
}


/* =========================================================
   SELLING PROCESS
========================================================= */

.selling-process {
    padding: 110px 0 120px;

    background: #f5f7f9;
}

.selling-process .section-heading {
    max-width: 820px;
    margin: 0 auto 70px;

    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-step {
    position: relative;

    padding: 35px 24px;

    background: #ffffff;

    border: 1px solid #e3e7eb;
    border-radius: 8px;

    text-align: center;
}

.process-number {
    position: absolute;
    top: 16px;
    right: 18px;

    color: #d5a54a;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.process-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 5px auto 20px;

    border-radius: 50%;

    background: var(--primary);
    color: #ffffff;

    font-size: 1.15rem;
}

.process-step h3 {
    margin: 0 0 12px;

    color: var(--primary);

    font-family: var(--heading-font);
    font-size: 1.45rem;
    font-weight: 600;
}

.process-step p {
    margin: 0;

    color: var(--text-light);

    font-size: 0.88rem;
    line-height: 1.7;
}


/* =========================================================
   HOME VALUE SECTION
========================================================= */

.home-value-section {
    padding: 70px 0;

    background: #ffffff;
}

.home-value-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;

    padding: 65px;

    background: #f5f7f9;

    border-radius: 10px;

    box-shadow: 0 18px 45px rgba(20, 45, 75, 0.08);
}

.home-value-content {
    padding-top: 10px;
}

.home-value-content h2 {
    margin: 15px 0 22px;

    color: var(--text);

    font-family: var(--heading-font);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
}

.home-value-content > p {
    margin: 0 0 30px;

    color: var(--text-light);

    font-size: 1rem;
    line-height: 1.8;
}

.home-value-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-value-points span {
    color: var(--primary);

    font-size: 0.92rem;
    font-weight: 600;
}

.home-value-points i {
    margin-right: 9px;

    color: #d5a54a;
}


/* =========================================================
   SELLER FORM
========================================================= */

.home-value-form {
    padding: 34px;

    background: #ffffff;

    border: 1px solid #e2e6ea;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--text);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    box-sizing: border-box;

    border: 1px solid #d7dde4;
    border-radius: 4px;

    background: #ffffff;

    color: var(--text);

    font-family: var(--body-font);
    font-size: 0.92rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    box-shadow: 0 0 0 3px rgba(33, 79, 134, 0.08);
}

.home-value-form .btn-primary {
    width: 100%;
    margin-top: 4px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.sell-final-cta {
    padding: 75px 20px;

    background: var(--primary);

    color: #ffffff;

    text-align: center;
}

.sell-final-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.sell-final-cta .section-eyebrow {
    color: #d5a54a;
}

.sell-final-cta h2 {
    margin: 12px 0 16px;

    color: #ffffff;

    font-family: var(--heading-font);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
}

.sell-final-cta p {
    max-width: 650px;
    margin: 0 auto 25px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .seller-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-value-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 700px) {

    .sell-hero {
        min-height: 560px;
    }

    .sell-hero-container {
        padding: 80px 0 60px;
    }

    .sell-hero h1 {
        font-size: 3.2rem;
    }

    .sell-hero-buttons {
        flex-direction: column;
    }

    .sell-hero-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
        box-sizing: border-box;
    }

    .seller-benefits {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .home-value-card {
        padding: 30px 22px;
    }

    .home-value-form {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* =========================================================
   FONT AWESOME ICON FIX
========================================================= */

.seller-benefit-icon i,
.process-icon i,
.home-value-points i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
}

/* =========================================================
   SELL PAGE MOBILE FIX
========================================================= */

@media (max-width: 700px) {

    .sell-hero {
        min-height: 480px;
    }

    .sell-hero-container {
        width: 90%;
        padding: 65px 0 50px;
    }

    .sell-hero h1 {
        font-size: 2.8rem;
        line-height: 1;
        margin: 14px 0 18px;
    }

    .sell-hero p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 26px;
    }

    .sell-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .sell-hero-buttons a {
        width: 100%;
        max-width: 280px;
        text-align: center;
        box-sizing: border-box;
    }

    .seller-benefits {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .seller-benefit {
        padding: 28px 22px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-step {
        padding: 28px 20px;
    }

    .home-value-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 22px;
    }

    .home-value-form {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}