/* Certification Process Page Specific Styles */

/* Process Hero Section */
.process-hero {
    width: 100%;
    display: block;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 134, 171, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-left: 80px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* Tab Navigation - 기존 company.css 스타일 상속 */

/* Process Content Section */
.process-content-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    background-image: url('../images/certification-process-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.3;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
}

.process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 30px;
    height: 30px;
    background: #2E86AB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    opacity: 0;
    transition: all 0.5s ease;
}

.process-step.active .step-number {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.step-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 80px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    min-width: 500px;
    width: 100%;
    max-width: 600px;
}

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

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #2E86AB;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
}

.step-arrow {
    margin-top: 20px;
    color: white;
    font-size: 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

.process-step.active .step-arrow {
    opacity: 1;
    transform: translateY(0);
}

.process-step:last-child .step-arrow {
    display: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(2px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-content {
        padding-left: 60px;
    }
    
    .process-content-section {
        padding: 100px 0;
    }
    
    .process-steps {
        gap: 50px;
    }
    
    .step-content {
        padding: 35px 50px;
        min-width: 350px;
    }
    
    .step-title {
        font-size: 22px;
    }
    
    .step-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        padding-left: 40px;
    }
    
    .process-content-section {
        padding: 80px 0;
    }
    
    .process-steps {
        gap: 40px;
    }
    
    .step-content {
        padding: 30px 40px;
        min-width: 300px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-subtitle {
        font-size: 16px;
    }
    
    .step-arrow {
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .process-hero {
        height: 300px;
    }
    
    .hero-content {
        padding-left: 20px;
    }
    
    .process-content-section {
        padding: 60px 0;
    }
    
    .process-steps {
        gap: 30px;
    }
    
    .step-content {
        padding: 25px 30px;
        min-width: 280px;
        border-radius: 15px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-subtitle {
        font-size: 15px;
    }
    
    .step-arrow {
        margin-top: 20px;
    }
}

/* Process Navigation */
.process-navigation {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #2E86AB;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2E86AB;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #2E86AB;
    transform: scale(1.2);
}

.nav-dot.active::before {
    opacity: 1;
    background: white;
}

.nav-dot:hover {
    transform: scale(1.1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .process-navigation {
        right: 20px;
        gap: 15px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .nav-dot::before {
        width: 4px;
        height: 4px;
    }
}
