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

:root {
  /* Premium industrial palette — Fortune-500 grade */
  --color-navy: #0F172A;
  --color-navy-2: #1E293B;
  --color-primary: #DC2626;
  --color-primary-dark: #B91C1C;
  --color-secondary: #0F172A;
  --color-accent: #D4AF37;
  --color-steel: #6B7280;
  --color-light-steel: #F8FAFC;
  --color-white: #FFFFFF;
  --color-text: #111827;
  --color-text-light: #6B7280;
  --color-success: #16A34A;
  --color-warning: #D97706;

  --font-sans: 'Inter', 'Noto Sans Devanagari', -apple-system, 'Segoe UI', sans-serif;
  --font-head: 'Inter', 'Noto Sans Devanagari', -apple-system, 'Segoe UI', sans-serif;

  --font-hero: clamp(2.6rem, 5.5vw, 4.5rem);
  --font-h1: clamp(2rem, 4vw, 3rem);
  --font-h2: clamp(1.65rem, 3.2vw, 2.6rem);
  --font-h3: clamp(1.15rem, 2vw, 1.5rem);
  --font-body: 1.0625rem;
  --font-small: 0.875rem;
  --font-label: 0.75rem;

  --section-padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  --container-max: 1240px;
  --container-pad: max(1.25rem, 5vw);
  --card-radius: 16px;
  --border-radius: 10px;
  --box-shadow: 0 1px 3px rgba(15,23,42,0.06), 0 4px 16px rgba(15,23,42,0.06);
  --box-shadow-hover: 0 8px 24px rgba(15,23,42,0.10), 0 20px 48px rgba(15,23,42,0.10);
  --transition-premium: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }

.section-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--font-h2);
  letter-spacing: -0.025em;
  color: var(--color-secondary);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-heading::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.05em;
  background: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-subtext {
  color: var(--color-text-light);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 3rem;
  padding-left: 18px;
  max-width: 720px;
}

/* ===== BUTTONS — premium, lift hover, luxury shadow ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: var(--transition-premium);
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(15,23,42,0.18);
}

.btn-primary:hover {
  background: var(--color-navy-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.25);
}

.btn-secondary {
  background: var(--color-white);
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
}

.btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.18);
}

.btn-whatsapp {
  background: #1FAF5A;
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(31,175,90,0.25);
}

.btn-whatsapp:hover {
  background: #178F49;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31,175,90,0.32);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.btn-white:hover {
  background: var(--color-light-steel);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: var(--font-label);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.badge-bis { background: #1A3A5C; color: white; }
.badge-msme { background: var(--color-success); color: white; }
.badge-pending { background: var(--color-warning); color: white; }
.badge-is { background: var(--color-secondary); color: white; }
.badge-ec { background: #6C3483; color: white; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--color-secondary);
  color: rgba(255,255,255,0.85);
  font-size: var(--font-small);
  padding: 7px 0;
  display: none;
}

@media (min-width: 768px) { .topbar { display: block; } }

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: white; }

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ===== NAVBAR — premium glass header ===== */
.navbar {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 0 rgba(15,23,42,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-premium);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-logo img { height: 52px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 10px 15px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.005em;
  color: var(--color-navy-2);
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
}

.nav-links a:hover { color: var(--color-primary); background: transparent; }
.nav-links a.active { color: var(--color-primary); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.14), 0 2px 8px rgba(15,23,42,0.06);
  border: 1px solid rgba(15,23,42,0.06);
  min-width: 280px;
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.3s cubic-bezier(0.22,1,0.36,1), transform 0.3s cubic-bezier(0.22,1,0.36,1), visibility 0.3s;
  z-index: 100;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 0;
  background: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu a:hover { background: var(--color-light-steel); color: var(--color-navy); padding-left: 28px; }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: white;
  padding: 1rem var(--container-pad);
  border-top: 1px solid var(--color-light-steel);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-light-steel);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--color-primary); }

.mobile-menu .mobile-sub a {
  padding-left: 1.5rem;
  font-weight: 400;
  font-size: 0.875rem;
}

.mobile-cta { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ===== HERO — pure image banner (no text overlay) ===== */
.hero {
  display: none; /* base hero hidden; banner variant used instead */
}

.hero.hero-banner {
  display: block;
  background: none;
  padding: 0;
  line-height: 0; /* remove any gap below img */
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset; /* show full image, no crop */
}

/* ===== HERO INTRO — text + buttons below banner ===== */
.hero-intro-section {
  background: #ffffff;
  border-bottom: 1px solid rgba(15,23,42,0.07);
  padding: 4rem 0 4.5rem;
}

.hero-intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.hero-label-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 1.1rem;
}

