/* PAGE BASE */
.manufacturing-page {
    background: #f7f9fb;
}

/* HERO */
.ml-hero {
    background: linear-gradient(135deg, #0aa39f, #0bbcd6);
    padding: 80px 0;
    color: #fff;
}

    .ml-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .ml-hero p {
        font-size: 1.1rem;
        max-width: 520px;
    }

/* HERO IMAGE GRID */
.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hero-image-frame {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

    .hero-image-frame img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/* EXTRA CONTENT */
.ml-extra-content {
    padding: 70px 0;
}

    .ml-extra-content.light {
        background: #ffffff;
    }

    .ml-extra-content.highlight {
        background: #f1fbf9;
    }

    .ml-extra-content h2 {
        font-weight: 800;
        margin-bottom: 20px;
    }

    .ml-extra-content p {
        color: #555;
        line-height: 1.8;
    }

/* SIDE IMAGE */
.ml-image img {
    width: 100%;
    max-width: 500px;
    height: 260px;
    object-fit: contain;
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* PRODUCT */
.ml-product {
    padding: 80px 0;
}

.ml-product-card {
    background: #fff;
    border-radius: 22px;
    padding: 45px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.ml-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

    .ml-features div {
        background: #f1fbf9;
        padding: 18px;
        border-radius: 14px;
        text-align: center;
    }

    .ml-features span {
        display: block;
        font-size: 0.85rem;
        color: #555;
        margin-bottom: 6px;
    }

    .ml-features strong {
        display: block;
        font-size: 1rem;
        font-weight: 700;
        color: #009688;
    }

/* LOCATIONS */
.ml-locations {
    padding: 80px 0;
    background: #fff;
}

    .ml-locations h3 {
        text-align: center;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 45px;
    }

.ml-city-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.ml-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    background: #e6f7f2;
    color: #0a7c5a;
    font-size: 0.85rem;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-image-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-frame {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .ml-hero {
        text-align: center;
    }

        .ml-hero h1 {
            font-size: 2.3rem;
        }

    .ml-image {
        margin-top: 25px;
    }
}
