/* ====================== Global Reset & Base ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    font-size: 15px;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}
.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.section {
    padding: 70px 0;
}
.text-center {
    text-align: center;
}
.white-text {
    color: #ffffff;
}
.dark-bg {
    background-color: #111113;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 11px 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary-orange {
    background-color: #ff5800;
    color: #fff;
}
.btn-primary-orange:hover {
    background-color: #e64e00;
    transform: translateY(-2px);
}

/* Section Common */
.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff5800;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}
.section-heading h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

/* ====================== Top Bar ====================== */
.site-topbar {
    background: #111113;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.topbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-right {
    display: flex;
    gap: 22px;
    align-items: center;
}
.topbar-right a {
    color: #fff;
}
.topbar-right a:hover {
    color: #ff5800;
}

/* ====================== Header Navigation ====================== */
.site-header {
    background-color: #111113;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo img {
    height: 46px;
}
.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-menu {
    display: flex;
    gap: 28px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.nav-menu .menu-item.active a {
    color: #ff5800;
}
.nav-menu a:hover {
    color: #ff5800;
}
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
}

/* ====================== Page Banner ====================== */
.page-hero-banner {
    position: relative;
    padding: 90px 0;
    color: white;
    overflow: hidden;
}
.banner-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}
.banner-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    background: rgba(0,0,0,0.58);
    z-index: -1;
}
.breadcrumbs {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 10px;
}
.breadcrumb-current {
    color:#ff5800;
}
.page-hero-banner h1 {
    font-size: 46px;
    text-transform: uppercase;
    line-height: 1.1;
}
.banner-subtitle {
    color: #ff5800;
    font-size: 20px;
    font-weight: 500;
    margin: 6px 0 14px;
}
.banner-desc {
    max-width: 680px;
    opacity: 0.92;
}

/* ====================== Who We Are Section ====================== */
.who-row {
    gap: 50px;
}
.who-text-col, .who-image-col {
    flex: 1;
}
.who-text-col h2 {
    font-size: 29px;
    line-height: 1.25;
    margin-bottom: 20px;
}
.who-text-col p {
    margin-bottom: 16px;
    color: #444;
}
.who-image-col > img {
    margin-bottom: 26px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.feature-item {
    text-align: center;
}
.feature-item i {
    font-size: 28px;
    margin-bottom: 10px;
}
.feature-item span {
    font-size:13px;
    line-height:1.4;
}

/* ====================== Our Values Dark Section ====================== */
.our-values {
    position: relative;
    overflow: hidden;
}
.dark-bg-overlay-img {
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:-2;
}
.dark-bg-overlay-img img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.our-values::after {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    background:rgba(0,0,0,0.76);
    top:0;
    left:0;
    z-index:-1;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top:40px;
}
.value-card {
    text-align:center;
    color:#fff;
}
.value-card i {
    font-size:32px;
    margin-bottom:14px;
}
.value-card h4 {
    margin-bottom: 8px;
    font-size:16px;
}
.value-card p {
    font-size:13px;
    opacity:0.85;
}

/* ====================== Our Factory Gallery ====================== */
.factory-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap:16px;
    margin-top:30px;
}
.factory-caption {
    display:block;
    margin-top:8px;
    font-size:12px;
    text-align:center;
}

/* ====================== Certificates Section ====================== */
.cert-row {
    gap:50px;
}
.cert-image-col, .cert-text-col {
    flex:1;
}
.cert-logo-grid {
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:20px;
    margin-top:24px;
}
.cert-logo img {
    max-width:90px;
    margin:0 auto;
}

/* ====================== CTA Bar ====================== */
.cta-bar {
    padding:32px 0;
}
.cta-row {
    justify-content: space-between;
}
.cta-text-wrap {
    display:flex;
    align-items:center;
    gap:16px;
    color:#fff;
}
.cta-text-wrap i {
    font-size:26px;
}
.cta-text-wrap h3 {
    font-size:22px;
    margin-bottom:4px;
}

/* ====================== Footer ====================== */
.site-footer {
    background:#111113;
    color:#bbbbbb;
    padding:60px 0 30px;
}
.footer-top-wrap {
    display:grid;
    grid-template-columns: repeat(5,1fr);
    gap:32px;
}
.footer-widget h4 {
    color:#fff;
    margin-bottom:16px;
    font-size:16px;
}
.footer-widget p {
    margin-bottom:10px;
    font-size:13px;
}
.footer-widget li {
    margin-bottom:8px;
    font-size:13px;
}
.footer-widget a:hover {
    color:#ff5800;
}
.footer-social {
    display:flex;
    gap:10px;
    margin-top:14px;
}
.footer-social a {
    width:32px;
    height:32px;
    border:1px solid #444;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}
.footer-bottom-wrap {
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid #282828;
    display:flex;
    justify-content:space-between;
    font-size:13px;
}
.footer-bottom-links a {
    margin-left:16px;
}

/* ====================== Responsive Media Query ====================== */
@media screen and (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display:block;
    }
    .who-row {
        flex-direction:column;
    }
    .values-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .factory-gallery-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .cert-row {
        flex-direction:column;
    }
    .footer-top-wrap {
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:768px) {
    .page-hero-banner h1 {
        font-size:34px;
    }
    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .factory-gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .cert-logo-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .cta-row {
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
    .footer-top-wrap {
        grid-template-columns:1fr;
    }
    .footer-bottom-wrap {
        flex-direction:column;
        gap:12px;
        text-align:center;
    }
}
@media screen and (max-width:480px) {
    .values-grid {
        grid-template-columns:1fr;
    }
    .factory-gallery-grid {
        grid-template-columns:1fr;
    }
}