﻿
.company-info-section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.company-wrapper {
    position: relative;
    width: 100vw;

    height: 500px;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);

}


.badge {
    position: absolute;
    top: -110px;
    left: 150px;
    background: white;
    padding: 20px 40px;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.5px;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ?곗륫 ?대?吏 諛뺤뒪 (?붾㈃ ?곗륫 ?앷퉴吏, ?띿뒪??諛뺤뒪 ?꾩뿉 寃뱀튂寃? */
.image-box {
    position: absolute;
    top: 110px;
    right: 20px;
    /* ?붾㈃ ?곗륫 ?앷퉴吏 */
    width: 50%;
    /* ?붾㈃ ?덈퉬??60% */
    height: 500px;
    background: transparent;
    /* 諛곌꼍???쒓굅 */
    z-index: 3;
    /* ?띿뒪??諛뺤뒪 ?꾩뿉 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* ?대?吏媛 諛뺤뒪瑜?踰쀬뼱?섏? ?딅룄濡?*/
    border-radius: 40px 0 0 40px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #6c757d;
    font-size: 1.2rem;
}

.placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* 醫뚯륫 ?ㅻ젋吏 ?띿뒪??諛뺤뒪 (?붾㈃ ?쇱そ ?앸???75% ?덈퉬) */
.text-box {
    position: absolute;
    top: -80px;
    left: 0;
    /* ?붾㈃ ?쇱そ ?앸???*/
    width: 75%;
    /* ?붾㈃ ?덈퉬??75% */
    height: 800px;
    background: linear-gradient(135deg, #ff6b35 0%, #eb9635 100%);
    padding: 80px 100px 80px 60px;
    color: white;
    z-index: 2;
    /* ?대?吏蹂대떎 ?꾨옒 */
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-radius: 0 40px 0 0;
}



.text-box>* {
    position: relative;
    z-index: 2;
}

.text-box h2 {
    font-size: 2.3rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
}

.text-box h2 strong {
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.text-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 450;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.features {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.features span {
    font-size: 1.6rem;
    font-weight: 500;
    color: white;
}


.sidebar {
    position: absolute;
    top: 250px;
    right: 0;
    width: 50px;
    height: 200px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.animate-company-badge {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 2.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-company-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-company-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-company-sidebar {
    opacity: 0;
    transform: translateX(30px);
    transition: all 2.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-company-badge.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-company-image.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-company-text.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-company-sidebar.animated {
    opacity: 1;
    transform: translateX(0);
}


.image-box:hover img {
    transform: scale(1.05);
}


@media (max-width: 1200px) {
    .company-wrapper {
        height: 450px;
    }

    .text-box {
        padding: 60px 80px 60px 40px;
        width: 70%;
 
    }

    .text-box h2 {
        font-size: 1.6rem;
    }

    .image-box {
        width: 55%;

    }
}

@media (max-width: 992px) {
    .company-info-section {
        padding: 60px 20px;
    }

    .company-wrapper {
        position: static;
        width: 100%;
        height: auto;
        left: 0;
        transform: none;
        max-width: none;
        margin: 0;
    }

    .badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
        left: 0;
        top: 0;
    }

    .image-box {
        position: static;
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
        left: 0;
        right: 0;
    }

    .text-box {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        left: 0;
        top: 0;
        padding: 40px 30px;
    }

    .sidebar {
        display: none;
    }

    .features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .company-info-section {
        padding: 40px 15px;
        min-height: auto;
    }

    .text-box {
        padding: 30px 20px;
    }

    .text-box h2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .text-box p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 20px;
    }

    .features span {
        font-size: 0.75rem;
    }

    .image-box {
        height: 250px;
        border-radius: 20px 0 0 20px;
    }

    .badge {
        padding: 15px 25px;
        font-size: 14px;
        letter-spacing: 1px;
    }
}


@media (max-width: 576px) {
    .company-info-section {
        padding: 30px 10px;
    }

    .company-wrapper {
        height: auto;
        min-height: auto;
    }

    .text-box {
        padding: 25px 15px;
        height: auto;
        min-height: 400px;
    }

    .text-box h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .text-box p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .image-box {
        height: 200px;
        border-radius: 15px 0 0 15px;
    }

    .badge {
        padding: 12px 20px;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .features {
        gap: 8px;
        margin-top: 15px;
    }

    .features span {
        font-size: 0.7rem;
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
    }
}
