.bg-services {
    background-image: url('/img/page-header/bg_h_business.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* Services Page Specific Overrides - Force No Gradient */
.section-title {
    color: #2c3e50 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Force remove gradient from achievement numbers */
.achievement-number {
    color: #4ecdc4 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

/* Remove text-gradient class effects */
.text-gradient {
    color: #2c3e50 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

/* Service Row Styles - Zigzag Layout */
.service-row {
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.05);
}

.service-row:hover .service-image {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}


.service-content {
    padding: 3rem;
    background: #ffffff;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-heading {
    font-size: 2rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-desc {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.service-features li i {
    color: #4ecdc4;
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Enhanced Process Section */
.process-section {
    background: #2c3e50;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%234ecdc4" opacity="0.1"/><line x1="15" y1="0" x2="15" y2="30" stroke="%234ecdc4" stroke-width="0.5" opacity="0.05"/><line x1="0" y1="15" x2="30" y2="15" stroke="%234ecdc4" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>');
    opacity: 0.3;
}

.section-title-white {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

/* Process Section - Level 1 단순화 - 강제 적용 */
.process-step-enhanced {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.process-step-enhanced:hover {
    transform: translateY(-10px) scale(1.05) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(78, 205, 196, 0.5) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

.step-number-enhanced {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    font-weight: 900;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    line-height: 1.2;
    padding: 0;
}

/* 시작 색상과 끝 색상으로 단순화 */
.process-step-enhanced:nth-child(1) .step-number-enhanced {
    background: #4ecdc4;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.process-step-enhanced:nth-child(1) .step-number-enhanced::before {
    content: '📋';
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
}

.process-step-enhanced:nth-child(3) .step-number-enhanced {
    background: linear-gradient(135deg, #4ecdc4, #3498db);
    box-shadow: 0 12px 28px rgba(78, 205, 196, 0.25);
}

.process-step-enhanced:nth-child(3) .step-number-enhanced::before {
    content: '🎬';
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
}

.process-step-enhanced:nth-child(5) .step-number-enhanced {
    background: #3498db;
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
}

.process-step-enhanced:nth-child(5) .step-number-enhanced::before {
    content: '⚙️';
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
}

.process-step-enhanced:hover .step-number-enhanced {
    transform: scale(1.05);
}


.process-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: #4ecdc4;
}

.process-step-enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.process-step-enhanced:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* CTA Section Text Styles */
.cta-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.5px;
}

.cta-description {
    font-size: clamp(1rem, 3vw, 1.3rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem auto !important;
    opacity: 0.95;
    font-weight: 400;
}

/* Achievement Number Animation */
.achievement-number {
    transition: all 0.3s ease;
}

.achievement-number.counting {
    color: #4ecdc4 !important;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.achievement-number.completed {
    animation: achievementComplete 0.5s ease;
}

@keyframes achievementComplete {
    0% { transform: scale(1.1); }
    50% { 
        transform: scale(1.2); 
        color: #4ecdc4;
        text-shadow: 0 0 20px rgba(78, 205, 196, 0.6);
    }
    100% { 
        transform: scale(1); 
        color: #4ecdc4;
        text-shadow: none;
    }
}

/* Level 1 단순화 최종 강제 적용 - 고유 클래스 사용 */
.step-producer .step-number-enhanced {
    background: #ff6b6b !important;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3) !important;
}

.step-producer .step-number-enhanced::before {
    content: '✨' !important;
    font-size: 2.2rem !important;
    display: block !important;
    margin-bottom: 0 !important;
}

.step-director .step-number-enhanced {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4) !important;
    box-shadow: 0 12px 28px rgba(255, 107, 107, 0.25) !important;
}

.step-director .step-number-enhanced::before {
    content: '🎬' !important;
    font-size: 2.2rem !important;
    display: block !important;
    margin-bottom: 0 !important;
}

.step-production .step-number-enhanced {
    background: #4ecdc4 !important;
    box-shadow: 0 15px 30px rgba(78, 205, 196, 0.3) !important;
}

.step-production .step-number-enhanced::before {
    content: '⚙️' !important;
    font-size: 2.2rem !important;
    display: block !important;
    margin-bottom: 0 !important;
}
@media (max-width: 768px) {
    .page-header-section {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        letter-spacing: 0.5px;
    }
    
    .breadcrumb-enhanced {
        padding: 0.5rem 1rem;
        border-radius: 20px;
    }
    
    .breadcrumb-enhanced .breadcrumb-item {
        font-size: 0.85rem;
    }
    
    /* Mobile Service Row Styles */
    .service-image-container {
        height: 250px;
    }
    
    .service-content {
        height: auto;
        padding: 2rem;
    }
    
    .service-heading {
        font-size: 1.5rem;
    }
    
    .service-desc {
        font-size: 0.9rem;
    }
    
    /* Mobile Process Section */
    .process-step-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .step-number-enhanced {
        width: 60px;
        height: 60px;
        font-size: 0;
        padding: 0;
        margin: 0 auto 0.8rem;
    }
    
    .step-number-enhanced::before {
        font-size: 1.6rem !important;
        margin-bottom: 0 !important;
    }
    
    .process-arrow {
        font-size: 2rem;
    }
    
    /* Mobile Process Section */
    .process-step-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .step-number-enhanced {
        width: 100px;
        height: 100px;
        font-size: 0.7rem;
        padding: 0.3rem;
    }
    
    .process-arrow {
        font-size: 2rem;
    }
    
    /* Mobile CTA Section */
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 1rem !important;
    }
    
    .cta-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        letter-spacing: 0.3px;
    }
}