/**
 * Sell With Us Page Styles
 * Page-specific styles for the Sell With Us section
 */

/* Hero Section */
.sell-hero {
    background: #0E143E;
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.sell-hero h1 {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 42px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #fff;
}

.sell-hero p {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.sell-hero p strong {
    font-weight: 500;
    display: inline-block;
    margin-top: 28px;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.contact-method i {
    font-size: 18px;
}

/* Why Sell Section */
.why-sell {
    padding: 80px 0;
    background: #fff;
}

.why-sell .section_title {
    font-size: 32px;
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    margin-bottom: 50px;
    color: #0E143E;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

.feature-image {
    width: 220px;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 0;
}

.feature-content h3 {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 12px;
    color: #0E143E;
    line-height: 1.3;
}

.feature-content p {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #E7E7F0;
}

.process-section .section_title {
    font-size: 32px;
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    color: #0E143E;
    letter-spacing: -0.5px;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 50px;
}

.process-image {
    position: relative;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
}

.process-intro {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

/* Process Steps */
.process-steps {
    counter-reset: step-counter;
}

.process-step {
    margin-bottom: 36px;
    padding-left: 52px;
    position: relative;
    counter-increment: step-counter;
}

.process-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 3px;
    width: 36px;
    height: 36px;
    background: #0E143E;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 39px;
    width: 1px;
    height: calc(100% + 16px);
    background: #d8d8e0;
}

.process-step:last-child::after {
    display: none;
}

.process-step h4 {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
    color: #0E143E;
}

.process-step p {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
    background: #fff;
}

.terms-section .section_title {
    font-size: 32px;
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    margin-bottom: 50px;
    color: #0E143E;
    text-align: center;
    letter-spacing: -0.5px;
}

.terms-grid {
    max-width: 1000px;
    margin: 60px auto 0;
}

.term-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 24px;
    background: #fafafa;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.term-item:hover {
    background: #f5f5f5;
}

.term-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: #0E143E;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 20px;
    margin-top: 2px;
}

.term-icon i {
    font-size: 11px;
}

.term-content h4 {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 4px;
    color: #0E143E;
}

.term-content p {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    background: #E7E7F0;
    padding: 80px 0;
    border-top: none;
}

.faq-section h3 {
    font-size: 32px;
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    color: #0E143E;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

#accordionList {
    list-style: none;
    padding: 0;
    margin: 0;
}

#accordionList li {
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e8;
}

.list_header {
    padding: 24px 28px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background: #fff;
}

.list_header:hover {
    background: #fff;
}

.list_header::after {
    content: '+';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: #0E143E;
    transition: transform 0.3s ease;
}

.list_header[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(90deg);
}

.list_header .js-semi-bold {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #0E143E;
    padding-right: 50px;
    display: block;
}

.list_body {
    padding: 0 28px 24px 28px;
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    background: #fff;
}

.more-faqs-link {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background: #0E143E;
    color: #fff !important;
    text-decoration: none;
    border: 1px solid #0E143E;
    font-family: 'JosefinSans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.more-faqs-link:hover {
    background: #1a2258;
    border-color: #1a2258;
    color: #fff !important;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1198.98px) {
    .features-grid {
        gap: 50px 60px;
    }

    .feature-item {
        grid-template-columns: 180px 1fr;
        gap: 24px;
    }

    .feature-image {
        width: 180px;
        height: 130px;
    }
}

@media (max-width: 991.98px) {
    .sell-hero {
        padding: 50px 0 60px;
    }

    .sell-hero h1 {
        font-size: 32px;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-image {
        width: 100%;
        height: 180px;
    }

    .contact-methods {
        flex-direction: column;
    }

    .contact-method {
        width: 100%;
        justify-content: center;
    }

    .why-sell .section_title,
    .process-section .section_title,
    .terms-section .section_title,
    .faq-section h3 {
        font-size: 26px;
    }

    .why-sell, .process-section, .terms-section, .faq-section {
        padding: 50px 0;
    }
}

@media (max-width: 575.98px) {
    .sell-hero {
        padding-top: 20px;
    }
}
