@charset "UTF-8";

/* ====== Shouhou After-Sales Service Page Styles ====== */

/* Banner override - gradient background since pic is empty */
#bann.sh-banner {
    background: linear-gradient(135deg, #0a4d8c 0%, #0f6ab4 50%, #1a82c4 100%);
    position: relative;
    overflow: hidden;
}
#bann.sh-banner .t1 {
    font-size: 42px;
    font-weight: bold;
}
#bann.sh-banner .t2 {
    font-size: 18px;
    opacity: 0.85;
}
#bann.sh-banner .t2 span {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
}
.sh-banner-deco {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.sh-banner-deco::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

/* Section common */
.sh-section {
    padding: 70px 0;
}
.sh-section-head {
    text-align: center;
    margin-bottom: 50px;
}
.sh-section-title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}
.sh-section-subtitle {
    font-size: 14px;
    color: #bbb;
    letter-spacing: 2px;
    margin-top: 8px;
}
.sh-section-line {
    width: 50px;
    height: 3px;
    background: #0f6ab4;
    margin: 18px auto 0;
    border-radius: 2px;
}

/* Commitment Cards */
.sh-commitment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.sh-commitment-card {
    width: calc(25% - 23px);
    background: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}
.sh-commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15,106,180,0.15);
    border-color: #0f6ab4;
}
.sh-commitment-card .sh-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}
.sh-commitment-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}
.sh-commitment-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

/* Process Timeline */
.sh-process-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}
.sh-process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0f6ab4, #1a82c4, #0f6ab4);
    z-index: 0;
    border-radius: 2px;
}
.sh-process-step {
    position: relative;
    z-index: 1;
    width: 20%;
    text-align: center;
    padding: 0 10px;
}
.sh-step-num {
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: #fff;
    border: 3px solid #0f6ab4;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: bold;
    color: #0f6ab4;
    transition: all 0.4s ease;
}
.sh-process-step:hover .sh-step-num {
    background: #0f6ab4;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(15,106,180,0.3);
}
.sh-step-body h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.sh-step-body p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

/* Detail Box */
.sh-detail-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sh-detail-content {
    font-size: 15px;
    line-height: 2;
    color: #555;
}
.sh-detail-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

/* Stats Section */
.sh-stats {
    padding: 60px 0;
}
.sh-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.sh-stats-item {
    text-align: center;
    min-width: 180px;
}
.sh-stats-num {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}
.sh-stats-num small {
    font-size: 20px;
    font-weight: normal;
    margin-left: 4px;
}
.sh-stats-item p {
    font-size: 15px;
    opacity: 0.8;
}

/* FAQ */
.sh-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.sh-faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.sh-faq-item.active {
    border-color: #0f6ab4;
    box-shadow: 0 4px 20px rgba(15,106,180,0.08);
}
.sh-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.sh-faq-q span {
    flex: 1;
}
.sh-faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 15px;
}
.sh-faq-toggle::before,
.sh-faq-toggle::after {
    content: '';
    position: absolute;
    background: #0f6ab4;
    transition: all 0.3s ease;
}
.sh-faq-toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}
.sh-faq-toggle::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}
.sh-faq-item.active .sh-faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.sh-faq-a {
    padding: 0 25px 20px;
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

/* CTA */
.sh-cta {
    padding: 50px 0;
    background: #f7f9fc;
}
.sh-cta-box {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sh-cta-left {
    width: 40%;
}
.sh-cta-left h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.sh-cta-left p {
    font-size: 15px;
    color: #888;
}
.sh-cta-right {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 55%;
}
.sh-cta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}
.sh-cta-item svg {
    flex-shrink: 0;
}
.sh-cta-label {
    display: block;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 4px;
}
.sh-cta-item a,
.sh-cta-item span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* ====== Responsive ====== */
@media screen and (max-width: 1024px) {
    .sh-section { padding: 40px 0; }
    .sh-section-title { font-size: 22px; }
    #bann.sh-banner .t1 { font-size: 24px; }
    #bann.sh-banner .t2 { font-size: 13px; }
    #bann.sh-banner .t2 span { padding: 4px 12px; }

    .sh-commitment-grid {
        gap: 15px;
    }
    .sh-commitment-card {
        width: calc(50% - 8px);
        padding: 25px 15px;
    }
    .sh-commitment-card .sh-card-icon {
        width: 48px;
        height: 48px;
    }
    .sh-commitment-card h3 { font-size: 16px; }
    .sh-commitment-card p { font-size: 13px; }

    .sh-process-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .sh-process-line {
        display: none;
    }
    .sh-process-step {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }
    .sh-step-num {
        margin: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 16px;
    }
    .sh-step-body h3 { font-size: 15px; }
    .sh-step-body p { font-size: 12px; }

    .sh-detail-box { padding: 20px; }
    .sh-detail-content { font-size: 14px; }

    .sh-stats { padding: 40px 0; }
    .sh-stats-grid {
        gap: 30px;
    }
    .sh-stats-item {
        min-width: 45%;
    }
    .sh-stats-num { font-size: 36px; }
    .sh-stats-num small { font-size: 16px; }
    .sh-stats-item p { font-size: 13px; }

    .sh-faq-q { padding: 15px; font-size: 14px; }
    .sh-faq-a { padding: 0 15px 15px; font-size: 13px; }

    .sh-cta-box {
        padding: 25px;
        flex-direction: column;
    }
    .sh-cta-left,
    .sh-cta-right {
        width: 100%;
    }
    .sh-cta-left h2 { font-size: 20px; }
    .sh-cta-item { min-width: 100%; }
}

@media screen and (max-width: 480px) {
    .sh-commitment-card {
        width: 100%;
    }
    .sh-stats-item {
        min-width: 100%;
    }
    .sh-cta-right {
        gap: 20px;
    }
}
