/* Production Process Section Styles */
.production-process {
    position: relative;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
    overflow: hidden;
    padding: 80px 0;
}

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-seed {
    position: absolute;
    color: rgba(40, 167, 69, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-seed:nth-child(1) { animation-delay: 0s; }
.floating-seed:nth-child(2) { animation-delay: 2s; }
.floating-seed:nth-child(3) { animation-delay: 4s; }
.floating-seed:nth-child(4) { animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h6 {
    color: #28a745;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    position: relative;
}

.section-title h6::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

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

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Container */
.process-container {
    position: relative;
    z-index: 2;
}

/* Timeline Design */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Process Step */
.process-step {
    position: relative;
    margin: 50px 0;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1.0s; }
.process-step:nth-child(6) { animation-delay: 1.2s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Content */
.step-content {
    position: relative;
    width: 45%;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

/* Alternating Layout */
.process-step:nth-child(odd) .step-content {
    margin-left: auto;
    margin-right: 55%;
}

.process-step:nth-child(even) .step-content {
    margin-left: 55%;
    margin-right: auto;
}

/* Step Number & Icon */
.step-number-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    z-index: 10;
}

.process-step:nth-child(odd) .step-number-icon {
    right: -40px;
}

.process-step:nth-child(even) .step-number-icon {
    left: -40px;
}

.step-number {
    position: absolute;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    z-index: 1;
}

/* Step Header */
.step-header h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.step-subtitle {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Heritage Badges */
.heritage-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.heritage-badge {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.heritage-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .production-process {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }

    .step-number-icon {
        left: 0 !important;
        right: auto !important;
    }

    .heritage-badges {
        margin-top: 40px;
    }

    .heritage-badge {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .floating-seed {
        display: none;
    }

    .step-content {
        padding: 20px;
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .step-number-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon {
        font-size: 1.5rem;
    }

    .step-number {
        font-size: 1rem;
    }
}

/* Scroll Animation Trigger */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}