/* ========== Supply System Page Styles ========== */

.page-supply-system {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-supply-system .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.common-section {
    padding: 80px 0;
    background: #fff;
}

.common-section.bg-light {
    background: #f9f9f9;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* Hero Section */
.supply-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.breadcrumbs {
    font-size: 14px;
    opacity: 0.9;
}

/* Supply Grid Layout */
.supply-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.supply-grid.reverse {
    flex-direction: row-reverse;
}

.supply-content {
    flex: 1;
    max-width: 500px;
}

.supply-intro .supply-content,
.supply-value:nth-of-type(odd) .supply-content {
    margin-left: 0;
    margin-right: auto;
}

.supply-value:nth-of-type(even) .supply-content {
    margin-left: auto;
    margin-right: 0;
}

.supply-media {
    flex: 1;
}

.supply-media img {
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Staggered Images (Removed) - Now using .grid-2x2 */

/* Process Diagram (New) */
.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

/* Connecting line attempt */
.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #f3821a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    color: #f3821a;
    box-shadow: 0 4px 10px rgba(243, 130, 26, 0.2);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.process-step p {
    font-size: 14px;
    color: #666;
}

/* 2x2 Image Grid */
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid-2x2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-2x2 img:hover {
    transform: scale(1.03);
}

/* Efficiency */
.supply-media .main-img {
    width: 100%;
    height: auto;
}

/* CTA */
.supply-cta {
    background: #222;
    padding: 80px 0;
    color: #fff;
    text-align: left;
}

.cta-content {
    max-width: 800px;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.cta-desc {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.common-btn.primary {
    display: inline-block;
    background: #f3821a;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s;
}

.common-btn.primary:hover {
    background: #e07000;
}

/* Responsive */
@media (max-width: 768px) {
    .supply-content {
        max-width: 100%;
    }

    .supply-intro .supply-content,
    .supply-value:nth-of-type(odd) .supply-content,
    .supply-value:nth-of-type(even) .supply-content {
        margin-left: auto;
        margin-right: auto;
    }

    .supply-grid,
    .supply-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .staggered-images {
        height: 300px;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps:before {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }
}