.hero-label-dark::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.hero-intro-heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}

.hero-intro-sub {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.75;
}

.hero-intro-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-intro-inner { flex-direction: column; align-items: flex-start; }
  .hero-intro-buttons { width: 100%; }
}

/* Legacy — keep label style for other pages that still use .hero-label */
.hero-label {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--font-label);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.65;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  font-family: var(--font-sans);
}

/* ===== RATE TICKER ===== */
.rate-ticker-section {
  background: var(--color-secondary);
  padding: 1.5rem 0;
}

.ticker-inner { display: flex; flex-direction: column; gap: 1rem; }

.ticker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ticker-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--font-small);
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-rates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) { .ticker-rates { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ticker-rates { grid-template-columns: 1fr; } }

.rate-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--color-accent);
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius);
}

.rate-product {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.rate-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-accent);
}

.rate-note {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

.ticker-footnote {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ===== TRUST BADGES ===== */
.trust-strip { background: var(--color-light-steel); padding: 3.5rem 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}

@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(15,23,42,0.05);
}

.trust-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.trust-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 0.3rem;
}

.trust-detail {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

/* ===== SECTION ===== */
section { padding: var(--section-padding); }

.section-header { margin-bottom: 2.5rem; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}

@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: white;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition-premium);
}

.product-card:hover {
  box-shadow: var(--box-shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(15,23,42,0.12);
}

.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card { display: flex; flex-direction: column; }

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}

.product-card-body .btn { margin-top: auto; align-self: stretch; }

.product-card-body .badge { margin-bottom: 0.75rem; }

.product-card-body h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.product-card-sizes {
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--color-navy-2);
  margin-bottom: 0.75rem;
  padding: 5px 12px;
  background: #F1F5F9;
  border-radius: 6px;
  display: inline-block;
}

.product-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }

.product-tag {
  font-size: 0.72rem;
  padding: 3px 8px;
  background: var(--color-light-steel);
  color: var(--color-secondary);
  border-radius: 3px;
  font-family: var(--font-head);
  font-weight: 600;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 1.5rem;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--card-radius);
  background: white;
  box-shadow: var(--box-shadow);
  transition: var(--transition-premium);
}

.why-card:hover { box-shadow: var(--box-shadow-hover); transform: translateY(-6px); }

.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.why-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: 0.6rem;
}

.why-card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.7; }

/* ===== INDUSTRIES GRID ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .industries-grid { grid-template-columns: 1fr; } }

.industry-card {
  padding: 1.5rem;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--card-radius);
  background: white;
  box-shadow: var(--box-shadow);
  transition: var(--transition-premium);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industry-card:hover {
  box-shadow: var(--box-shadow-hover);
  transform: translateY(-6px);
}

.industry-icon { margin-bottom: 0.75rem; }

.industry-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--color-secondary);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.industry-product {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-family: var(--font-head);
}
.industry-detail {
  font-size: 0.78rem;
  color: var(--color-steel);
  margin-bottom: 0.9rem;
  letter-spacing: 0.2px;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
  padding: 5.5rem 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) { .counter-grid { grid-template-columns: repeat(2, 1fr); } }

.counter-number {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  display: block;
  line-height: 1;
}

.counter-label {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.75rem;
  display: block;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(160deg, var(--color-navy) 0%, #16213A 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 0 0 3px 3px;
}

.cta-strip h2 {
  color: white;
  font-size: var(--font-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.25rem;
  font-size: 1.125rem;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== NARROW HERO ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(15,23,42,0.94) 0%, rgba(30,41,59,0.86) 100%),
              url('../images/factory/factory-entrance.png') center/cover no-repeat;
  padding: 5rem 0 4rem;
  color: white;
}

.page-hero h1 {
  font-size: var(--font-h1);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  color: white;
}

.breadcrumb {
  font-size: var(--font-small);
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--color-accent); }

.page-hero-sub { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 600px; }

/* ===== PRODUCT FILTER ===== */
.filter-bar {
  background: white;
  border-bottom: 2px solid var(--color-light-steel);
  padding: 1rem 0;
  position: sticky;
  top: 66px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.filter-inner {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.filter-btn {
  padding: 9px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid rgba(15,23,42,0.12);
  border-radius: 8px;
  background: white;
  color: var(--color-navy-2);
  cursor: pointer;
  transition: var(--transition-premium);
  min-height: 44px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: white;
  box-shadow: 0 4px 14px rgba(15,23,42,0.18);
}

/* ===== PRODUCT CATEGORY SECTION ===== */
.product-category { padding: 3rem 0; border-bottom: 1px solid var(--color-light-steel); }
.product-category:last-child { border-bottom: none; }

.category-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (max-width: 768px) { .category-header { grid-template-columns: 1fr; } }

.category-photo {
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-photo img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }

.category-info h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--font-h2);
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.category-info .badge { margin-right: 0.4rem; margin-bottom: 0.75rem; }

.category-meta {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-meta strong { color: var(--color-secondary); }

.category-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

/* ===== PRODUCT TABLE ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.875rem;
  min-width: 600px;
}

thead { background: var(--color-secondary); color: white; position: sticky; top: 0; }

th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

td { padding: 10px 16px; border-bottom: 1px solid var(--color-light-steel); }

tbody tr:hover { background: #f5f7fa; }

tbody tr:last-child td { border-bottom: none; }

.stock-in { color: var(--color-success); font-weight: 700; }
.stock-custom { color: var(--color-warning); font-weight: 700; }

.table-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
  padding: 0.75rem 0;
}

/* First column sticky on mobile */
@media (max-width: 600px) {
  td:first-child, th:first-child {
    position: sticky;
    left: 0;
    background: white;
    z-index: 1;
  }
  thead th:first-child { background: var(--color-secondary); }
}

/* ===== ABOUT TIMELINE ===== */
.timeline { position: relative; padding-left: 2.5rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-light-steel);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 0.2rem;
  line-height: 1.5;
}

/* ===== MVV CARDS ===== */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .mvv-grid { grid-template-columns: 1fr; } }

