/* ===== GLOBAL ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #1a5276;
  --primary-dark: #154360;
  --accent: #e8851a;
  --accent-hover: #cf7316;
  --green: #1e8449;
  --light-bg: #f4f7fb;
  --text: #1c2833;
  --text-muted: #566573;
  --white: #ffffff;
  --border: #d5dbdb;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(0,0,0,0.10);
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); }
h1,h2,h3,h4 { font-family: 'Nunito', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1480px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 10px; }
.section-sub { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; }
.btn-accent {
  display: inline-block; background: var(--accent); color: var(--white);
  padding: 13px 30px; border-radius: 6px; font-weight: 700; font-size: 20px;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-accent:hover { background: var(--accent-hover); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 12px 28px; border-radius: 6px; font-weight: 700; font-size: 1rem;
  border: 2px solid var(--white); cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* ===== S1 HEADER ===== */
#header {
  background: var(--primary-dark);
  position: sticky; top: 0; z-index: 999;
  border-bottom: 3px solid var(--accent);
}
#header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; width: 268px;}
.logo-icon {
  width: 42px; height: 42px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-icon i { color: var(--white); font-size: 1.3rem; }
.logo-text { color: var(--white); font-family: 'Nunito', sans-serif; }
.logo-text span { display: block; font-size: 0.65rem; font-weight: 600; opacity: .75; letter-spacing: 1px; text-transform: uppercase; }
.logo-text strong { font-size: 1.05rem; font-weight: 800; letter-spacing: .3px; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-contact { color: var(--white); font-size: 0.9rem; display: flex; align-items: center; gap: 7px; opacity: .9; }
.header-contact i { color: var(--accent); }
.header-cta {
  background: var(--accent); color: var(--white); padding: 9px 20px;
  border-radius: 5px; font-weight: 700; font-size: 0.9rem; cursor: pointer;
  border: none; white-space: nowrap;
}
.header-cta:hover { background: var(--accent-hover); }
@media(max-width:768px){
  .header-right { display: none; }
  #header .container { justify-content: flex-start; }
}

/* ===== S2 BANNER ===== */
.banner {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 60%, #162d45 100%);
  background-image: url('/template/en/images/fab1.png');
  background-size: cover; background-position: center;
  position: relative; padding: 70px 0 60px;
}
.banner::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(13,33,55,0.92) 0%, rgba(13,33,55,0.75) 55%, rgba(13,33,55,0.55) 100%);
}
.banner .container { position: relative; z-index: 1; display: flex; gap: 50px; align-items: flex-start; }
.banner-left { flex: 1; color: var(--white); padding-top: 10px; }
.banner-tag {
  display: inline-block; background: var(--accent); color: var(--white);
  padding: 4px 14px; border-radius: 20px; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
}
.banner-left h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.banner-left h1 span { color: var(--accent); }
.banner-left p { font-size: 1.05rem; opacity: .87; margin-bottom: 24px; line-height: 1.6; max-width: 520px; }
.banner-bullets { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.banner-bullets li { display: flex; align-items: center; gap: 10px; font-size: 0.97rem; opacity: .93; }
.banner-bullets li i { color: var(--accent); font-size: 0.9rem; flex-shrink: 0; }
.banner-right {
  width: 455px; flex-shrink: 0;
  background: var(--white); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: 0 8px 36px rgba(0,0,0,0.22);
}
.form-title { font-family: 'Nunito', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 4px; }
.form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; }
/* Generic form styles shared across all forms */
.lp-form input, .lp-form select, .lp-form textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 6px;
  padding: 10px 12px; font-size: 19px; font-family: 'Barlow', sans-serif;
  color: var(--text); outline: none; transition: border .2s; margin-bottom: 12px;
}
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus { border-color: var(--primary); }
.lp-form textarea { resize: vertical; min-height: 160px; }
.lp-form button[type=submit] {
  width: 100%; background: var(--accent); color: var(--white);
  border: none; padding: 13px; border-radius: 6px;
  font-size: 20px; font-weight: 700; cursor: pointer; transition: background .2s;
  font-family: 'Nunito', sans-serif;
}
.lp-form button[type=submit]:hover { background: var(--accent-hover); }
.form-secure { font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.form-secure i { color: var(--green); }
@media(max-width:1000px){
  .banner .container { flex-direction: column; }
  .banner-right { width: 100%; max-width: 480px; display: none;}
  .banner-left h1 { font-size: 28px; }
  .banner-left p {font-size: 18px;}
  .banner-bullets li {font-size: 16px;}

}
@media(max-width:768px){
  .banner { padding: 40px 0 36px; }
  .banner-left h1 { font-size: 28px; }
}

/* ===== S3 WHY US ===== */
.why-us { padding: 72px 0; background: var(--white); }
.why-us .container > .section-title { text-align: center; }
.why-us .container > .section-sub { text-align: center; }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pain-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: box-shadow .2s, border-color .2s;
}
.pain-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.pain-icon {
  width: 52px; height: 52px; background: #ebf5fb;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pain-icon i { color: var(--primary); font-size: 1.3rem; }
.pain-q { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.pain-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; line-height: 1.3; }
.pain-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }
@media(max-width:768px){ 
  .pain-grid { grid-template-columns: 1fr; } 
  .section-title {font-size: 25px;}
  .section-sub {font-size: 18px;}
  .pain-q {font-size: 16px;}
  .pain-card h3 {    
    font-size: 20px;
   }
   .pain-card p {
         font-size: 16px;
   }
  }

