/* 회사 소개 페이지 스타일 */

/* 회사 소개 배너 */
.page-banner {
    background-color: var(--dark);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    background-image: url('../img/banner_company.webp');
    background-size: cover;
    background-position: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(45deg, rgba(46, 196, 182, 0.3) 0%, rgba(46, 196, 182, 0) 50%),
        linear-gradient(45deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0) 50%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content h1 span {
    color: var(--primary);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* 회사 소개 섹션 */
.company-intro {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-text {
    flex: 1;
}

.intro-text h2, .intro-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.intro-text h3 {
    font-size: 2rem;
}

.intro-text h2 .highlight, .intro-text h3 .highlight {
    color: var(--primary);
    position: relative;
}

.intro-text h2 .highlight::after, .intro-text h3 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(var(--primary-rgb), 0.15);
    z-index: -1;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* 프리미엄 타이틀 스타일 - 업계 1위 전문 솔루션 */
.premium-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #2EC4B6, #2A9D8F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 5px;
    border-bottom: 2px solid #2EC4B6;
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(46, 196, 182, 0.3);
}

.premium-highlight {
    position: relative;
    display: inline-block;
    color: inherit;
}

.premium-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to right, rgba(46, 196, 182, 0.3), rgba(42, 157, 143, 0.3));
    z-index: -1;
    border-radius: 10px;
}

.premium-title::before {
    content: '★';
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 1rem;
    color: #2A9D8F;
    transform: rotate(0deg) scale(1.2);
}

.intro-image {
    flex: 1;
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: scale(1.02);
}

/* 섹션 타이틀 스타일 */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.section-title h2 .highlight {
    color: var(--primary);
    position: relative;
}

.section-title h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(var(--primary-rgb), 0.15);
    z-index: -1;
}

.section-title p {
    font-size: 1.1rem;
    color: #bababa;
    max-width: 700px;
    margin: 0 auto;
}

/* 회사 설립 배경 섹션 */
.company-mission {
    padding: 100px 0;
    background-color: var(--section-bg-2);
    position: relative;
}

.company-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.05) 0%, rgba(46, 196, 182, 0) 50%),
        linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0) 50%);
    opacity: 0.5;
    z-index: 0;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.mission-card {
    display: flex;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    gap: 30px;
    align-items: flex-start;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background-color: rgba(var(--primary-rgb), 0.2);
    transform: scale(1.1);
}

.mission-icon i {
    font-size: 30px;
    color: var(--primary);
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.mission-card:hover .mission-text h3 {
    color: var(--primary);
}

.mission-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

/* 우리의 철학 섹션 */
.company-philosophy {
    padding: 100px 0;
    background-color: var(--section-bg-1);
    overflow: hidden;
    position: relative;
}

.company-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(45deg, rgba(46, 196, 182, 0.3) 0%, rgba(46, 196, 182, 0) 50%),
        linear-gradient(45deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0) 50%);
    z-index: 1;
    /* iOS Safari 최적화 */
    -webkit-backdrop-filter: none;
}


.philosophy-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* iOS Safari를 위한 별도 스타일 */
@supports (-webkit-touch-callout: none) {
    .philosophy-content {
        z-index: 5;
        /* iOS에서 더 높은 z-index로 설정 */
        position: relative;
    }

    .philosophy-text, .philosophy-image {
        position: relative;
        z-index: 5;
    }

    .philosophy-text h3, .philosophy-text p {
        position: relative;
        z-index: 2;
    }

    .section-title {
        position: relative;
        z-index: 5;
    }
}

/* iOS 디바이스를 위한 특화 스타일 */
.ios-device .philosophy-content {
    z-index: 5 !important;
    background-color: transparent !important;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

/* iOS에서 글자가 더 잘 보이도록 텍스트 스타일 강화 */
.ios-device .philosophy-text {
    z-index: 10 !important;
    position: relative !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
    padding: 25px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    /* blur 효과 제거 - 흐릿함 문제 해결 */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* iOS에서 premium-title 클래스를 위한 특별 스타일 */
.ios-device .philosophy-text .premium-title {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #2EC4B6 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #2EC4B6 !important;
    padding-bottom: 5px !important;
}

/* iOS에서 premium-highlight 클래스를 위한 특별 스타일 */
.ios-device .philosophy-text .premium-highlight {
    color: #FF6B35 !important;
    position: relative !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.ios-device .philosophy-text .premium-highlight::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 8px !important;
    background-color: rgba(255, 107, 53, 0.3) !important;
    border-radius: 4px !important;
    z-index: -1 !important;
}

.ios-device .philosophy-text h3 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    font-size: 2.2rem !important;
}

.ios-device .philosophy-text p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
}