.mvv-card {
  padding: 1.75rem;
  border-radius: var(--card-radius);
  border: 1px solid var(--color-light-steel);
  background: white;
}

.mvv-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.mvv-card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.7; }

/* ===== MACHINE GRID ===== */
.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) { .machine-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .machine-grid { grid-template-columns: 1fr; } }

.machine-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background: white;
}

.machine-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machine-photo img { width: 100%; height: 100%; object-fit: contain; }

.machine-caption {
  padding: 0.85rem 1rem;
  font-size: 0.825rem;
  color: var(--color-secondary);
  font-weight: 600;
  font-family: var(--font-head);
  line-height: 1.4;
}

.machine-caption-sub {
  font-weight: 400;
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  margin-top: 2px;
}

/* ===== LEGAL TABLE ===== */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-light-steel);
  font-size: 0.9rem;
}

.legal-table tr:last-child td { border-bottom: none; }

.legal-table td:first-child {
  font-weight: 600;
  color: var(--color-secondary);
  width: 40%;
  background: #f8f9fa;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #0F172A;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,46,0.6);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--card-radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== QUALITY PAGE ===== */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .cert-grid { grid-template-columns: 1fr; } }

.cert-card {
  padding: 2rem;
  border-radius: var(--card-radius);
  border: 1px solid var(--color-light-steel);
  background: white;
  box-shadow: var(--box-shadow);
  text-align: center;
  border-top: 4px solid var(--color-primary);
}

.cert-icon { font-size: 3rem; margin-bottom: 1rem; }

.cert-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
}

.cert-standard {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.quality-note {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-left: 4px solid var(--color-warning);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  color: var(--color-text);
  margin-top: 2rem;
  line-height: 1.6;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.process-step {
  text-align: center;
  padding: 1.5rem 0.75rem;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .process-step::after {
    content: '↓';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -15px;
    transform: translateX(-50%);
  }
}

.process-step:last-child::after { display: none; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 0.75rem;
}

.step-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-secondary);
  margin-bottom: 0.3rem;
}

.step-check {
  font-size: 0.72rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* ===== INDUSTRIES PAGE ===== */
.industry-section { padding: 3rem 0; border-bottom: 1px solid var(--color-light-steel); }
.industry-section:last-child { border-bottom: none; }

.industry-section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) { .industry-section-inner { grid-template-columns: 1fr; } }

.industry-icon-large {
  font-size: 4rem;
  text-align: center;
  background: var(--color-light-steel);
  padding: 2rem;
  border-radius: var(--card-radius);
}

.industry-body h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--font-h2);
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.industry-body h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--color-primary);
  flex-shrink: 0;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0;
}

@media (max-width: 600px) { .industry-detail-grid { grid-template-columns: 1fr; } }

.industry-detail-card {
  background: var(--color-light-steel);
  padding: 1rem;
  border-radius: var(--border-radius);
}

