/**
 * 주식회사 옌 (YEN Corp) 웹사이트
 * 콘텐츠 제작 서비스 스타일
 */

/* 프로세스 스텝 스타일 */
.process-steps {
    position: relative;
    padding: 20px 0;
}

.process-step {
    position: relative;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background-color: #f9fafc;
    border-bottom: 1px solid #e9e0ea;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F9BF53;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 5px 10px rgba(249, 191, 83, 0.3);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.step-content {
    padding: 25px;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* 아이콘 스타일 */
.service-icon.content-icon {
    width: 60px;
    height: 60px;
    background-color: #F9BF53;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon.content-icon {
    position: relative;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-icon.content-icon.graphic {
    background-image: url('../images/icons/services/graphic-design.svg');
}

.service-icon.content-icon.web {
    background-image: url('../images/icons/services/web-design.svg');
}

.service-icon.content-icon.video {
    background-image: url('../images/icons/services/video-production.svg');
}

/* 제작 프로세스 스타일 */
.process-detail-section {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 60px;
}

.process-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-detail-item:last-child {
    margin-bottom: 0;
}

.process-detail-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 30px;
    background-color: #F9BF53;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(249, 191, 83, 0.3);
    position: relative;
    z-index: 2;
}

.process-detail-icon i {
    font-size: 28px;
    color: #fff;
}

.process-detail-content {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-detail-item:hover .process-detail-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.process-detail-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* 연결선 스타일 */
.process-detail-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 85px;
    left: 35px;
    width: 2px;
    height: calc(100% - 30px);
    background: linear-gradient(to bottom, #F9BF53 0%, rgba(249, 191, 83, 0.3) 100%);
    z-index: 1;
}

/* 반응형 스타일 */
@media (max-width: 767.98px) {
    .process-detail-item {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .process-detail-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .process-detail-item:not(:last-child):after {
        left: 35px;
        top: 85px;
        height: 30px;
    }
    
    .process-detail-content {
        padding: 20px;
    }
    
    .process-detail-content h3 {
        font-size: 1.2rem;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .step-header {
        padding: 15px 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .process-detail-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .process-detail-content {
        flex-direction: column;
        padding: 15px;
    }
    
    .process-icon {
        margin: 0 0 15px 0;
    }
}