﻿.company-section {
    background-color: #fff;
    padding: 80px 0 70px;
    font-family: 'Noto Sans TC', sans-serif;
    color: #000;
}

.company-container {
    width: 82%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    margin: 0;
    padding-bottom: 5%;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.923px;
}

.company-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 25%;
}

.company-text {
    width: 60%;
}

.company-text,
.company-vision {
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 2.56px;
}

    .company-text p,
    .company-vision p {
        margin: 0 0 10px;
    }

.section-title {
    margin: 0 0 18px;
    padding-left: 12px;
    border-left: 5px solid #e60012;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.923px;
}

.company-img {
    width: 50%;
    text-align: center;
    align-self: flex-start;
}

    .company-img img {
        width: 100%;
        max-width: 722px;
        height: auto;
        display: inline-block;
    }

.company-vision {
    margin-bottom: 10%;
}

.enterprise-img-area {
    text-align: center;
}

.enterprise-img {
    width: 100%;
    max-width: 430px;
    height: auto;
    display: inline-block;
}

@media (max-width: 1600px) {
    .company-container {
        width: 68%;
    }

    .main-title {
        font-size: 24px;
        padding-bottom: 35px;
    }

    .company-text,
    .company-vision {
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 22px;
    }
}

/* Tablet */
@media screen and (max-width: 768px) {
    .company-section {
        padding: 50px 0;
    }

    .company-container {
        width: 88%;
    }

    .main-title {
        font-size: 24px;
        padding-bottom: 35px;
    }

    .company-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 70px;
    }

    .company-text {
        width: 100%;
    }

    .company-img {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
    }

        .company-img img {
            display: block;
            margin: 0 auto;
            width: 100%;
            max-width: 360px;
            height: auto;
        }

    .company-text,
    .company-vision {
        font-size: 14px;
        line-height: 1.85;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 18px;
    }

    .enterprise-img {
        max-width: 330px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .company-section {
        padding: 40px 0;
    }

    .company-container {
        width: 90%;
    }

    .main-title {
        font-size: 22px;
    }

    .company-row {
        align-items: center;
        margin-bottom: 55px;
    }

    .company-img {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
    }

        .company-img img {
            display: block;
            margin: 0 auto;
            width: 100%;
            max-width: 300px;
            height: auto;
        }

    .enterprise-img {
        max-width: 280px;
    }
}

/* ==============================
   Yellow Section Button
   ============================== */

.yellow-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.more-btn {
    position: absolute;
    left: 12%;
    bottom: 18%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 30px);
    min-width: clamp(120px, 13vw, 170px);
    height: clamp(34px, 3.5vw, 48px);
    padding: 0 clamp(18px, 2.2vw, 28px);
    background-color: #fff;
    color: #e60012;
    border: 2px solid #fff;
    border-radius: 999px;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: clamp(14px, 1.25vw, 18px);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
}

    .more-btn:hover {
        background-color: #e60012;
        color: #fff;
        border-color: #e60012;
    }

.more-arrow {
    font-size: clamp(18px, 2vw, 30px);
    line-height: 1;
    transition: transform 0.3s ease;
}

.more-btn:hover .more-arrow {
    transform: translateX(5px);
}

@media (max-width: 1600px) {
    .more-btn {
        left: 10%;
        bottom: 18%;
        min-width: 30px;
        height: 35px;
        padding: 0 22px;
        font-size: 14px;
        gap: 18px;
        letter-spacing: 1px;
    }

    .more-arrow {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .more-btn {
        left: 4%;
        bottom: 11%;
        min-width: 20px;
        height: 20px;
        padding: 0 22px;
        font-size: 9px;
        gap: 18px;
        letter-spacing: 1px;
    }

    .more-arrow {
        font-size: 9px;
    }
}

@media screen and (max-width: 480px) {
    .more-btn {
        left: 2%;
        bottom: 10%;
        min-width: 20px;
        height: 20px;
        padding: 0 18px;
        font-size: 6px;
        gap: 14px;
    }

    .more-arrow {
        font-size: 6px;
    }
}