.industry-detail-card .label {
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-steel);
  margin-bottom: 0.3rem;
}

.industry-detail-card .value {
  font-size: 0.875rem;
  color: var(--color-secondary);
  font-weight: 500;
}

/* ===== ENQUIRY FORM ===== */
.enquiry-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) { .enquiry-layout { grid-template-columns: 1fr; } }

.form-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--color-light-steel);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group label .req { color: var(--color-primary); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(15,23,42,0.14);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: white;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 4px rgba(15,23,42,0.07);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }
.checkbox-row input { width: auto; min-height: auto; }
.checkbox-row label { font-weight: 400; text-transform: none; font-size: 0.875rem; }

.form-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

.contact-side-card {
  background: var(--color-secondary);
  color: white;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-side-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-item { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-item-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-text { font-size: 0.875rem; line-height: 1.6; }
.contact-item-text strong { display: block; color: white; font-family: var(--font-head); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; color: var(--color-accent); }
.contact-item-text a { color: rgba(255,255,255,0.85); }
.contact-item-text a:hover { color: white; }

.hours-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

/* ===== DELIVERY PAGE ===== */
.delivery-table-wrapper {
  overflow-x: auto;
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow);
}

.delivery-table { min-width: 700px; }

.zone-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
}

.zone-1 { background: #27AE60; color: white; }
.zone-2 { background: #2980B9; color: white; }
.zone-3 { background: var(--color-warning); color: white; }
.zone-4 { background: var(--color-steel); color: white; }

.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 600px) { .payment-grid { grid-template-columns: 1fr; } }

.payment-card {
  padding: 1.5rem;
  border-radius: var(--card-radius);
  background: white;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--color-light-steel);
}

.payment-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.payment-card ul { font-size: 0.875rem; color: var(--color-text-light); }
.payment-card ul li { padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.payment-card ul li::before { content: '✅'; font-size: 0.8rem; }

.bank-detail-box {
  background: var(--color-secondary);
  color: white;
  border-radius: var(--card-radius);
  padding: 1.5rem 2rem;
  font-family: var(--font-head);
}

.bank-detail-box h4 { color: var(--color-accent); margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.bank-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.875rem; }
.bank-row:last-child { border-bottom: none; }
.bank-row .bank-label { color: rgba(255,255,255,0.6); }
.bank-row .bank-val { color: white; font-weight: 700; letter-spacing: 0.5px; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.map-container {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-placeholder {
  background: var(--color-light-steel);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: var(--card-radius);
  text-align: center;
  padding: 1.5rem;
}

.map-placeholder p { font-size: 0.875rem; color: var(--color-text-light); }

.contact-col h3 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-col h3::before {
  content: '';
  width: 3px;
  height: 1em;
  background: var(--color-primary);
  flex-shrink: 0;
}

.quick-form { display: flex; flex-direction: column; gap: 0.75rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.75);
  padding: 6rem 0 0;
  border-top: 3px solid var(--color-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { margin-bottom: 1rem; }

.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-reg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-col ul li a:hover { color: white; padding-left: 5px; }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  align-items: flex-start;
}

.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  animation: fadeInFab 0.5s 3s forwards;
}

@keyframes fadeInFab { to { opacity: 1; } }

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

@media (min-width: 769px) {
  .whatsapp-fab { animation: none; opacity: 1; }
}

/* ===== CUSTOM ENQUIRY BOX ===== */
.custom-box {
  background: var(--color-light-steel);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  border: 2px dashed #ccc;
  margin-top: 2rem;
}

.custom-box h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.custom-box p { color: var(--color-text-light); margin-bottom: 1.25rem; font-size: 0.9rem; }

/* ===== SUPPORTING REGS ===== */
.support-regs { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

.support-reg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-light-steel);
  font-size: 0.875rem;
  box-shadow: var(--box-shadow);
}

.support-reg .check { color: var(--color-success); font-weight: 700; }

/* ===== QC COMMITMENT ===== */
.qc-commitment {
  background: var(--color-secondary);
  color: white;
  border-radius: var(--card-radius);
  padding: 2rem;
}

.qc-commitment h3 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.qc-list { display: flex; flex-direction: column; gap: 0.5rem; }
.qc-list li { font-size: 0.9rem; color: rgba(255,255,255,0.85); display: flex; align-items: flex-start; gap: 0.5rem; }

/* ===== ABOUT HERO ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) { .about-layout { grid-template-columns: 1fr; } }

.about-photo {
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 400px;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOCUS OUTLINE ===== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===== LIGHT SECTION BG ===== */
.bg-light { background: var(--color-light-steel); }
.bg-white { background: white; }

/* ===== HERO STATS CARD ===== */
.hero-stats-card {
  background: rgba(20, 24, 40, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--card-radius);
  padding: 1.5rem 1.25rem;
}

/* ===== SVG ICON HELPERS ===== */
.topbar-item { display: inline-flex; align-items: center; gap: 5px; }

.topbar-ico {
  width: 13px; height: 13px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; vertical-align: middle;
}

.trust-svg {
  width: 38px; height: 38px;
  fill: none; stroke: #DC2626;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  display: block; margin: 0 auto 0.6rem;
}

.why-svg {
  width: 42px; height: 42px;
  fill: none; stroke: #DC2626;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  display: block; margin-bottom: 1rem;
}

.industry-svg {
  width: 36px; height: 36px;
  fill: none; stroke: #DC2626;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  display: block; margin-bottom: 0.75rem;
}

.footer-ico {
  width: 14px; height: 14px;
  fill: none; stroke: rgba(255,255,255,0.5);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 3px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ===== TRUST CARD HOVER ===== */
.trust-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--box-shadow-hover); }

