@charset "UTF-8";

/* 메인 서비스 스플릿 섹션 */
.main-services-split {
    display: flex;
    width: 100%;
    min-height: 600px;
    background-color: #111;
    color: #fff;
    overflow: hidden;
}

.split-panel {
    flex: 1;
    position: relative;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.split-panel:hover {
    flex: 1.2;
}

.split-panel .panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

.split-panel.panel-design .panel-bg {
    background-image: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.split-panel.panel-development .panel-bg {
    background-image: linear-gradient(135deg, #0066FF 0%, #00f2fe 100%);
}

.split-panel:hover .panel-bg {
    opacity: 0.4;
    transform: scale(1.05);
}

.split-panel .panel-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
    width: 100%;
}

.split-panel .icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.split-panel.panel-design:hover .icon-wrapper {
    transform: translateY(-10px);
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
}

.split-panel.panel-development:hover .icon-wrapper {
    transform: translateY(-10px);
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.5);
}

.split-panel .panel-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.split-panel .panel-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.7);
    word-break: keep-all;
}

.split-panel:hover .panel-desc {
    color: rgba(255, 255, 255, 0.9);
}

.split-panel .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.split-panel .service-list li {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-family: var(--font-en);
    display: flex;
    align-items: center;
}

.split-panel:hover .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.split-panel .service-list li .check-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    transition: opacity 0.3s ease, stroke 0.3s ease;
}

.split-panel.panel-design:hover .service-list li .check-icon {
    opacity: 1;
    stroke: #FF8E53;
}

.split-panel.panel-development:hover .service-list li .check-icon {
    opacity: 1;
    stroke: #00f2fe;
}

@media (max-width: 991px) {
    .main-services-split {
        flex-direction: column;
    }
    .split-panel {
        min-height: 400px;
        padding: 60px 20px;
    }
    .split-panel:hover {
        flex: 1;
    }
    .split-panel .panel-bg {
        opacity: 0.3;
    }
}
