/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    background: #fff;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
    background: #111;
    color: #fff;
    padding: 9px 20px;
    font-size: 12px;
    letter-spacing: 0.04em;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-wrap { display: flex; overflow: hidden; }
.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollticker 30s linear infinite;
}
.marquee-text a { color: #ccc; text-decoration: underline; }
@keyframes scrollticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1340px;
    margin: 0 auto;
    gap: 16px;
}
.logo img { height: 42px; width: auto; }

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}
.main-nav > li { position: relative; }
.main-nav > li > a {
    display: block;
    padding: 10px 13px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #222;
    transition: color .2s;
    white-space: nowrap;
}
.main-nav > li > a:hover { color: #000; }
.main-nav .has-dd > a::after { content: ' ▾'; font-size: 9px; opacity: .7; }

/* Dropdown */
.dd-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 210px;
    z-index: 999;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.has-dd:hover .dd-menu { display: block; }
.dd-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    color: #ccc;
    letter-spacing: .03em;
    transition: color .2s, background .2s;
}
.dd-menu li a:hover { color: #fff; background: rgba(255,255,255,.07); }

/* Header CTA */
.hdr-cta {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 11px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    border: 2px solid #000;
    white-space: nowrap;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}
.hdr-cta:hover { background: transparent; color: #000; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #222;
    transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
    display: none;
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.mobile-menu.open {
    display: block;
    max-height: 600px;
}
.mobile-menu ul li a {
    display: block;
    padding: 13px 22px;
    color: #ccc;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .2s, background .2s;
}
.mobile-menu ul li a:hover { color: #fff; background: rgba(255,255,255,.04); }

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
section { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 52px; }
.section-title h2 {
    font-size: clamp(1.75rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.15;
    margin-bottom: 14px;
}
.section-title p { font-size: 16px; color: #666; max-width: 580px; margin: 0 auto; }
.divider { width: 48px; height: 3px; background: #000; margin: 14px auto 0; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid #000;
    transition: background .25s, color .25s;
}
.btn-primary:hover { background: transparent; color: #000; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #000;
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid #000;
    transition: background .25s, color .25s;
}
.btn-outline:hover { background: #000; color: #fff; }

.btn-white {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid #fff;
    transition: background .25s, color .25s;
}
.btn-white:hover { background: transparent; color: #fff; }

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid #fff;
    transition: background .25s, color .25s;
}
.btn-outline-white:hover { background: #fff; color: #000; }

/* =============================================
   HERO
   ============================================= */
.hero {
    /* background: #f5f5f5; */
    text-align: center;
    padding: 50px 20px 86px;
}
.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #555;
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(2.25rem, 9vw, 6rem);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.08;
    color: #000;
    max-width: 840px;
    margin: 0 auto 22px;
}
.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #444;
    max-width: 680px;
    margin: 0 auto 14px;
    line-height: 1.7;
}
.hero-tags {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #888;
    max-width: 600px;
    margin: 0 auto 28px;
}
.hero-body {
    font-size: 18px;
    color: #555;
    max-width: 560px;
    margin: 0 auto 16px;
    line-height: 1.8;
}
.hero-body:last-of-type { margin-bottom: 38px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   WHAT WE MANUFACTURE
   ============================================= */
.manufacture-section { background: #edeef0; }
.manufacture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mfg-card:last-child:nth-child(3n+1) { grid-column: 2; }
.mfg-card { position: relative; overflow: hidden; border-top: 4px solid #000; }
.mfg-card > a { display: block; overflow: hidden; }
.mfg-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .45s ease;
    filter: grayscale(100%);
}
.mfg-card:hover img { transform: scale(1.07); filter: grayscale(100%); }
.mfg-body { padding: 16px 16px 18px; }
.mfg-body h3 {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 7px;
}
.mfg-body p { font-size: 16px; color: #666; line-height: 1.6; margin-bottom: 11px; }

/* Card 1, 4, 7 — white */
.mfg-card { background: #fff; border-top-color: #000; }

/* Card 2, 5 — light gray */
/* .mfg-card:nth-child(3n+2) { background: #f4f4f4; border-top-color: #888; } */
.mfg-card:nth-child(3n+2) .mfg-body h3 { color: #222; }
.mfg-card:nth-child(3n+2) .mfg-body p { color: #666; }

/* Card 3, 6 — dark/inverted */
/* .mfg-card:nth-child(3n+3) { background: #111; border-top-color: #fff; } */
/* .mfg-card:nth-child(3n+3) .mfg-body h3 { color: #fff; } */
/* .mfg-card:nth-child(3n+3) .mfg-body p { color: #aaa; } */
/* .mfg-card:nth-child(3n+3) .card-btn-enquire { background: #fff; color: #000; border-color: #fff; } */
.mfg-card .card-btn-enquire:hover {  color: #000; }
/* .mfg-card .card-link { color: #fff; border-color: #fff; } */
.mfg-card .card-link:hover { background: #fff; color: #000; }

.card-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #000;
    border: 2px solid #000;
    padding: 8px 14px;
    background: transparent;
    transition: background .2s, color .2s;
}
.card-link:hover { background: #000; color: #fff; }
.card-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.card-btn-enquire {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid #000;
    transition: background .2s, color .2s;
}
.card-btn-enquire:hover { background: transparent; color: #000; }

/* =============================================
   MANUFACTURING PROCESS
   ============================================= */
.process-section { background: #fff; }
.process-grid {
    --col-gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px var(--col-gap);
}
.process-step {
    text-align: center;
    position: relative;
    padding: 0 12px;
}
/* Horizontal connector lines through circle centers */
.process-step::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(-1 * var(--col-gap) / 2);
    right: calc(-1 * var(--col-gap) / 2);
    height: 1px;
    background: #e0e0e0;
    z-index: 0;
}
.process-step:nth-child(3n+1)::before { left: 50%; right: calc(-1 * var(--col-gap) / 2); }
.process-step:nth-child(3n)::before   { left: calc(-1 * var(--col-gap) / 2); right: 50%; }
.step-icon-wrap {
    position: relative;
    display: inline-flex;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    z-index: 1;
}
.step-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-circle svg {
    width: 34px;
    height: 34px;
    stroke: #333;
}
.step-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}
.process-step h3 {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #111;
}
.process-step p { font-size: 14px; color: #666; line-height: 1.75; }
.process-step p a { color: #2563eb; text-decoration: underline; }
.process-step p a:hover { color: #1d4ed8; }

/* =============================================
   BLOG HIGHLIGHT
   ============================================= */
.blog-section { background: #fff; }
.blog-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-text {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}
.blog-text .tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    margin-bottom: 18px;
}
.blog-text h2 {
    font-size: clamp(1.75rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #111;
    margin-bottom: 18px;
}
.blog-text p { font-size: 18px; color: #555; line-height: 1.85; margin-bottom: 14px; }
.blog-text .btn-primary { margin-top: 8px; }
.blog-img img { width: 100%; height: 380px; object-fit: cover; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: #f4f4f4; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.why-card {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    padding: 28px 24px 28px 24px;
    overflow: hidden;
}
.why-num {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 72px;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    letter-spacing: -.02em;
    user-select: none;
}
.why-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 10px;
    position: relative;
}
.why-card p { font-size: 16px; color: #666; line-height: 1.75; position: relative; }

/* =============================================
   TEXT SECTION (centered)
   ============================================= */
.text-section { background: #fff; }
.text-section-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.text-section-inner h2 {
    font-size: clamp(1.75rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}
.text-section-inner p { font-size: 18px; color: #555; line-height: 1.9; margin-bottom: 16px; }

/* =============================================
   BUDGET SECTION (dark)
   ============================================= */
.budget-section { background: #f7f7f7; }
.budget-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.budget-inner h2 {
    font-size: clamp(1.75rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: .25rem;
    text-transform: uppercase;  
    margin-bottom: 20px;
    line-height: 1.2;
}
.budget-inner p { font-size: 18px; color: #aaa; line-height: 1.9; margin-bottom: 16px; }
.budget-inner .btn-white { margin-top: 10px; }

/* =============================================
   PREMIUM SERVICES
   ============================================= */
.premium-section { background: #000; }
.premium-inner {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.premium-inner h2 {
    font-size: clamp(1.75rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.premium-inner p { font-size: 18px; color: #aaa; line-height: 1.9; margin-bottom: 20px; }

/* =============================================
   EXPERIENCE SECTION
   ============================================= */
.experience-section { background: #fff; }
.experience-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}
.experience-text {
    flex: 1;
    text-align: left;
}
.experience-text h2 {
    font-size: clamp(1.75rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.15;
    margin-bottom: 24px;
}
.experience-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 14px;
}
.experience-text .btn-primary { margin-top: 10px; }
.experience-img {
    flex: 1;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team-section { background: #f7f7f7; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.team-card { text-align: center; }
.team-card-media {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #f4f4f4;
}
.team-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
    transition: opacity .35s;
}
.team-card-bio {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f4f4f4;
    opacity: 0;
    transition: opacity .35s;
}
.team-card-bio p {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    text-align: center;
}
.team-card:hover .team-card-media img { opacity: 0; filter: grayscale(100%); }
.team-card:hover .team-card-bio { opacity: 1; }
.team-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 4px;
}
.team-card span { font-size: 13px; color: #888; letter-spacing: .05em; text-transform: uppercase; }

/* =============================================
   PARTNER CTA
   ============================================= */
.partner-section {
    background: #fff;
    text-align: center;
    padding: 96px 20px;
}
.partner-section .container {
    max-width: 800px;
    margin: 0 auto;
}
.partner-section h2 {
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.15;
}
.partner-section > .container > p {
    font-size: 18px;
    color: #555;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.85;
}
.partner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: #f4f4f4; }

/* Form */
.contact-form-box {
    background: #fff;
    padding: 36px;
    border: 1px solid #e0e0e0;
    max-width: 680px;
    margin: 0 auto 48px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    color: #333;
    font-family: inherit;
    outline: none;
    border-radius: 0;
    transition: border-color .2s;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #000; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-submit-wrap { text-align: center; margin-top: 8px; }
.form-submit {
    background: #000;
    color: #fff;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid #000;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, color .2s;
}
.form-submit:hover { background: transparent; color: #000; }

/* Contact info row */
.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
    flex-wrap: wrap;
}
.contact-info-item h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 6px;
}
.contact-info-item p,
.contact-info-item a { font-size: 15px; color: #666; line-height: 1.7; }
.contact-info-item a:hover { color: #000; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: #fff; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 22px 4px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
}
.faq-toggle {
    flex: 0 0 auto;
    margin-left: 20px;
    font-size: 22px;
    font-weight: 400;
    color: #888;
    transition: transform .2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { font-size: 16px; color: #555; line-height: 1.8; padding: 0 4px 22px; }

/* =============================================
   FINAL CTA (dark)
   ============================================= */
.final-cta-section {
    background: #0d0d0d;
    text-align: center;
    padding: 96px 20px;
    margin-bottom: 3rem;
}
.final-cta-section .container {
    max-width: 700px;
    margin: 0 auto;
}
.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.final-cta-section p {
    font-size: 16px;
    color: #999;
    margin: 0 auto 32px;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .final-cta-section { padding: 60px 16px; }
    .final-cta-section h2 { font-size: 1.9rem; }
}

/* =============================================
   CERTIFICATIONS
   ============================================= */
.certifications-section { background: #fff; padding: 50px 0; }
.cert-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}
.cert-item img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .cert-row { gap: 28px; }
    .cert-item img { width: 80px; height: 80px; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #1a1a1a; color: #888; padding: 64px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 52px;
}
.fw-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}
.fw-divider { width: 34px; height: 2px; background: #444; margin-bottom: 20px; }
.footer-about-text { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { font-size: 14px; color: #666; transition: color .2s; }
.footer-links li a:hover { color: #fff; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-start; }
.soc-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: background .2s, border-color .2s, color .2s;
}
.soc-btn:hover { background: #fff; border-color: #fff; color: #000; }
.soc-btn svg { width: 15px; height: 15px; }
.footer-email { font-size: 14px; color: #666; margin-top: 16px; }
.footer-email a { color: #888; transition: color .2s; }
.footer-email a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #4a4a4a; }
.footer-bot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bot-links a { font-size: 13px; color: #4a4a4a; transition: color .2s; }
.footer-bot-links a:hover { color: #fff; }

/* =============================================
   RESPONSIVE — LARGE TABLET (≤1100px)
   ============================================= */
@media (max-width: 1100px) {
    .manufacture-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .experience-inner { gap: 40px; }
}

/* =============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================= */
@media (max-width: 900px) {
    /* Hover-only dropdowns don't work on touch tablets, and the desktop
       nav (8 items, nowrap) doesn't fit this width — switch to the
       hamburger + mobile menu here instead of waiting for ≤768px. */
    .main-nav, .hdr-cta { display: none; }
    .hamburger { display: flex; }

    section { padding: 64px 0; }
    .hero { padding: 80px 20px 68px; }
    .partner-section { padding: 72px 20px; }

    .experience-inner { flex-direction: column; gap: 32px; }
    .experience-img { order: -1; }
    .experience-img img { height: 300px; }

    .blog-text { width: 90%; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 28px;
    }

    .manufacture-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .mfg-card:last-child:nth-child(3n+1) { grid-column: auto; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

    .process-grid { --col-gap: 24px; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .process-step:nth-child(2n+1)::before { left: 50%; right: calc(-1 * var(--col-gap) / 2); }
    .process-step:nth-child(2n)::before   { left: calc(-1 * var(--col-gap) / 2); right: 50%; }
    .process-step:nth-child(3n+1)::before, .process-step:nth-child(3n)::before { left: unset; right: unset; }

    .contact-info-row { gap: 36px; }
    .contact-form-box { max-width: 100%; }
}

/* =============================================
   RESPONSIVE — LARGE MOBILE / SMALL TABLET (≤768px)
   ============================================= */
@media (max-width: 768px) {
    .header-inner { padding: 12px 16px; }
    .logo img { height: 36px; }

    section { padding: 52px 0; }
    .hero { padding: 64px 16px 56px; }
    .partner-section { padding: 60px 16px; }

    .section-title { margin-bottom: 36px; }

    .manufacture-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .mfg-card img { height: 200px; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }

    .blog-text { width: 100%; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .contact-form-box { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

    .partner-btns { flex-direction: column; align-items: center; gap: 12px; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .partner-btns a, .hero-btns a { width: 100%; max-width: 300px; text-align: center; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================= */
@media (max-width: 600px) {
    .container { padding: 0 16px; }

    section { padding: 44px 0; }
    .hero { padding: 56px 16px 48px; }
    .partner-section { padding: 52px 16px; }

    .hero-badge { font-size: 10px; letter-spacing: .12em; }
    .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

    .section-title { margin-bottom: 28px; }
    .section-title p { font-size: 13px; }

    .manufacture-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .mfg-card img { height: 170px; }
    .mfg-body h3 { font-size: 11px; }
    .mfg-body p { display: none; }

    .process-grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
    .process-step { padding: 0 6px; }
    .step-circle { width: 80px; height: 80px; }
    .step-icon-wrap { width: 80px; height: 80px; }
    .step-circle svg { width: 28px; height: 28px; }
    .process-step::before { top: 40px; }

    .why-grid { grid-template-columns: 1fr; gap: 14px; }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 20px;
    }
    .team-card-media { height: 220px; }

    .contact-form-box { padding: 22px 16px; }
    .contact-info-row { flex-direction: column; align-items: center; gap: 24px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .fw-title { font-size: 10.5px; }
    .footer-links li a { font-size: 12px; }
    .footer-about-text { font-size: 12px; }

    .btn-primary,
    .btn-outline,
    .btn-white,
    .btn-outline-white { padding: 12px 22px; font-size: 11px; }

    .experience-text { text-align: left; }
    .experience-img img { height: 240px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
    .hero h1 { font-size: clamp(1.4rem, 8vw, 1.9rem); }

    .manufacture-grid { grid-template-columns: 1fr; gap: 18px; }
    .mfg-card img { height: 220px; }
    .mfg-body p { display: block; }

    .process-grid { --col-gap: 0px; grid-template-columns: 1fr; gap: 32px 0; }
    .process-step::before { display: none; }
    .process-step { padding: 0 16px; }

    .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .team-card-media { height: 280px; }

    .why-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { align-items: center; text-align: center; }
    .footer-bot-links { justify-content: center; }

    .contact-form-box { padding: 20px 14px; }

    .logo img { height: 32px; }
    .hero { padding: 48px 12px 40px; }
    .partner-section { padding: 48px 12px; }
    .announcement-bar { font-size: 11px; padding: 8px 12px; }

    .blog-text { width: 100%; }
    .form-submit { width: 100%; }
}
