/* Customize container max-width for this page to make it more compact and premium, excluding the banner container */
@media (min-width: 1200px) {
    .translation-collaboration-page .container:not(.banner-container) {
        max-width: 900px !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .translation-collaboration-page .container:not(.banner-container) {
        max-width: 800px !important;
    }
}

/* Global Section Styles */
.section_title {
    font-size: 32px;
    color: #0f3b84;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 3px;
    padding-left: 3px; /* Offset letter-spacing to keep it perfectly centered */
}
.section_accent {
    width: 18px;
    height: 18px;
    background: url('/web_static/scenario/accent_dot.webp') no-repeat center center;
    background-size: contain;
    margin: 26px auto 40px auto;
}

/* Hero Banner Section */
.global_banner {
    position: relative;
    background: url('/web_static/translation_collaboration/banner.webp') no-repeat center center;
    background-size: cover;
    height: 360px;
    display: flex;
    align-items: center;
    color: #fff;
}
.global_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 46, 105, 0.85) 0%, rgba(10, 46, 105, 0.5) 60%, rgba(10, 46, 105, 0.2) 100%);
    z-index: 1;
}
.global_banner .container {
    position: relative;
    z-index: 2;
}
.global_banner h1 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
    animation: fadeInLeft 1s both;
    letter-spacing: 4px;
}
.global_banner p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInLeft 1s 0.2s both;
}
.global_banner .btn-custom {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: fadeInLeft 1s 0.4s both;
}
.global_banner .btn-custom:hover {
    color: #eec31b;
}
.global_banner .btn-custom .arrow-img {
    width: 20px;
    height: 20px;
    margin-left: 14px;
    transition: transform 0.3s ease;
}
.global_banner .btn-custom:hover .arrow-img {
    transform: translateX(6px);
}

/* Section 2: Pain Points */
.section_pain_points {
    padding: 80px 0;
    background: #fff;
}
.pain_points_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.pain_points_card {
    background: #f0f7fc;
    border-radius: 20px;
    padding: 28px 20px;
    width: calc(33.333% - 16px);
    min-height: 165px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-sizing: border-box;
}
.pain_points_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 59, 132, 0.08);
    background: #02377e;
}
.pain_points_card .icon_box {
    margin-bottom: 12px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pain_points_card p {
    font-size: 15px;
    color: #3d5475;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    max-width: 170px;
    min-height: 48px;
    transition: color 0.3s ease;
}
.pain_points_card:hover p {
    color: #ffffff;
}

/* Handle PNG Icon Colors on Card Hover (Convert blue parts to white using SVG filter) */
.pain_points_card img {
    transition: filter 0.3s ease;
}
.pain_points_card:hover img {
    filter: url(#blue-to-white);
}

/* Section 3: Process Stages */
.section_process {
    padding: 80px 0;
    background: #f4f6fa;
}
.process_container {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.process_card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 12px;
    box-shadow: 0 4px 15px rgba(15, 59, 132, 0.02);
    border: 1px solid rgba(15, 59, 132, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.process_card:hover {
    transform: translateY(-10px);
    background: #02377e;
    border-color: #02377e;
    box-shadow: 0 12px 30px rgba(2, 55, 126, 0.2);
}
.process_card h3 {
    font-size: 16px;
    line-height: 1.35;
    color: #333333;
    font-weight: 400;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    height: 42px;
    max-width: 100%;
    display: flex;
    align-items: center;
}
.process_card:hover h3 {
    color: #ffffff;
}
.process_card .divider {
    width: 36px;
    height: 2px;
    background-color: #e21a22; /* Red divider for standard cards */
    margin-bottom: 10px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}
.process_card:hover .divider {
    background-color: #eec31b; /* Yellow divider on hover */
}
.process_card p {
    font-size: 13px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
    letter-spacing: 1px;
}
.process_card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Section 4: Start Path Options */
.section_start_options {
    padding: 80px 0;
    background: #ffffff;
}
.section_subtitle {
    font-size: 15px;
    color: #64748b;
    text-align: center;
    max-width: 680px;
    margin: -25px auto 40px auto;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.options_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.option_card {
    background: #ffffff;
    border-radius: 20px 0 0 100px;
    padding: 0 24px;
    box-shadow: 0 4px 20px rgba(15, 59, 132, 0.02);
    border: 1px solid rgba(15, 59, 132, 0.12);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 170px;
}
.option_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 59, 132, 0.06);
}
.number_badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(254, 185, 185, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 24px;
    align-self: flex-start;
    margin-top: 32px;
}
.number_badge span {
    font-size: 26px;
    font-weight: 700;
    color: #ff9191;
    text-shadow: 1px 2px 4px rgba(255, 145, 145, 0.15);
    font-family: 'Outfit', 'Inter', sans-serif;
}
.option_card .card_content {
    padding: 32px 25px 0 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-self: stretch;
    box-sizing: border-box;
}
.card_main_title {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.sub_sections_container {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex: 1;
}
.sub_section_item {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sub_title {
    font-size: 14px;
    color: #0f3b84;
    font-weight: 600;
    margin: 0 0 4px 0;
}
.sub_desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
    flex: 1;
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
    letter-spacing: 1px;
}

/* Section 5: Target Business */
.section_5 {
    padding: 80px 0;
    background: #f4f6fa;
}

/* Section 6: Grid cards */
.section_6 {
    padding: 80px 0;
    background: #ffffff;
}
.section_6 .suitable_card {
    background: #f0f7fc !important;
}

/* Section CTA Bottom Banner */
.section_cta {
    padding: 40px 0;
    background: #02377e;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section_cta h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: 2px;
    padding-left: 2px;
}
.section_cta p {
    font-size: 12px;
    max-width: 680px;
    margin: 0 auto 22px auto;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-weight: 300;
}
.section_cta .btn-custom-white {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #02377e;
    font-weight: 400;
    padding: 10px 32px;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.section_cta .btn-custom-white:hover {
    background: #efc61b;
    color: #02377e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 198, 27, 0.3);
}
.suitable_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.suitable_card {
    background: #ffffff !important;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(15, 59, 132, 0.02);
}
.suitable_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 59, 132, 0.08) !important;
}
.suitable_card .icon_box {
    margin-bottom: 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.suitable_card p {
    font-size: 14px;
    color: #0f3b84;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Keyframes for animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .pain_points_card {
        width: calc(50% - 12px);
        padding: 30px 20px;
    }
    .process_container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .process_card {
        flex: none;
        width: calc(50% - 10px);
    }
    .suitable_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .global_banner {
        height: 320px;
        text-align: center;
    }
    .global_banner h1 {
        font-size: 28px;
    }
    .global_banner p {
        font-size: 13px;
    }
    .section_title {
        font-size: 26px;
    }
    .pain_points_container {
        gap: 16px;
    }
    .pain_points_card {
        width: 100%;
        max-width: 320px;
    }
    .process_card {
        width: 100%;
        max-width: 400px;
    }
    .section_pain_points, .section_process, .section_start_options, .section_5, .section_6 {
        padding: 60px 0;
    }
    .section_subtitle {
        font-size: 13px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    .option_card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        border-radius: 20px;
    }
    .number_badge {
        margin-right: 0;
        margin-bottom: 20px;
        width: 64px;
        height: 64px;
    }
    .number_badge span {
        font-size: 28px;
    }
    .sub_sections_container {
        flex-direction: column;
        gap: 20px;
    }
    .suitable_grid {
        grid-template-columns: 1fr;
    }
}
