/* ========================================
   Production Page - Animated Timeline
   ======================================== */

/* Enhanced Page Header */
.page-header--production {
    position: relative;
    padding: 120px 0 80px;
}

.page-header--production .page-header__bg {
    background-position: center 30% !important;
}

.page-header--production .page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.page-header--production .container {
    position: relative;
    z-index: 2;
}

.page-header__subtitle-production {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    opacity: 0.9;
}

/* Production Introduction */
.production-intro {
    padding: 80px 0;
    background: #ffffff;
}

.production-intro__content {
    max-width: 1000px;
    margin: 0 auto;
}

.production-intro__text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin-bottom: 20px;
}

/* Statistics Section */
.production-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    position: relative;
    overflow: hidden;
}

.production-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.production-stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-item__number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-item__label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
}

/* Process Steps Section */
.process-steps-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-title {
    text-align: center;
    margin-bottom: 60px;
}

.process-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-title p {
    font-size: 18px;
    color: #666;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Process Step Card */
.process-step {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid transparent;
}

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

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 195, 74, 0.2);
    border-top-color: #8bc34a;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.4);
}

/* Step Icon */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    transform: scale(1.1) rotate(10deg);
}

.step-icon i {
    font-size: 36px;
    color: #8bc34a;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon i {
    color: #ffffff;
}

/* Step Content */
.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.step-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8bc34a;
    font-weight: 700;
    font-size: 16px;
}

/* Packaging Types */
.packaging-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.packaging-type {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid #8bc34a;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header--production {
        padding: 100px 0 60px;
    }
    
    .production-intro,
    .production-stats,
    .process-steps-section {
        padding: 60px 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .packaging-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header__subtitle-production {
        font-size: 16px;
    }
    
    .production-intro__text {
        font-size: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item__number {
        font-size: 36px;
    }
    
    .stat-item__label {
        font-size: 14px;
    }
    
    .process-title h2 {
        font-size: 32px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step {
        padding: 35px 25px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
}
