/**
 * Operational Timeline Section Styles
 * 
 * Extracted from agrovue-landing-html/css/style.css
 * Preserves 100% visual fidelity to the original design
 * 
 * @package Meridian_Africa
 * @since 1.0.0
 */

/* ===========================
   OPERATIONAL TIMELINE SECTION (HOME PAGE)
   =========================== */

/* Operational Section */
.operational-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.operational-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.operational-section .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2e8f33, #4ade80);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(46, 143, 51, 0.3);
}

.operational-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.operational-section .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Operational Timeline */
.operational-timeline {
    max-width: 1000px;
    margin: 60px auto 0;
}

.operational-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.operational-step:hover .step-number-large{
  color: #9da0a2;
}

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

.step-number-large {
    font-size: 120px;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    min-width: 150px;
    text-align: center;
    flex-shrink: 0;
}

.step-content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-content-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2e8f33, #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 143, 51, 0.3);
}

.step-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Reverse layout for alternating steps */
.operational-step.step-reverse {
    flex-direction: row-reverse;
}

.operational-step.step-reverse .step-content-wrapper {
    flex-direction: row-reverse;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .operational-step {
        gap: 30px;
    }

    .step-number-large {
        font-size: 100px;
        min-width: 120px;
    }

    .step-content-wrapper {
        padding: 30px;
        gap: 25px;
    }

    .step-icon-box {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .operational-section .section-header h2 {
        font-size: 36px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .operational-section {
        padding: 60px 0;
    }

    .operational-step {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .operational-step.step-reverse {
        flex-direction: column;
    }

    .step-number-large {
        font-size: 80px;
        min-width: auto;
    }

    .step-content-wrapper {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }

    .operational-step.step-reverse .step-content-wrapper {
        flex-direction: column;
    }

    .step-icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-text h3 {
        font-size: 19px;
    }

    .step-text p {
        font-size: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .operational-section {
        padding: 50px 0;
    }

    .operational-section .section-header h2 {
        font-size: 24px;
    }

    .operational-section .section-header p {
        font-size: 15px;
    }

    .step-number-large {
        font-size: 60px;
    }

    .step-content-wrapper {
        padding: 20px 15px;
    }

    .step-text h3 {
        font-size: 17px;
    }

    .step-text p {
        font-size: 13px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .operational-section {
        padding: 50px 0;
    }

    .operational-step {
        flex-direction: row;
        gap: 25px;
    }

    .operational-step.step-reverse {
        flex-direction: row-reverse;
    }

    .step-content-wrapper {
        flex-direction: row;
    }

    .operational-step.step-reverse .step-content-wrapper {
        flex-direction: row-reverse;
    }
}