/* ===== COUNTER DIVIDERS ===== */
.counter-grid > div {
  position: relative;
  padding: 1rem 1.5rem;
}

.counter-grid > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .counter-grid > div::after { display: none; }
}

/* ===== NAV LOGO SIZING ===== */
.nav-logo img { height: 50px; }

/* ===== CENTERED SECTION HEADER (Image-2 style) ===== */
.section-header-center {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-header-center .section-heading {
  justify-content: center;
}

.section-header-center .section-heading::before { display: none; }

.section-header-center .section-subtext { padding-left: 0; text-align: center; margin: 0 auto; }

.section-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
}

.heading-clean {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.heading-clean::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* 4-col product cards: hide tags to avoid clutter */
@media (min-width: 1025px) {
  .products-grid .product-tags { display: none; }
  .products-grid .product-card-body { padding: 1rem; }
  .products-grid .product-card-body h3 { font-size: 0.95rem; }
  .products-grid .product-card-desc { font-size: 0.82rem; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
}

/* ===== FULL GALLERY PAGE ===== */
.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) { .gallery-grid-full { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .gallery-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gallery-grid-full { grid-template-columns: 1fr; } }

.gallery-card {
  background: #0F172A;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

.gallery-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F172A;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-img img { transform: scale(1.06); }

.gallery-card-caption {
  padding: 0.65rem 0.85rem;
  background: rgba(20, 24, 40, 0.97);
}

.gallery-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: white;
  margin-bottom: 0.15rem;
}

.gallery-card-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

.gallery-cat-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 2px;
  background: var(--color-primary);
  color: white;
}

.gallery-cat-badge.cat-machines { background: var(--color-secondary); }
.gallery-cat-badge.cat-quality  { background: var(--color-success); }
.gallery-cat-badge.cat-factory  { background: #6C3483; }

.gallery-count {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

/* ===== COMPANY INTRO (big-brand welcome strip) ===== */
.company-intro-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) { .company-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.company-intro-photo {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-hover);
}

.company-intro-photo img { width: 100%; height: 100%; object-fit: cover; }

.company-intro-body .heading-left { text-align: left; }
.company-intro-body .heading-left::after { margin-left: 0; }
.company-intro-body .section-label { text-align: left; }

.company-intro-body p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.intro-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

@media (max-width: 600px) { .intro-points { grid-template-columns: 1fr; } }

.intro-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-navy-2);
}

.intro-point svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--color-success);
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ===== COUNTER EYEBROW ===== */
.counter-header { text-align: center; margin-bottom: 3rem; }

.counter-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--color-primary);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--color-navy);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(15,23,42,0.30);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-premium);
}

.scroll-top-btn.show { opacity: 1; visibility: visible; transform: none; }

.scroll-top-btn:hover { background: var(--color-navy-2); transform: translateY(-3px); }

.scroll-top-btn svg {
  width: 20px; height: 20px;
  fill: none; stroke: white;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ===== LIGHTBOX PREV/NEXT ===== */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.lightbox-nav:hover { background: var(--color-primary); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-caption-box {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 24, 40, 0.88);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  text-align: center;
  max-width: 70vw;
  border-top: 2px solid var(--color-primary);
}

.lightbox-counter {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,24,40,0.75);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Brochure Download Button */
.brochure-download-block {
  text-align: center;
  margin: 24px auto;
}
.brochure-download-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.brochure-download-btn:hover {
  opacity: 0.88;
}
