/**
 * Sail — Extra Service 页（结构与 pricing.html 一致：sail-extra-page > main.sail-extra > section + .container）
 * 参考 jingsourcing.com/extra-service/
 */

.sail-extra-page {
    background: #ffffff;
    color: #333333;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.sail-extra {
    margin: 0;
    padding: 0;
}

.sail-extra .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .sail-extra {
        padding: 32px 0 60px;
    }
}

/* ---- Section 1：标题条（对齐 sail-pricing-heading） ---- */
.sail-extra-heading .container {
    max-width: 1120px;
}

.sail-extra-heading__container {
    text-align: -webkit-center;
    text-align: center;
}

.sail-extra-heading__title {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 10px 56px;
    font-size: 27px;
    line-height: 1.6;
    font-weight: 500;
    color: #333333;
}

@media (max-width: 768px) {
    .sail-extra-heading__title {
        padding: 8px 24px;
        font-size: 19px;
    }
}

/* ---- Section 2：分隔线 ---- */
.sail-extra-divider__container {
    max-width: 1140px;
}

.sail-extra-divider__line {
    display: block;
    width: 18%;
    max-width: 220px;
    margin: 0 auto;
    height: 2px;
    background-color: #ff9933;
}

/* ---- Section 3 / 5：全宽带 ---- */
.sail-extra-band {
    position: relative;
    padding: 40px 0 48px;
}

.sail-extra-band--photo {
    margin-top: 24px;
    background-color: #f5f5f5;
    background-image: url("https://jingsourcing.com/wp-content/uploads/2023/05/AdobeStock_339131796-%E8%BD%AC%E6%8D%A2-01.jpg");
    background-size: cover;
    background-position: center;
}

.sail-extra-band--photo .sail-extra-band__overlay {
    background-color: rgba(255, 255, 255, 0.5);
}

.sail-extra-band__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sail-extra-band--quality {
    background-color: #f8f9fa;
}

.sail-extra-band--quality .sail-extra-band__overlay--light {
    display: none;
}

.sail-extra-band__container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
}

.sail-extra-band__title {
    margin: 0 0 24px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #333333;
}

.sail-extra-band__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 28px;
}

.sail-extra-band__figure {
    flex: 0 0 42%;
    min-height: 260px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sail-extra-band__copy {
    flex: 1 1 0;
    min-width: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.83);
}

.sail-extra-band__lead {
    margin: 0 0 12px;
}

.sail-extra-band__list {
    margin: 0;
    padding-left: 1.25em;
}

.sail-extra-band__list li {
    margin-bottom: 8px;
}

.sail-extra-band__list li:last-child {
    margin-bottom: 0;
}

.sail-extra-band__actions {
    margin: 28px 0 0;
    text-align: center;
}

@media (max-width: 900px) {
    .sail-extra-band__row {
        flex-direction: column;
    }

    .sail-extra-band__figure {
        flex: none;
        width: 100%;
        min-height: 220px;
    }
}

/* ---- 橙色按钮（对齐 pricing / design CTA） ---- */
.sail-extra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 9px 26px;
    border-radius: 100px;
    background-color: #ff9933;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sail-extra-btn:hover,
.sail-extra-btn:focus {
    background-color: #e67e22;
    color: #ffffff !important;
}

/* ---- Section 4：Packaging ---- */
.sail-extra-packaging {
    padding: 56px 0 40px;
}

.sail-extra-section-title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333333;
}

.sail-extra-packaging__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.sail-extra-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sail-extra-card__media {
    min-height: 200px;
    background-size: cover;
    background-position: center;
}

.sail-extra-card__body {
    padding: 20px 22px 24px;
}

.sail-extra-card__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.sail-extra-card__desc {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.8);
}

.sail-extra-card__desc:last-child {
    margin-bottom: 0;
}

.sail-extra-card__price {
    color: #ff9933;
    font-weight: 600;
}

.sail-extra-packaging__cta {
    margin: 32px 0 0;
    text-align: center;
}

@media (max-width: 768px) {
    .sail-extra-packaging__grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Section 5：Quality 三列 ---- */
.sail-extra-qi__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sail-extra-qi {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sail-extra-qi__media {
    min-height: 160px;
    background-size: cover;
    background-position: center;
}

.sail-extra-qi__title {
    margin: 0;
    padding: 14px 16px 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #333333;
}

.sail-extra-qi__desc {
    margin: 0;
    padding: 0 16px 18px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.82);
    text-align: center;
}

@media (max-width: 900px) {
    .sail-extra-qi__grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Section 6：Warehousing ---- */
.sail-extra-warehouse {
    padding: 48px 0 72px;
}

.sail-extra-warehouse__block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 28px;
    margin-top: 8px;
}

.sail-extra-warehouse__media {
    flex: 0 0 40%;
    min-height: 240px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.sail-extra-warehouse__copy {
    flex: 1 1 0;
    min-width: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
}

.sail-extra-warehouse__copy p {
    margin: 0 0 16px;
}

.sail-extra-warehouse__copy p:last-child {
    margin-bottom: 0;
}

.sail-extra-warehouse__hl {
    color: #1273eb;
    font-weight: 600;
}

.sail-extra-warehouse__cta {
    margin: 28px 0 0;
    text-align: center;
}

@media (max-width: 900px) {
    .sail-extra-warehouse__block {
        flex-direction: column;
    }

    .sail-extra-warehouse__media {
        flex: none;
        width: 100%;
        min-height: 200px;
    }
}
