/* =============================================
   SWARNA PRINTING — style.css  v2
   White/light theme · Clean ecommerce UI
   Font: Plus Jakarta Sans
   ============================================= */

:root {
  --orange:   #FF6B2B;
  --orange-d: #e05820;
  --orange-l: #FFF0E8;
  --text:     #1A1A2E;
  --text-2:   #4B5563;
  --text-3:   #9CA3AF;
  --border:   #E5E7EB;
  --bg:       #FFFFFF;
  --bg-2:     #F8F9FC;
  --bg-3:     #F3F4F6;
  --radius:   16px;
  --radius-s: 10px;
  --shadow-s: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-m: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-l: 0 8px 40px rgba(0,0,0,0.13);
  --wa:       #25D366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: 100%; object-fit: cover; }

/* ── Layout Helpers ─────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.sec-head.center { text-align: center; margin-bottom: 52px; }
.sec-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2;
  color: var(--text); margin-bottom: 14px;
}
.sec-p { color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.sec-sub { color: var(--text-2); font-size: 1rem; max-width: 500px; }
.sec-head.center .sec-sub { margin: 0 auto; }
.accent-text {
  background: linear-gradient(135deg, var(--orange), #FF3366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pill-label {
  display: inline-flex; align-items: center;
  background: var(--orange-l);
  color: var(--orange);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px;
}

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--orange); color: #fff;
  padding: 14px 30px; border-radius: 100px;
  font-weight: 700; font-size: 0.92rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,107,43,0.35);
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,43,0.4); }
.btn-sec {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
  padding: 13px 28px; border-radius: 100px;
  font-weight: 600; font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-sec:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-l); }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 16px 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark.sm { width: 32px; height: 32px; font-size: 0.95rem; border-radius: 8px; }
.logo-name { display: block; font-weight: 800; font-size: 1.05rem; color: var(--text); line-height: 1.1; }
.logo-tag  { display: block; font-size: 0.7rem; color: var(--text-3); font-weight: 500; letter-spacing: 0.05em; }

.nav-links {
  display: flex; gap: 28px; margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 600; color: var(--text-2);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a:hover { color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-2);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--orange); }
.btn-wa-nav {
  display: flex; align-items: center; gap: 6px;
  background: var(--wa); color: #fff;
  padding: 9px 18px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  margin-left: auto; /* pushes hamburger to far right on mobile */
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(160deg, #fff 60%, #FFF5F0 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.12;
  color: var(--text); margin-bottom: 20px;
}
.hero-sub { color: var(--text-2); font-size: 1rem; margin-bottom: 32px; max-width: 440px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--text); }
.stat-item span  { font-size: 0.75rem; color: var(--text-3); font-weight: 500; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* Hero Right */
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.hero-card-main {
  border-radius: var(--radius); overflow: hidden;
  height: 280px; position: relative;
  box-shadow: var(--shadow-l);
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hcm-overlay {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.8rem; font-weight: 700; color: var(--text);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-card-sm {
  border-radius: var(--radius-s); overflow: hidden;
  height: 110px; position: relative;
  box-shadow: var(--shadow-s); cursor: default;
}
.hero-card-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hero-card-sm:hover img { transform: scale(1.06); }
.hero-card-sm span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 16px 10px 8px; text-align: center;
}

/* ── MARQUEE ─────────────────────────────────── */
.marquee-bar {
  background: var(--orange); overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 0;
}
.marquee-track span {
  flex-shrink: 0; padding: 0 18px;
  font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: 0.04em;
}
.marquee-track .msep { color: rgba(255,255,255,0.5); padding: 0 4px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT ───────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-imgs { position: relative; }
.ai-main {
  border-radius: var(--radius); overflow: hidden;
  height: 380px; box-shadow: var(--shadow-l);
}
.ai-secondary {
  position: absolute; bottom: -28px; right: -20px;
  width: 180px; border-radius: var(--radius-s);
  overflow: hidden; box-shadow: var(--shadow-l);
  border: 4px solid #fff;
}
.ai-secondary img { height: 130px; width: 100%; }
.ai-badge {
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 12px 14px;
}
.aib-num { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.aib-label { font-size: 0.72rem; font-weight: 700; line-height: 1.3; opacity: 0.9; }

.about-content { padding-bottom: 28px; }
.about-feats { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.af-item { display: flex; gap: 12px; align-items: flex-start; }
.af-ic {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.af-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.af-item p { font-size: 0.78rem; color: var(--text-3); }

/* ── SERVICES ────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--bg); border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.svc-img-wrap { position: relative; height: 200px; overflow: hidden; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.svc-card:hover .svc-img-wrap img { transform: scale(1.06); }
.svc-badge {
  position: absolute; top: 14px; left: 14px;
  color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.svc-body { padding: 22px 20px 24px; }
.svc-body h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.svc-body p { font-size: 0.83rem; color: var(--text-2); margin-bottom: 16px; line-height: 1.6; }
.svc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: 0.83rem; font-weight: 700;
  transition: gap 0.2s;
}
.svc-cta:hover { gap: 10px; }

/* ── QUOTATION ───────────────────────────────── */
.filter-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px; justify-content: center;
}
.fpill {
  background: var(--bg); border: 1.5px solid var(--border);
  color: var(--text-2); padding: 9px 22px;
  border-radius: 100px; font-size: 0.84rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.fpill:hover { border-color: var(--orange); color: var(--orange); }
.fpill.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Product Grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Product Card — ecommerce style */
.prod-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.prod-card.selected { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(255,107,43,0.15); }

.prod-img {
  height: 170px; overflow: hidden; position: relative;
  background: var(--bg-3);
}
.prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.prod-card:hover .prod-img img { transform: scale(1.06); }
.prod-cat-tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 100px; padding: 3px 10px;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text);
}

.prod-body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.prod-name { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.prod-desc { font-size: 0.78rem; color: var(--text-3); line-height: 1.55; }

/* Qty + Enquire row */
.prod-actions {
  display: flex; gap: 8px; align-items: center; margin-top: auto;
}
.qty-box {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-s);
  overflow: hidden; flex: 1;
  transition: border-color 0.2s;
}
.qty-box:focus-within { border-color: var(--orange); }
.qty-btn {
  width: 34px; height: 36px; background: var(--bg-2);
  border: none; cursor: pointer; font-size: 1rem; font-weight: 700;
  color: var(--text-2); transition: background 0.15s;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--orange-l); color: var(--orange); }
.qty-input {
  flex: 1; border: none; text-align: center;
  font-size: 0.85rem; font-weight: 700; color: var(--text);
  background: transparent; outline: none; min-width: 0;
  font-family: 'Plus Jakarta Sans', sans-serif; padding: 8px 4px;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.btn-enquire {
  display: flex; align-items: center; gap: 5px;
  background: var(--wa); color: #fff;
  border: none; border-radius: var(--radius-s);
  padding: 0 12px; height: 36px;
  font-size: 0.75rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-enquire:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-enquire svg { fill: white; flex-shrink: 0; }

/* Summary Bar */
.summary-bar {
  position: sticky; bottom: 20px; z-index: 200;
}
.sb-content {
  background: #fff; border: 1.5px solid var(--orange);
  border-radius: var(--radius); padding: 18px 24px;
  box-shadow: 0 12px 40px rgba(255,107,43,0.15), 0 2px 8px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.sb-info { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 0; }
.sb-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.sb-title { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sb-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.sb-chip {
  background: var(--orange-l); color: var(--orange);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: 100px; padding: 3px 12px;
  font-size: 0.75rem; font-weight: 700;
}
.sb-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-clear-s {
  background: none; border: 1.5px solid var(--border);
  color: var(--text-2); padding: 10px 18px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-clear-s:hover { border-color: #EF4444; color: #EF4444; }
.btn-wa-quote {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff;
  padding: 11px 22px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-wa-quote:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-wa-quote svg { fill: white; }

/* ── WHY US ──────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.wl-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.why-list strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.why-list p { font-size: 0.8rem; color: var(--text-3); }

.why-right { display: flex; flex-direction: column; gap: 16px; }
.review-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-m); }
.rc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rc-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
}
.rc-top strong { display: block; font-size: 0.88rem; color: var(--text); font-weight: 700; }
.rc-top span { font-size: 0.75rem; color: var(--text-3); }
.rc-stars { color: #F59E0B; font-size: 0.85rem; margin-left: auto; white-space: nowrap; }
.review-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; font-style: italic; }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.ci-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.ci-item:last-of-type { border-bottom: none; }
.ci-ic { font-size: 1.3rem; flex-shrink: 0; }
.ci-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ci-item p { font-size: 0.83rem; color: var(--text-2); line-height: 1.6; }
.ci-item a { color: var(--text-2); transition: color 0.2s; }
.ci-item a:hover { color: var(--orange); }
.closed { color: #EF4444; }
.btn-wa-contact {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--wa); color: #fff;
  padding: 15px 24px; border-radius: var(--radius-s);
  font-weight: 700; font-size: 0.9rem; margin-top: 20px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-wa-contact:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.3); }
.contact-map { border-radius: var(--radius); overflow: hidden; min-height: 380px; border: 1px solid var(--border); }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: #111827; padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand p { color: #9CA3AF; font-size: 0.84rem; line-height: 1.7; margin-bottom: 8px; }
.f-phone { color: #D1D5DB !important; font-weight: 600 !important; }
.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 18px; }
.footer-col a, .footer-col p {
  display: block; color: #9CA3AF;
  font-size: 0.82rem; margin-bottom: 10px;
  transition: color 0.2s; line-height: 1.6;
}
.footer-col a:hover { color: var(--orange); }
.footer-wa {
  display: inline-block; color: #34D399 !important;
  font-weight: 600; margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid #1F2937; padding: 22px 0;
  text-align: center;
}
.footer-bottom p { color: #6B7280; font-size: 0.8rem; }

/* ── WhatsApp FAB ────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.2s;
}
.wa-fab:hover { transform: scale(1.1); }
.fab-pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: fabp 2s ease-out infinite;
}
@keyframes fabp { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.45);opacity:0} }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ── Navbar: logo left, hamburger hard-right ── */
  .nav-inner { gap: 0; }           /* remove gap so items sit flush */
  .nav-links {
    /* Hidden by default — renders as fullscreen overlay when .open */
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 28px;
    z-index: 1001;   /* sits above navbar (z-index 1000) */
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; }
  .nav-actions { display: none; }
  .hamburger {
    display: flex;
    z-index: 1002;   /* sits above the overlay so user can close it */
  }

  /* ── Hero ── */
  .hero { padding: 110px 0 60px; }

  /* ── Stats: force all 4 in one row, tighter spacing ── */
  .hero-stats {
    gap: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    width: 100%;
  }
  .stat-item { text-align: center; }
  .stat-item strong { font-size: 1.1rem; }
  .stat-item span { font-size: 0.65rem; }
  .stat-div { width: 1px; height: 28px; background: var(--border); justify-self: center; }

  /* ── Service cards: 2 per row on mobile ── */
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc-img-wrap { height: 140px; }
  .svc-body { padding: 14px 12px 16px; }
  .svc-body h3 { font-size: 0.88rem; }
  .svc-body p { font-size: 0.75rem; }
  .svc-cta { font-size: 0.78rem; }

  /* ── Product cards: 2 per row on mobile ── */
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod-img { height: 130px; }
  .prod-body { padding: 10px 10px 12px; gap: 7px; }
  .prod-name { font-size: 0.82rem; }
  .prod-desc { font-size: 0.72rem; }
  .qty-btn { width: 28px; height: 32px; font-size: 0.9rem; }
  .qty-input { font-size: 0.78rem; padding: 6px 2px; }
  .btn-enquire { padding: 0 9px; height: 32px; font-size: 0.68rem; }
  .btn-enquire svg { width: 11px; height: 11px; }

  /* ── About / misc ── */
  .ai-secondary { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-pad { padding: 64px 0; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 2.2rem; }
  .sb-content { flex-direction: column; align-items: flex-start; }
  .sb-actions { width: 100%; }
  .btn-wa-quote { width: 100%; justify-content: center; }
  .btn-clear-s { width: 100%; text-align: center; }
}

/* ── very small screens: keep 2 col but compact ── */
@media (max-width: 380px) {
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid  { grid-template-columns: 1fr 1fr; }
  .btn-enquire span { display: none; } /* hide "Enquire" text, keep icon only */
}

/* ── Scroll Reveal ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