/* iOS에서 배경 이미지가 더 밝게 보이도록 설정 */
.ios-device.company-philosophy {
    background-blend-mode: lighten !important;
    position: relative !important;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

.philosophy-text h3 .highlight {
    color: var(--primary);
    position: relative;
}

.philosophy-text h3 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(var(--primary-rgb), 0.15);
    z-index: -1;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.7;
}

.philosophy-image {
    flex: 1;
    position: relative;
}

.philosophy-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.rounded-image {
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-image:hover img {
    transform: scale(1.02);
}

/* 핵심 가치 섹션 */
.core-values {
    padding: 100px 0;
    background-color: var(--section-bg-2);
    position: relative;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.05) 0%, rgba(46, 196, 182, 0) 50%),
        linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0) 50%);
    opacity: 0.5;
    z-index: 0;
}

.values-content {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.values-image {
    flex: 1;
    position: relative;
}

.values-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.values-image:hover img {
    transform: scale(1.02);
}

.value-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: rgba(var(--primary-rgb), 0.2);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 30px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: var(--primary);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .intro-content, .philosophy-content, .values-content {
        flex-direction: column;
    }

    .intro-text, .intro-image, .philosophy-text, .philosophy-image {
        width: 100%;
    }

    .values-image {
        margin-bottom: 30px;
    }


    .mission-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mission-icon {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 120px 0 80px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .intro-text h2, .intro-text h3, .philosophy-text h3 {
        font-size: 1.8rem;
    }

    .premium-title {
        font-size: 1.8rem;
    }

    .premium-title::before {
        top: -10px;
        left: -10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .value-card, .mission-card {
        padding: 20px;
    }

    .value-icon, .mission-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i, .mission-icon i {
        font-size: 24px;
    }

    .premium-title {
        font-size: 1.6rem;
    }

    .premium-highlight::after {
        height: 8px;
    }
}

/* Remove all animation classes */
.animate,
.animated,
.animate-fade-in,
.animate-fade-in.animated,
.animate-slide-up,
.animate-slide-up.animated,
.animate-slide-right,
.animate-slide-right.animated,
.animate-slide-left,
.animate-slide-left.animated,
.animate-scale,
.animate-scale.animated,
.delay-100,
.delay-200,
.delay-300,
.delay-400,
.delay-500,
.scroll-reveal,
.scroll-reveal.revealed,
section.scroll-reveal,
section.scroll-reveal.revealed,
.section-header.scroll-reveal,
.service-card.scroll-reveal,
.service-card.scroll-reveal.revealed,
.about-content.scroll-reveal,
.about-content.scroll-reveal.revealed,
img.scroll-reveal,
img.scroll-reveal.revealed,
.timeline-item,
.timeline-item.animated,
.value-card,
.value-card.animated,
.team-member,
.team-member.animated,
.vision-content,
.vision-content.animated,
.cta-content,
.cta-content.animated {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* 약속과 확신 섹션 */
.commitment-section {
    padding: 100px 0;
    background-color: var(--section-bg-1);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1) 0%, rgba(46, 196, 182, 0) 50%),
        linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0) 50%);
    z-index: 0;
}

.commitment-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-box {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.commitment-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(var(--primary-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    position: relative;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.commitment-icon i {
    font-size: 36px;
    color: var(--primary);
}

.commitment-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.commitment-title .highlight {
    color: var(--primary);
    position: relative;
}

.commitment-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(var(--primary-rgb), 0.15);
    z-index: -1;
}

.commitment-text {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.5;
}

.commitment-text strong {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.commitment-text strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(var(--primary-rgb), 0.2);
}

.commitment-message {
    text-align: left;
    margin-bottom: 35px;
    padding: 0 10px;
}

.commitment-message p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.solution-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.solution-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.solution-button i {
    color: var(--primary);
    font-size: 18px;
}

.solution-button:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* 미디어 쿼리 추가 */
@media (max-width: 768px) {
    .commitment-box {
        padding: 35px 25px;
    }

    .commitment-title {
        font-size: 2rem;
    }

    .commitment-text {
        font-size: 1.2rem;
    }

    .solution-buttons {
        flex-direction: column;
        width: 100%;
    }

    .solution-button {
        width: 100%;
        justify-content: center;
    }
}

/* iOS 디바이스에서 섹션 제목이 더 잘 보이도록 설정 */
.ios-device .section-title {
    position: relative;
    z-index: 10 !important;
    background-color: rgba(0, 0, 0, 0.05) !important;
    padding: 20px !important;
    border-radius: 15px !important;
    margin-bottom: 30px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.ios-device .section-title h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    font-size: 2.2rem !important;
}

.ios-device .section-title p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}