/* ===== S4 PRODUCTS ===== */
.products { padding: 72px 0; background: var(--light-bg); }
.products .section-title, .products .section-sub { text-align: center; }
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.prod-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-img {overflow: hidden; background: #e8f0f7; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-body { padding: 18px 16px; flex: 1; display: flex; flex-direction: column; }
.prod-body h3 { font-size: 20px; font-weight: 800; color: var(--primary-dark); margin-bottom: 10px; }
.prod-specs { list-style: none; margin-bottom: 14px; flex: 1; }
.prod-specs li { font-size: 18px; color: var(--text-muted); padding: 3px 0; display: flex; align-items: flex-start; gap: 6px; }
.prod-specs li i { color: var(--accent); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.prod-badge { display: inline-block; background: #ebf5fb; color: var(--primary); font-size: 16px; font-weight: 700; padding: 3px 9px; border-radius: 20px; margin-bottom: 10px; }
.prod-cta {
  width: 100%; background: var(--primary); color: var(--white);
  border: none; padding: 10px; border-radius: 6px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; transition: background .2s;
}
.prod-cta:hover { background: var(--primary-dark); }
@media(max-width:1024px){ .prod-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .prod-grid { grid-template-columns: 1fr; } }

/* ===== S5 ADVANTAGES ===== */
.advantages { padding: 72px 0; background: var(--primary-dark); }
.advantages .section-title { color: var(--white); text-align: center; }
.advantages .section-sub { color: rgba(255,255,255,.7); text-align: center; }
.adv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.adv-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px 22px; transition: background .2s;
}
.adv-card:hover { background: rgba(255,255,255,0.12); }
.adv-icon {
  width: 50px; height: 50px; background: var(--accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.adv-icon i { color: var(--white); font-size: 1.25rem; }
.adv-card h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.adv-card p { font-size: 18px; color: rgba(255,255,255,.72); line-height: 1.6; }
@media(max-width:900px){ .adv-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .adv-grid { grid-template-columns: 1fr; } }

/* ===== S6 CERTS ===== */
.certs { padding: 72px 0; background: var(--white); }
.certs .section-title, .certs .section-sub { text-align: center; }
.cert-icons-row {
  display: flex; justify-content: center; gap: 36px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.cert-icon-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cert-icon-item img { width: 60px; height: 60px; object-fit: contain; }
.cert-icon-item span { font-size: 0.75rem; color: var(--text-muted); text-align: center; max-width: 90px; font-weight: 600; }
.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 16px; }
.cert-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-align: center; padding-bottom: 16px;
  transition: box-shadow .2s;
}
.cert-card:hover { box-shadow: var(--shadow); }
.cert-card img { width: 100%; height: auto; object-fit: cover; }
.cert-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); margin: 12px 10px 4px; }
.cert-card p { font-size: 0.8rem; color: var(--text-muted); padding: 0 10px; }
@media(max-width:900px){ .cert-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .cert-grid { grid-template-columns: 1fr; } }
@media screen and (max-width: 768px) {
  .cert-card h4 {
        font-size: 18px;
  }
  .cert-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .cert-card {
    width: 100% !important;
    box-sizing: border-box;
  }
  .cert-card img {
    width: 100% !important;
    height: auto !important;
  }
}

/* ===== S7 FACTORY ===== */
.factory { padding: 72px 0; background: var(--light-bg); }
.factory .section-title, .factory .section-sub { text-align: center; }
.factory-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.factory-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.factory-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .3s; }
.factory-item:hover img { transform: scale(1.04); }

@media(max-width:900px){ .factory-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .factory-grid { grid-template-columns: 1fr; } }

