/* ==================================================
   submission_info.css
   投稿辦法頁面專屬樣式
================================================== */

.submission-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(244, 226, 133, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(140, 179, 105, 0.20), transparent 34%),
        #fbfaf2;
}

/* 頁面標題區 */
.page-title-area {
    text-align: center;
    margin-bottom: 45px;
}

.page-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(140, 179, 105, 0.18);
    color: #4C2E05;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.page-intro {
    max-width: 760px;
    margin: 14px auto 0;
    color: #5f665f;
    font-size: 18px;
    line-height: 1.9;
}

/* 卡片 */
.submission-card {
    padding: 36px 38px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(140, 179, 105, 0.28);
    box-shadow: 0 12px 30px rgba(76, 46, 5, 0.10);
}

.submission-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #8CB369,
        #F4E285
    );
    color: #4C2E05;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(76, 46, 5, 0.12);
}

.submission-card h3 {
    margin: 0;
    color: #3A445D;
    font-size: 27px;
    font-weight: 800;
}

.submission-card p {
    color: #3A445D;
    font-size: 18px;
    line-height: 1.9;
}

/* 投稿流程 */
.process-flow {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.process-step {
    flex: 1;
    min-width: 0;
    padding: 24px 18px;
    border-radius: 20px;
    background: rgba(245, 247, 237, 0.95);
    border: 1px solid rgba(140, 179, 105, 0.22);
    text-align: center;
    transition: all 0.2s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(76, 46, 5, 0.10);
}

.step-circle {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #3A445D;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
}

.process-step h4 {
    color: #4C2E05;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}

.process-step p {
    color: #5f665f;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8CB369;
    font-size: 26px;
    font-weight: 900;
}


/* 下載區 */
.download-intro {
    margin-bottom: 24px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(245, 247, 237, 0.95);
    border: 1px solid rgba(140, 179, 105, 0.24);
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(76, 46, 5, 0.10);
    border-color: rgba(140, 179, 105, 0.45);
}

.download-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        #3A445D,
        #8CB369
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 900;
}

.download-text {
    flex: 1;
    min-width: 0;
}

.download-text h4 {
    color: #4C2E05;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.download-text p {
    color: #5f665f;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.download-btn {
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 999px;
    background: #F4E285;
    color: #4C2E05;
    font-size: 14px;
    font-weight: 800;
}

/* 投稿系統入口 */
.submit-cta-card {
    margin-top: 46px;
    padding: 42px 28px;
    text-align: center;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(140, 179, 105, 0.18),
            rgba(244, 226, 133, 0.26)
        ),
        #ffffff;
    border: 1px solid rgba(140, 179, 105, 0.28);
    box-shadow: 0 12px 30px rgba(76, 46, 5, 0.10);
}

.submit-cta-card h3 {
    color: #3A445D;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.submit-cta-card p {
    color: #5f665f;
    font-size: 18px;
    margin-bottom: 24px;
}
/* 第四步：完整投稿資料 */
.final-submit-step {
    margin-top: 18px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(245, 247, 237, 0.95);
    border: 1px solid rgba(140, 179, 105, 0.22);
}

.final-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.final-step-header h4 {
    color: #4C2E05;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.final-step-header p {
    color: #5f665f;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.final-circle {
    flex: 0 0 46px;
    margin: 0;
    background: #4C2E05;
}

/* 第四步下面三個上傳項目 */
.upload-requirement-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.upload-requirement-item {
    padding: 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(140, 179, 105, 0.22);
}

.upload-requirement-item h5 {
    color: #3A445D;
    font-size: 17px;
    font-weight: 800;
    margin: 8px 0 6px;
}

.upload-requirement-item p {
    color: #5f665f;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* RWD：平板 */
@media (max-width: 991px) {
    .submission-section {
        padding: 60px 0;
    }

    .submission-card {
        padding: 30px 26px;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 24px;
        margin: -2px 0;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }
}

/* RWD：手機 */
@media (max-width: 576px) {
    .page-intro {
        font-size: 16px;
        line-height: 1.8;
    }

    .submission-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .submission-card-header {
        align-items: flex-start;
        gap: 12px;
    }

    .card-number {
        min-width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 17px;
    }

    .submission-card h3 {
        font-size: 22px;
        line-height: 1.5;
    }

    .submission-card p {
        font-size: 16px;
    }

    .process-step {
        padding: 22px 18px;
    }

    .process-step h4 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 15px;
    }

    .download-card {
        align-items: flex-start;
        padding: 18px;
    }

    .download-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .download-btn {
        padding: 5px 12px;
        font-size: 13px;
    }

    .submit-cta-card h3 {
        font-size: 22px;
    }

    .submit-cta-card p {
        font-size: 16px;
    }
    .final-step-header {
        align-items: flex-start;
    }

    .upload-requirement-list {
        grid-template-columns: 1fr;
    }

    .final-submit-step {
        padding: 20px;
    }
    .process-arrow-down {
        display: flex;
        justify-content: center;
    }

    .process-arrow-down span {
        grid-column: auto;
    }
    
}


.requirement-label { 
    display: inline-block; 
    margin-bottom: 5px; 
    padding: 3px 10px; 
    border-radius: 999px; 
    background: #F4E285; 
    color: #4C2E05; 
    font-size: 13px; 
    font-weight: 800; 
}
.final-circle {
    flex: 0 0 46px;
    margin: 0;
    background: #3A445D;
    color: #ffffff;
}
.process-arrow-down {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 0 18px;
}

.process-arrow-down span {
    color: #8CB369;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.final-submit-step {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 20px;
    background: rgba(245, 247, 237, 0.95);
    border: 1px solid rgba(140, 179, 105, 0.22);
}

.final-step-header {
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.final-circle {
    flex: 0 0 46px;
    margin: 0 auto;
    background: #3A445D;
    color: #ffffff;
}