@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:#1a2332;background:#fff;line-height:1.6;font-size:16px;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ── VARIABLES ── */
:root{
  --navy:#1a2332;
  --navy-light:#243040;
  --orange:#e07020;
  --orange-dark:#c55f10;
  --gray-bg:#f5f6f7;
  --gray-light:#f0f1f2;
  --text:#1a2332;
  --text-mid:#4a5568;
  --text-muted:#718096;
  --border:#e2e8f0;
  --white:#ffffff;
}

/* ── TOPBAR ── */
.topbar{
  background:var(--navy);
  color:rgba(255,255,255,0.85);
  font-size:13px;
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.topbar-inner{
  max-width:1280px;margin:0 auto;padding:0 32px;
  display:flex;align-items:center;justify-content:space-between;
}
.topbar-left{display:flex;align-items:center;gap:24px}
.topbar-item{display:flex;align-items:center;gap:7px;font-size:13px}
.topbar-item svg{opacity:.7;flex-shrink:0}
.topbar-right{font-size:12px;color:rgba(255,255,255,0.55);display:flex;align-items:center;gap:6px}
.topbar-right svg{opacity:.6}

/* ── NAVBAR ── */
.navbar{
  background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner{
  max-width:1280px;margin:0 auto;padding:0 32px;
  display:flex;align-items:center;justify-content:space-between;
  height:68px;
}
.nav-logo{
  background:var(--navy);
  padding:10px 16px;
  border-radius:4px;
  display:flex;flex-direction:column;
  line-height:1.2;
  flex-shrink:0;
}
.nav-logo-main{color:#fff;font-size:18px;font-weight:800;letter-spacing:0.5px}
.nav-logo-sub{color:rgba(255,255,255,0.6);font-size:10.5px;font-weight:400}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{
  color:var(--text);font-size:14px;font-weight:500;
  padding:8px 14px;border-radius:4px;
  transition:all .18s;white-space:nowrap;
}
.nav-links a:hover{color:var(--orange);background:rgba(224,112,32,0.06)}
.nav-links a.active{background:rgba(224,112,32,0.1);color:var(--orange);font-weight:600}
.nav-quote{
  background:var(--orange);color:#fff;
  font-size:14px;font-weight:600;
  padding:10px 22px;border-radius:4px;
  border:none;cursor:pointer;
  transition:all .18s;white-space:nowrap;flex-shrink:0;
}
.nav-quote:hover{background:var(--orange-dark);transform:translateY(-1px)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.hamburger span{display:block;width:24px;height:2px;background:var(--navy);border-radius:2px;transition:.3s}
.mobile-menu{
  display:none;
  position:relative;
  top:0;left:0;right:0;
  background:#ffffff;
  border-bottom:2px solid var(--border);
  padding:0;
  z-index:998;
  flex-direction:column;
  gap:0;
  box-shadow:0 4px 16px rgba(0,0,0,.1);
  width:100%;
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  color:#1a2332 !important;
  font-size:15px;font-weight:600;
  padding:15px 24px;
  transition:all .18s;
  display:block;
  text-decoration:none;
  border-bottom:1px solid #f0f1f2;
  background:#ffffff;
}
.mobile-menu a:first-child{border-top:1px solid #f0f1f2}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu a:hover{background:#fff3eb;color:var(--orange) !important}
.mobile-menu a.active{color:var(--orange) !important;background:#fff3eb;}

/* ── PAGE HERO (inner pages) ── */
.page-hero{
  background:var(--navy);
  padding:72px 32px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(255,255,255,.015) 40px,rgba(255,255,255,.015) 41px);
}
.page-hero h1{
  font-size:clamp(32px,4vw,52px);font-weight:800;
  color:#fff;margin-bottom:16px;position:relative;z-index:1;
}
.page-hero p{
  font-size:18px;color:rgba(255,255,255,.7);
  max-width:680px;margin:0 auto;position:relative;z-index:1;
  line-height:1.7;
}

/* ── SECTIONS ── */
.section{padding:80px 32px}
.section-gray{background:var(--gray-bg)}
.section-navy{background:var(--navy)}
.container{max-width:1280px;margin:0 auto}
.section-title{
  font-size:clamp(28px,3.5vw,40px);font-weight:800;
  color:var(--text);margin-bottom:12px;text-align:center;
}
.section-title-left{text-align:left}
.section-subtitle{
  font-size:17px;color:var(--text-muted);
  text-align:center;max-width:640px;margin:0 auto 56px;line-height:1.7;
}
.section-subtitle-left{text-align:left;margin-left:0}
.underline-orange{
  display:block;width:56px;height:3px;
  background:var(--orange);border-radius:2px;
  margin:12px auto 0;
}
.underline-orange.left{margin-left:0}

/* ── ORANGE ACCENT UNDER HEADINGS ── */
h2.has-line,h3.has-line{position:relative;padding-bottom:14px;margin-bottom:16px}
h2.has-line::after,h3.has-line::after{
  content:'';position:absolute;bottom:0;left:0;
  width:48px;height:3px;background:var(--orange);border-radius:2px;
}

/* ── BUTTONS ── */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 24px;border-radius:4px;font-size:14px;font-weight:600;
  cursor:pointer;transition:all .18s;border:none;font-family:inherit;
}
.btn-orange{background:var(--orange);color:#fff}
.btn-orange:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:0 4px 16px rgba(224,112,32,.35)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:var(--navy-light)}
.btn-outline{background:transparent;color:#ffffff;border:2px solid rgba(255,255,255,0.8)}
.btn-outline:hover{background:rgba(255,255,255,0.15);color:#fff;border-color:#fff}
/* btn-outline on light backgrounds */
.section .btn-outline, footer .btn-outline{color:var(--navy);border-color:var(--navy)}
.section .btn-outline:hover, footer .btn-outline:hover{background:var(--navy);color:#fff}

/* ── CARDS ── */
.card{
  background:#fff;border:1px solid var(--border);
  border-radius:8px;overflow:hidden;
  transition:transform .25s,box-shadow .25s;
}
.card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.1)}

/* ── FOOTER ── */
footer{background:#0f1824;color:rgba(255,255,255,.65);padding:64px 32px 28px}
.footer-grid{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:2.2fr 1fr 1.4fr;gap:56px;
  margin-bottom:48px;
}
.footer-brand{
  background:var(--navy);
  display:inline-flex;flex-direction:column;
  padding:10px 16px;border-radius:4px;
  margin-bottom:18px;
}
.footer-brand-main{color:#fff;font-size:16px;font-weight:800}
.footer-brand-sub{color:rgba(255,255,255,.55);font-size:10px}
.footer-desc{font-size:14px;line-height:1.8;margin-bottom:24px;max-width:360px}
.footer-contacts{display:flex;flex-direction:column;gap:12px}
.footer-contact-item{display:flex;align-items:flex-start;gap:10px;font-size:13.5px}
.footer-contact-item svg{margin-top:2px;flex-shrink:0;opacity:.7}
.footer-col h4{color:#fff;font-size:13px;font-weight:700;letter-spacing:.8px;text-transform:uppercase;margin-bottom:20px}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col ul li a{font-size:14px;color:rgba(255,255,255,.55);transition:color .18s}
.footer-col ul li a:hover{color:var(--orange)}
.footer-bottom{
  max-width:1280px;margin:0 auto;
  padding-top:24px;border-top:1px solid rgba(255,255,255,.08);
  text-align:center;font-size:13px;color:rgba(255,255,255,.35);
}

/* ── HOME HERO SLIDER ── */
.hero-slider{position:relative;height:540px;overflow:hidden;background:var(--navy)}
.slide{
  position:absolute;inset:0;opacity:0;transition:opacity .8s ease;
  display:flex;align-items:center;
  background-size:cover;background-position:center;
}
.slide.active{opacity:1}
.slide-overlay{position:absolute;inset:0;background:rgba(15,24,36,.62)}
.slide-content{
  position:relative;z-index:2;
  max-width:1280px;margin:0 auto;padding:0 48px;
  color:#fff;
}
.slide-content h1{
  font-size:clamp(32px,4.5vw,58px);font-weight:900;
  line-height:1.1;margin-bottom:20px;max-width:700px;
}
.slide-content p{font-size:18px;color:rgba(255,255,255,.75);margin-bottom:32px;max-width:560px}
.slider-dots{
  position:absolute;bottom:24px;left:50%;transform:translateX(-50%);
  display:flex;gap:8px;z-index:10;
}
.dot{
  width:12px;height:12px;border-radius:50%;
  background:rgba(255,255,255,.4);border:none;cursor:pointer;transition:.25s;
}
.dot.active{background:var(--orange);transform:scale(1.2)}

/* ── STATS BANNER ── */
.stats-banner{background:var(--navy);padding:48px 32px}
.stats-grid{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
.stat-card{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  border-radius:8px;padding:28px 20px;text-align:center;
  transition:background .25s;
}
.stat-card:hover{background:rgba(255,255,255,.1)}
.stat-num{
  font-size:42px;font-weight:900;color:var(--orange);
  line-height:1;margin-bottom:8px;
}
.stat-label{font-size:14px;color:rgba(255,255,255,.7);font-weight:500}

/* ── INDUSTRY SECTION (Home) ── */
.industry-section{padding:80px 32px}
.industry-section h2{font-size:36px;font-weight:800;margin-bottom:56px}
.industry-row{
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:center;margin-bottom:72px;
}
.industry-row.reverse .industry-img{order:2}
.industry-row.reverse .industry-text{order:1}
.industry-text h3{font-size:32px;font-weight:800;margin-bottom:4px}
.industry-text h3.has-line{padding-bottom:14px;margin-bottom:16px}
.industry-text p{font-size:16px;color:var(--text-mid);line-height:1.8;margin-bottom:20px}
.industry-img img,.industry-img-placeholder{
  width:100%;height:380px;object-fit:cover;border-radius:8px;
}
.industry-img-placeholder{
  background:linear-gradient(135deg,#243040,#1a2332);
  display:flex;align-items:center;justify-content:center;
  font-size:80px;
}

/* ── CHEMICAL PULPING FULL-WIDTH ── */
.fullwidth-banner{
  position:relative;width:100%;height:420px;overflow:hidden;
  display:flex;align-items:center;
}
.fullwidth-banner-img{
  position:absolute;inset:0;
  background:linear-gradient(135deg,#1a2d3d,#2a4a5a);
  display:flex;align-items:center;justify-content:center;font-size:96px;
}
.fullwidth-banner-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right,rgba(15,24,36,.78) 0%,rgba(15,24,36,.3) 100%);
}
.fullwidth-banner-content{
  position:relative;z-index:2;
  max-width:1280px;margin:0 auto;padding:0 48px;
  color:#fff;
}
.fullwidth-banner-content .orange-bar{
  display:block;width:48px;height:3px;background:var(--orange);margin-bottom:20px;border-radius:2px;
}
.fullwidth-banner-content h2{font-size:clamp(28px,4vw,46px);font-weight:800;line-height:1.2;max-width:560px}
.fullwidth-banner-desc{font-size:16px;color:rgba(255,255,255,.7);max-width:640px;margin:0 auto;text-align:center;line-height:1.8;padding:32px 0 16px}

/* ── PRODUCTS PAGE CATEGORY LIST ── */
.products-category-title{
  font-size:28px;font-weight:800;
  border-bottom:2px solid var(--border);padding-bottom:16px;margin-bottom:32px;
}
.products-cols{
  display:grid;grid-template-columns:repeat(4,1fr);gap:32px;margin-bottom:56px;
}
.products-col-header{font-size:16px;font-weight:700;color:var(--orange);margin-bottom:12px}
.products-col-title{font-size:15px;font-weight:700;color:var(--text);margin-bottom:8px}
.products-col ul{display:flex;flex-direction:column;gap:8px}
.products-col ul li a{font-size:14px;color:var(--text-mid);transition:color .18s}
.products-col ul li a:hover{color:var(--orange)}
.products-col ul li a.highlight{color:var(--orange);font-weight:600}
.products-more{color:var(--text-muted);font-size:13px;cursor:pointer;margin-top:6px;display:inline-flex;align-items:center;gap:4px}

/* ── ABOUT MISSION/VISION CARDS ── */
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;margin-bottom:72px}
.mv-card{padding:40px 48px}
.mv-card.mission{background:var(--navy)}
.mv-card.vision{background:var(--orange)}
.mv-card h3{color:#fff;font-size:20px;font-weight:700;margin-bottom:20px;text-align:center}
.mv-card p{color:rgba(255,255,255,.85);font-size:15px;line-height:1.8}

/* ── ABOUT STORY ── */
.story-box{
  background:var(--gray-bg);border-radius:8px;
  padding:40px 48px;max-width:900px;margin:0 auto 56px;
}
.story-box p{font-size:16px;color:var(--text-mid);line-height:1.9;margin-bottom:18px}
.story-box p:last-child{margin-bottom:0}

/* ── TIMELINE ── */
.timeline{position:relative;max-width:900px;margin:0 auto;padding:20px 0}
.timeline::before{
  content:'';position:absolute;left:50%;top:0;bottom:0;
  width:2px;background:var(--border);transform:translateX(-50%);
}
.timeline-item{
  display:grid;grid-template-columns:1fr 40px 1fr;
  gap:0;margin-bottom:48px;align-items:start;
}
.timeline-item-left{padding-right:32px;text-align:right}
.timeline-item-right{padding-left:32px}
.timeline-dot{
  width:14px;height:14px;border-radius:50%;
  background:var(--orange);border:3px solid #fff;
  box-shadow:0 0 0 2px var(--orange);
  margin:6px auto 0;position:relative;z-index:1;
}
.timeline-card{
  background:#fff;border:1px solid var(--border);border-radius:8px;padding:24px 28px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.timeline-year{font-size:22px;font-weight:900;color:var(--orange);margin-bottom:6px}
.timeline-card-title{font-size:16px;font-weight:700;color:var(--text);margin-bottom:8px}
.timeline-card-text{font-size:14px;color:var(--text-muted);line-height:1.7}

/* ── OUR PROCESS PAGE ── */
.process-steps{display:flex;flex-direction:column;gap:0}
.process-step{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;align-items:stretch;margin-bottom:40px;
}
.process-step-img{
  background:var(--gray-bg);border-radius:8px;overflow:hidden;
  min-height:300px;display:flex;align-items:center;justify-content:center;
}
.process-step-img img{width:100%;height:100%;object-fit:cover}
.process-step-img-placeholder{
  width:100%;height:300px;
  background:linear-gradient(135deg,#243040,#1a2332);
  display:flex;align-items:center;justify-content:center;font-size:72px;
}
.process-step-content{
  background:#fff;border:1px solid var(--border);border-radius:8px;
  padding:36px 40px;
}
.process-step-content.gray{background:var(--gray-bg)}
.step-num{
  width:44px;height:44px;border-radius:50%;
  background:var(--navy);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;font-weight:800;margin-bottom:16px;
  flex-shrink:0;
}
.step-title{font-size:22px;font-weight:800;margin-bottom:4px}
.step-subtitle{font-size:14px;color:var(--orange);font-weight:600;margin-bottom:16px}
.step-text{font-size:15px;color:var(--text-mid);line-height:1.85}
.step-text p{margin-bottom:12px}

/* ── PROJECTS PAGE ── */
.projects-stats{
  background:var(--navy);padding:48px 32px;
}
.projects-stats-grid{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
.project-card-img{
  width:100%;height:220px;object-fit:cover;
  background:linear-gradient(135deg,#243040,#1a2332);
  display:flex;align-items:center;justify-content:center;font-size:48px;
}
.project-card-body{padding:24px}
.project-tag{
  display:inline-block;background:var(--orange);color:#fff;
  font-size:11px;font-weight:700;padding:4px 10px;border-radius:100px;
  margin-bottom:10px;
}
.project-card-img{
height:220px;
width:100%;
overflow:hidden;
border-radius:6px 6px 0 0;
}

.project-card-img img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}
.project-year{
  display:inline-flex;align-items:center;gap:5px;
  background:var(--gray-bg);color:var(--text-muted);
  font-size:11px;font-weight:600;padding:4px 10px;border-radius:100px;
  float:right;
}
.project-card-title{font-size:18px;font-weight:800;margin-bottom:6px;clear:both}
.project-location{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--text-muted);margin-bottom:12px}
.project-desc{font-size:14px;color:var(--text-mid);line-height:1.7}

/* ── GALLERY PAGE ── */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.gallery-card{border-radius:8px;overflow:hidden;background:#fff;border:1px solid var(--border)}
.gallery-card-img{
  width:100%;height:220px;object-fit:cover;
  background:linear-gradient(135deg,#243040,#1a2332);
  display:flex;align-items:center;justify-content:center;font-size:48px;
  transition:transform .4s;
}
.gallery-card:hover .gallery-card-img{transform:scale(1.04)}
.gallery-card-body{padding:18px 20px}
.gallery-card-title{font-size:16px;font-weight:700;margin-bottom:6px}
.gallery-card-desc{font-size:13.5px;color:var(--text-muted);line-height:1.6}
.video-play{
  position:relative;cursor:pointer;overflow:hidden;
}
.video-play::after{
  content:'▶';
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-size:36px;color:#fff;
  background:rgba(0,0,0,.35);
  transition:background .25s;
}
.video-play:hover::after{background:rgba(0,0,0,.55)}

/* ── CONTACT PAGE ── */
.contact-grid{display:grid;grid-template-columns:1fr 1.5fr;gap:56px;align-items:start}
.contact-info-list{display:flex;flex-direction:column;gap:20px;margin-top:20px}
.contact-info-item{display:flex;align-items:flex-start;gap:14px}
.contact-info-icon{
  width:44px;height:44px;border-radius:8px;
  background:var(--gray-bg);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;flex-shrink:0;
}
.contact-info-label{font-size:11px;font-weight:700;color:var(--text-muted);letter-spacing:.8px;text-transform:uppercase;margin-bottom:3px}
.contact-info-val{font-size:15px;color:var(--text);line-height:1.6}
.contact-info-val a{color:var(--orange)}
.contact-form-box{
  background:#fff;border:1px solid var(--border);border-radius:8px;padding:40px;
  box-shadow:0 4px 24px rgba(0,0,0,.06);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:12px;font-weight:600;color:var(--text-mid);margin-bottom:6px;text-transform:uppercase;letter-spacing:.4px}
.form-group input,.form-group select,.form-group textarea{
  width:100%;padding:11px 14px;
  border:1.5px solid var(--border);border-radius:6px;
  font-family:inherit;font-size:14px;color:var(--text);
  background:#fff;outline:none;transition:border .18s,box-shadow .18s;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  border-color:var(--orange);box-shadow:0 0 0 3px rgba(224,112,32,.12);
}
.form-group textarea{resize:vertical;min-height:120px}
.form-success{
  display:none;background:#f0fdf4;border:1px solid #86efac;
  color:#166534;padding:14px 18px;border-radius:6px;
  font-size:14px;font-weight:500;margin-top:16px;align-items:center;gap:10px;
}
.form-success.show{display:flex}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .products-cols{grid-template-columns:repeat(2,1fr)}
  .stats-grid,.projects-stats-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .process-step{grid-template-columns:1fr}
  .industry-row{grid-template-columns:1fr;gap:32px}
  .industry-row.reverse .industry-img{order:0}
  .industry-row.reverse .industry-text{order:0}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .topbar-right{display:none}
  .topbar-left{gap:12px;flex-wrap:wrap}
  .section{padding:56px 20px}
  .hero-slider{height:400px}
  .slide-content{padding:0 24px}
  .mv-grid{grid-template-columns:1fr}
  .timeline::before{left:20px}
  .timeline-item{grid-template-columns:32px 1fr}
  .timeline-item-left{display:none}
  .timeline-dot{margin:6px 0 0}
  .story-box{padding:28px 24px}
  .form-row{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:24px}
}
@media(max-width:480px){
  .stats-grid,.projects-stats-grid{grid-template-columns:1fr 1fr}
  .topbar-item:nth-child(2){display:none}
}

.industry-row{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
}

.industry-img{
height:320px;
overflow:hidden;
}

.industry-img img{
width:100%;
height:100%;
object-fit:cover;
}
/* ══════════════════════════════════════════
   RESPONSIVE FIXES — Additional breakpoints
   ══════════════════════════════════════════ */

/* ── Tablet (max 1024px) additional fixes ── */
@media(max-width:1024px){
  .nav-inner{padding:0 20px}
  .topbar-inner{padding:0 20px}
  .section{padding:60px 24px}
  .page-hero{padding:56px 24px}
  .stats-banner{padding:40px 24px}
  .projects-stats{padding:40px 24px}
  footer{padding:48px 24px 24px}
  .slide-content{padding:0 32px}
  .fullwidth-banner-content{padding:0 32px}
  .container{padding:0 8px}
}

/* ── Mobile (max 768px) ── */
@media(max-width:768px){
  /* Topbar */
  .topbar-inner{padding:0 16px;flex-direction:column;gap:6px;align-items:flex-start}
  .topbar-left{flex-wrap:wrap;gap:10px}

  /* Navbar */
  .nav-inner{padding:0 16px;height:60px}
  .nav-logo-main{font-size:15px}
  .nav-logo-sub{font-size:9px}
  .nav-quote{display:none}

  /* Page hero */
  .page-hero{padding:48px 16px}
  .page-hero h1{font-size:clamp(24px,6vw,36px)}
  .page-hero p{font-size:15px}

  /* Sections */
  .section{padding:48px 16px}
  .section-title{font-size:clamp(22px,5vw,32px)}
  .section-subtitle{font-size:15px;margin-bottom:36px}

  /* Hero slider */
  .hero-slider{height:360px}
  .slide-content{padding:0 16px}
  .slide-content h1{font-size:clamp(22px,6vw,36px);margin-bottom:14px}
  .slide-content p{font-size:15px;margin-bottom:22px}

  /* Stats banner */
  .stats-banner{padding:32px 16px}
  .stats-grid{grid-template-columns:1fr 1fr;gap:12px}
  .stat-num{font-size:32px}
  .stat-label{font-size:13px}

  /* Industry section */
  .industry-section{padding:48px 16px}
  .industry-row{grid-template-columns:1fr;gap:24px}
  .industry-img{height:240px}
  .industry-text h3{font-size:24px}

  /* About page */
  .mv-grid{grid-template-columns:1fr}
  .mv-card{padding:28px 24px}
  .story-box{padding:24px 20px}
  .timeline{padding:10px 0}
  .timeline-item{grid-template-columns:32px 1fr}
  .timeline-item-left{display:none}
  .timeline-card{padding:18px 20px}

  /* Process page */
  .process-step{grid-template-columns:1fr}
  .process-step-content{padding:24px 20px}
  .process-step-img-placeholder{height:220px}

  /* Products page */
  .products-cols{grid-template-columns:1fr 1fr}
  .products-category-title{font-size:22px}

  /* Projects page */
  .projects-stats{padding:32px 16px}
  .projects-stats-grid{grid-template-columns:1fr 1fr;gap:12px}

  /* Gallery page */
  .gallery-grid{grid-template-columns:1fr}

  /* Contact page */
  .contact-grid{grid-template-columns:1fr;gap:32px}
  .contact-form-box{padding:24px 20px}
  .form-row{grid-template-columns:1fr}

  /* Footer */
  footer{padding:40px 16px 20px}
  .footer-grid{grid-template-columns:1fr;gap:20px}
  .footer-desc{max-width:100%}

  /* Buttons */
  .btn{padding:10px 18px;font-size:13px}

  /* Fullwidth banner */
  .fullwidth-banner{height:auto;padding:48px 0}
  .fullwidth-banner-content{padding:0 16px}
  .fullwidth-banner-content h2{font-size:clamp(22px,5vw,36px)}

  /* Product detail pages */
  .product-layout{grid-template-columns:1fr!important}
  .turnkey-banner{flex-direction:column;padding:20px}
  .breadcrumb-inner{padding:0 16px}
}

/* ── Small mobile (max 480px) ── */
@media(max-width:480px){
  /* Topbar — hide second contact item */
  .topbar-item:nth-child(2){display:none}

  /* Stats grids — single column */
  .stats-grid{grid-template-columns:1fr 1fr}
  .projects-stats-grid{grid-template-columns:1fr 1fr}

  /* Products cols — single column */
  .products-cols{grid-template-columns:1fr}

  /* Nav logo smaller */
  .nav-logo{padding:7px 10px}
  .nav-logo-main{font-size:13px}

  /* Hero */
  .hero-slider{height:300px}
  .slide-content h1{font-size:22px}
  .slide-content p{font-size:14px;display:none}

  /* Page hero */
  .page-hero{padding:36px 16px}
  .page-hero h1{font-size:24px}
  .page-hero p{font-size:14px}

  /* Stat cards */
  .stat-num{font-size:28px}

  /* Contact form */
  .contact-form-box{padding:20px 16px}

  /* Timeline */
  .timeline-card{padding:14px 16px}
  .timeline-year{font-size:18px}

  /* Gallery */
  .gallery-card-img{height:180px}

  /* Footer */
  .footer-bottom{font-size:11px}

  /* Industry img */
  .industry-img{height:200px}
}

/* ══════════════════════════════════════════
   IMAGE OVERFLOW & SIZE FIXES FOR MOBILE
   ══════════════════════════════════════════ */

/* Global image safety */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent any element from overflowing horizontally */
* { box-sizing: border-box; }
body { overflow-x: hidden; }

@media(max-width: 768px) {

  /* ── Hero Slider ── */
  .hero-slider { height: 280px; }
  .slide { background-size: cover; background-position: center; }
  .slide-content h1 { font-size: clamp(18px, 5vw, 28px); margin-bottom: 10px; }
  .slide-content p { font-size: 13px; margin-bottom: 16px; }
  .slide-content .btn { padding: 9px 16px; font-size: 13px; }

  /* ── Industry / About images ── */
  .industry-img { height: 200px; width: 100%; overflow: hidden; }
  .industry-img img { width: 100%; height: 100%; object-fit: cover; }
  .industry-img-placeholder { height: 200px; font-size: 48px; }

  /* ── Fullwidth banner ── */
  .fullwidth-banner { height: auto; min-height: 280px; }
  .fullwidth-banner-img { height: 280px; }
  .fullwidth-banner-img img { width: 100%; height: 100%; object-fit: cover; }

  /* ── Process step images ── */
  .process-step-img { min-height: 180px; }
  .process-step-img img { width: 100%; height: 180px; object-fit: cover; }
  .process-step-img-placeholder { height: 180px; font-size: 48px; }

  /* ── Gallery images ── */
  .gallery-card-img { height: 180px; width: 100%; overflow: hidden; }
  .gallery-card-img img { width: 100%; height: 100%; object-fit: cover; }

  /* ── Project card images ── */
  .project-card-img { height: 180px; width: 100%; overflow: hidden; }
  .project-card-img img { width: 100%; height: 100%; object-fit: cover; }

  /* ── Product page hero image ── */
  .product-layout { grid-template-columns: 1fr !important; }
  .product-layout img { width: 100%; height: auto; max-height: 220px; object-fit: contain; }

  /* ── Containers & padding ── */
  .container { padding: 0 16px; overflow: hidden; }
  .section { padding: 40px 16px; overflow: hidden; }
  .page-hero { padding: 40px 16px; }

  /* ── Fix any inline padding causing overflow ── */
  [style*="padding:80px 48px"] { padding: 40px 16px !important; }
  [style*="padding:0 48px"] { padding: 0 16px !important; }
  [style*="padding:0 32px"] { padding: 0 16px !important; }
  [style*="padding:64px 32px"] { padding: 40px 16px !important; }

  /* ── Stats grid ── */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 16px 12px; }
  .stat-num { font-size: 28px; }

  /* ── Footer ── */
  footer { padding: 36px 16px 20px; overflow: hidden; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-desc { max-width: 100%; }
}

@media(max-width: 480px) {

  /* ── Hero even smaller ── */
  .hero-slider { height: 220px; }
  .slide-content { padding: 0 14px; }
  .slide-content p { display: none; }

  /* ── Images smaller ── */
  .industry-img { height: 160px; }
  .gallery-card-img { height: 150px; }
  .project-card-img { height: 150px; }
  .process-step-img-placeholder { height: 150px; }
  .fullwidth-banner { min-height: 220px; }

  /* ── Nav ── */
  .nav-inner { padding: 0 12px; height: 56px; }
  .nav-logo { padding: 6px 10px; }
  .nav-logo-main { font-size: 13px; }
  .nav-logo-sub { font-size: 8px; }

  /* ── Topbar ── */
  .topbar-inner { padding: 6px 12px; }
  .topbar-item { font-size: 11px; }

  /* ── Typography ── */
  .page-hero h1 { font-size: 20px; }
  .page-hero p { font-size: 13px; }
  .section-title { font-size: 20px; }

  /* ── Buttons ── */
  .btn { padding: 9px 14px; font-size: 12px; }

  /* ── Contact form ── */
  .contact-form-box { padding: 18px 14px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 14px; padding: 10px 12px; }
}


/* ══════════════════════════════════════════════════════
   COMPLETE RESPONSIVE FIX — Images, Layout, Products
   ══════════════════════════════════════════════════════ */

/* Global image fix */
img { max-width:100%; height:auto; display:block; }
*, *::before, *::after { box-sizing:border-box; }
html, body { overflow-x:hidden; max-width:100vw; }

/* Product list columns fix */
.products-cols { display:grid; grid-template-columns:repeat(auto-fill, minmax(200px,1fr)); gap:16px; }

@media(max-width:1024px){
  .products-cols { grid-template-columns:repeat(2,1fr); }
  .contact-grid { grid-template-columns:1fr; }
  .industry-row { grid-template-columns:1fr; gap:24px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .stats-grid, .projects-stats-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
}

@media(max-width:768px){
  /* Navbar */
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-quote { display:none; }
  .nav-inner { padding:0 16px; height:60px; }
  .nav-logo { padding:8px 12px; }
  .nav-logo-main { font-size:15px; }
  .nav-logo-sub { font-size:9px; }

  /* Topbar */
  .topbar-inner { padding:0 16px; }
  .topbar-right { display:none; }

  /* Hero */
  .hero-slider { height:260px; }
  .slide-content { padding:0 16px; }
  .slide-content h1 { font-size:clamp(18px,5vw,28px); margin-bottom:8px; }
  .slide-content p { font-size:13px; margin-bottom:14px; }
  .slide-content .btn { padding:8px 14px; font-size:12px; }

  /* Page hero */
  .page-hero { padding:40px 16px; }
  .page-hero h1 { font-size:clamp(22px,6vw,36px); }
  .page-hero p { font-size:14px; }

  /* Sections */
  .section { padding:40px 16px; }
  .container { padding:0 4px; }
  .section-title { font-size:clamp(20px,5vw,30px); }
  .section-subtitle { font-size:14px; margin-bottom:28px; }

  /* Industry images */
  .industry-img { height:200px; width:100%; overflow:hidden; }
  .industry-img img { width:100%; height:100%; object-fit:cover; }
  .industry-img-placeholder { height:200px; font-size:48px; }
  .industry-row { grid-template-columns:1fr; gap:20px; }
  .industry-text h3 { font-size:22px; }

  /* Fullwidth banner */
  .fullwidth-banner { height:auto; min-height:240px; padding:0; }
  .fullwidth-banner-img { height:240px; overflow:hidden; }
  .fullwidth-banner-img img { width:100%; height:100%; object-fit:cover; }
  .fullwidth-banner-content { padding:0 16px !important; }
  .fullwidth-banner-content h2 { font-size:clamp(20px,5vw,32px); }

  /* Stats */
  .stats-banner { padding:32px 16px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .stat-num { font-size:28px; }
  .stat-label { font-size:12px; }

  /* About page */
  .mv-grid { grid-template-columns:1fr; }
  .mv-card { padding:24px 20px; }
  .story-box { padding:24px 16px; }
  .timeline::before { left:18px; }
  .timeline-item { grid-template-columns:28px 1fr; }
  .timeline-item-left { display:none; }
  .timeline-card { padding:16px 18px; }
  .timeline-year { font-size:18px; }

  /* Process page */
  .process-step { grid-template-columns:1fr; }
  .process-step-content { padding:20px 16px; }
  .process-step-img { min-height:180px; }
  .process-step-img img { width:100%; height:180px; object-fit:cover; }
  .process-step-img-placeholder { height:180px; font-size:48px; }

  /* Products page */
  .products-cols { grid-template-columns:repeat(2,1fr); gap:10px; }
  .products-category-title { font-size:20px; padding-bottom:12px; margin-bottom:20px; }
  .products-col-header { font-size:14px; }
  .products-col-title { font-size:13px; }
  .products-col ul li a { font-size:13px; }

  /* Product cards (featured) */
  .product-layout { grid-template-columns:1fr !important; }

  /* Projects page */
  .projects-stats { padding:28px 16px; }
  .projects-stats-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .project-card-img { height:180px; }
  .project-card-img img { width:100%; height:100%; object-fit:cover; }

  /* Gallery */
  .gallery-grid { grid-template-columns:1fr; gap:14px; }
  .gallery-card-img { height:180px; overflow:hidden; }
  .gallery-card-img img { width:100%; height:100%; object-fit:cover; }

  /* Contact */
  .contact-grid { grid-template-columns:1fr; gap:24px; }
  .contact-form-box { padding:24px 16px; }
  .form-row { grid-template-columns:1fr; }

  /* Footer */
  footer { padding:36px 16px 20px; }
  .footer-grid { grid-template-columns:1fr; gap:20px; }
  .footer-desc { max-width:100%; }
  .footer-bottom { font-size:12px; }

  /* Buttons */
  .btn { padding:10px 16px; font-size:13px; }

  /* Fix inline paddings */
  [style*="padding:80px 48px"] { padding:36px 16px !important; }
  [style*="padding:0 48px"] { padding:0 16px !important; }
  [style*="padding:64px 32px"] { padding:36px 16px !important; }
  [style*="padding:0 32px"] { padding:0 16px !important; }
  [style*="padding:72px 32px"] { padding:36px 16px !important; }
  [style*="padding:56px 32px"] { padding:36px 16px !important; }
}

@media(max-width:480px){
  /* Topbar */
  .topbar-item:nth-child(2) { display:none; }
  .topbar-inner { padding:6px 12px; }

  /* Nav */
  .nav-inner { height:56px; padding:0 12px; }
  .nav-logo-main { font-size:13px; }

  /* Hero */
  .hero-slider { height:220px; }
  .slide-content p { display:none; }
  .slide-content h1 { font-size:18px; }

  /* Sections */
  .section { padding:32px 12px; }
  .page-hero { padding:32px 12px; }
  .page-hero h1 { font-size:20px; }
  .section-title { font-size:20px; }

  /* Images */
  .industry-img { height:160px; }
  .gallery-card-img { height:160px; }
  .project-card-img { height:160px; }
  .fullwidth-banner-img { height:200px; }
  .process-step-img-placeholder { height:150px; }

  /* Stats */
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat-num { font-size:24px; }

  /* Products */
  .products-cols { grid-template-columns:1fr; }

  /* Contact */
  .contact-form-box { padding:18px 12px; }
  .form-group input, .form-group select, .form-group textarea { font-size:14px; padding:10px 12px; }

  /* Footer */
  .footer-bottom { font-size:11px; padding-top:16px; }
}

/* ══════════════════════════════════════════
   TIMELINE MOBILE FIX
   ══════════════════════════════════════════ */
@media(max-width: 768px){
  .timeline { padding: 10px 0 10px 8px; }
  .timeline::before { left: 12px; top: 0; bottom: 0; }
  .timeline-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
    grid-template-columns: unset;
  }
  .timeline-item-left { display: none !important; }
  .timeline-dot {
    width: 14px; height: 14px;
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
    z-index: 1;
  }
  .timeline-item-right {
    flex: 1;
    padding-left: 0;
  }
  .timeline-card {
    padding: 14px 16px;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .timeline-year { font-size: 18px; }
  .timeline-card-title { font-size: 14px; font-weight: 700; }
  .timeline-card-text { font-size: 13px; line-height: 1.6; }
}

/* ══════════════════════════════════════════
   NEW CLEAN TIMELINE — Works on ALL screens
   ══════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 0 10px 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item-mobile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-dot-mobile {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
  position: absolute;
  left: -37px;
  z-index: 1;
}
.timeline-item-mobile .timeline-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  width: 100%;
  box-sizing: border-box;
}
.timeline-year { font-size: 22px; font-weight: 900; color: var(--orange); margin-bottom: 6px; }
.timeline-card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.timeline-card-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

@media(max-width: 480px) {
  .timeline { padding-left: 28px; }
  .timeline::before { left: 8px; }
  .timeline-dot-mobile { left: -33px; width:14px; height:14px; }
  .timeline-item-mobile .timeline-card { padding: 14px 16px; }
  .timeline-year { font-size: 18px; }
  .timeline-card-title { font-size: 14px; }
  .timeline-card-text { font-size: 13px; }
}

/* ══════════════════════════════════════
   INDUSTRY ROW — Correct Layout Fix
   ══════════════════════════════════════ */
.industry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.industry-row .industry-img {
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
}
.industry-row .industry-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* On mobile: always stack text FIRST, image SECOND */
@media(max-width: 768px){
  .industry-row {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 36px;
  }
  /* Always show text before image regardless of DOM order */
  .industry-row .industry-text { order: 1; }
  .industry-row .industry-img  { order: 2; height: 200px; }
}
@media(max-width: 480px){
  .industry-row .industry-img { height: 160px; }
}

/* ── INDEX CONTACT BAR MOBILE FIX ── */
@media(max-width: 768px){
  /* Contact bar below hero - stack items properly */
  .contact-bar-inner { flex-direction:column; align-items:flex-start !important; gap:10px !important; }
  .contact-bar-inner a { font-size:13px !important; }

  /* Products page cards - ensure text visible */
  .product-card-body { padding:16px !important; }
  .product-card-body h3 { font-size:15px !important; }
  .product-card-body p { font-size:13px !important; }
}

/* Products page - ensure card text fully visible */
[style*="minmax(280px"] .card,
[style*="minmax(300px"] .card {
  display:flex;
  flex-direction:column;
  height:auto !important;
}
[style*="minmax(280px"] .card > div:last-child,
[style*="minmax(300px"] .card > div:last-child {
  flex:1;
  display:flex;
  flex-direction:column;
}

/* ── NAVBAR + MOBILE MENU STICKY WRAPPER FIX ── */
@media(max-width:768px){
  .navbar{
    position:sticky;
    top:0;
    z-index:1000;
  }
  .mobile-menu{
    position:sticky !important;
    top:60px !important;
    z-index:999 !important;
  }
  .mobile-menu.open{
    display:flex !important;
  }
}