/* ===== S8 COMPANY ===== */
.company { padding: 72px 0; background: var(--white); }
.company .container { display: flex; gap: 60px; align-items: center; }
.company-left { flex: 1; }
.company-left h2 { font-size: 1.9rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 16px; }
.company-left p { font-size:19px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.company-left ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.company-left ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 19px; color: var(--text-muted); }
.company-left ul li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.stats-wall {
  width: 320px; flex-shrink: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-box {
  background: var(--primary-dark); border-radius: var(--radius);
  padding: 24px 16px; text-align: center; color: var(--white);
}
.stat-box .num { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-box .lbl { font-size: 0.8rem; opacity: .78; margin-top: 4px; }
@media(max-width:900px){
  .company .container { flex-direction: column; }
  .stats-wall { width: 100%; }
  .stat-box .lbl {
        font-size: 16px;
  }
}

/* ===== TRADE SHOW ===== */
.tradeshow { padding: 72px 0; background: var(--light-bg); }
.tradeshow .section-title, .tradeshow .section-sub { text-align: center; }
.ts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ts-item { border-radius: var(--radius); overflow: hidden; }
.ts-item img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform .3s; }
.ts-item:hover img { transform: scale(1.04); }
@media(max-width:900px){ .ts-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .ts-grid { grid-template-columns: 1fr; } }

/* ===== S9 WHO WE SERVE ===== */
.who-serve { padding: 72px 0; background: var(--white); }
.who-serve .section-title, .who-serve .section-sub { text-align: center; }
.serve-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.serve-card {
  background: var(--light-bg); border-radius: var(--radius);
  padding: 26px 22px; border-left: 4px solid var(--accent);
  transition: box-shadow .2s;
}
.serve-card:hover { box-shadow: var(--shadow); }
.serve-card .s-icon { font-size: 1.6rem; color: var(--primary); margin-bottom: 12px; }
.serve-card h3 { font-size: 20px; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.serve-card p { font-size: 17px; color: var(--text-muted); line-height: 1.6; }
@media(max-width:900px){ .serve-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .serve-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq { padding: 72px 0; background: var(--light-bg); }
.faq .section-title, .faq .section-sub { text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: 18px;
  color: var(--primary-dark); user-select: none;
}
.faq-q i { color: var(--accent); font-size: 0.9rem; transition: transform .3s; flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* ===== S10 FOOTER CTA FORM ===== */
.footer-cta { padding: 72px 0; background: var(--primary-dark); }
.footer-cta .container { display: flex; gap: 60px; align-items: flex-start; }
.footer-cta-left { flex: 1; color: var(--white); }
.footer-cta-left h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 14px; }
.footer-cta-left p { opacity: .82; line-height: 1.7; font-size: 20px; margin-bottom: 20px; }
.footer-cta-left ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-cta-left ul li { display: flex; align-items: center; gap: 10px; font-size: 19px; opacity: .85; }
.footer-cta-left ul li i { color: var(--accent); flex-shrink: 0; }
.footer-form-wrap {
  width: 480px; flex-shrink: 0;
  background: var(--white); border-radius: var(--radius);
  padding: 28px 26px;
}
.footer-form-title { font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 800; color: var(--primary-dark); margin-bottom: 18px; }
@media(max-width:1000px){
  .footer-cta .container { flex-direction: column; }
  .footer-form-wrap { width: 100%; max-width: 480px; }
  .footer-bar p {
    font-size: 16px;
  }
}

/* ===== FOOTER BAR ===== */
.footer-bar { background: #0d1b2a; padding: 22px 0; }
.footer-bar .container { align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bar p { color: rgba(255,255,255,.55); font-size: 18px; }

/* ===== S11 FLOATING FORM ===== */
#pups_from {
  display: none;
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 9999; width: 440px; max-width: 95vw;
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.32);
}
.popup-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9998;
}
.popup-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 40px;
  color: var(--text-muted); cursor: pointer; line-height: 1;
}
.popup-close:hover { color: var(--text); }
.popup-title { font-family: 'Nunito', sans-serif; font-size: 25px; font-weight: 800; color: var(--primary-dark); margin-bottom: 4px; }
.popup-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 20px; }
.floating-inquiry-btn {
  position: fixed;
  right: 30px;
  bottom: 30px; 
  width: 60px;
  height: 60px; 
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.3s ease; 
}

.floating-inquiry-btn:hover {
  transform: scale(1.08);
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .floating-inquiry-btn {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.right-sticky-bar {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px; 
  z-index: 9999;
}

.floating-btn {
  width: 55px; 
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.scroll-to-top-btn {
  background-color: #333333;
}
.inquiry-popup-btn {
  background-color: #007bff;
}

.scroll-to-top-btn:hover {
  transform: scale(1.08);
  background-color: #111111;
}
.inquiry-popup-btn:hover {
  transform: scale(1.08);
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .right-sticky-bar {
    right: 20px;
    bottom: 20px;
    gap: 10px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}
input.wukaka {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    font-family: 'Nunito', sans-serif;
}
ul.grid-box.two span {
    font-size: 20px;
    font-weight: 400;
}
.footer-bar p {
    text-align: center;
}