/* ============================================
   LAKSHMI FORGING. Core Design System
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --color-navy:       #2E4162;
  --color-navy-dark:  #1A2A47;
  --color-navy-light: #4A5D82;
  --color-red:        #BE303B;
  --color-red-dark:   #9A2630;

  /* Neutrals */
  --color-white:      #FFFFFF;
  --color-off-white:  #F9FAFB;
  --color-light-gray: #E5E7EB;
  --color-mid-gray:   #9CA3AF;
  --color-body:       #6B7280;
  --color-heading:    #111827;
  --color-charcoal:   #1F2937;
  --color-footer-bg:  #111827;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Type Scale */
  --text-h1:    clamp(40px, 5vw, 64px);
  --text-h2:    clamp(32px, 4vw, 42px);
  --text-h3:    24px;
  --text-h4:    20px;
  --text-body:  16px;
  --text-small: 14px;

  /* Spacing */
  --section-py:   120px;
  --inner-gap:    32px;
  --max-width:    1240px;
  --grid-cols:    12;

  /* Effects */
  --transition: 0.3s ease;
  --radius-sm:  4px;
  --radius:     8px;
  --shadow-sm:  0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 12px 32px rgba(45, 64, 115, 0.08);
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py) 0;
}
.section--gray { background: var(--color-off-white); }
.section--dark { background: var(--color-charcoal); color: var(--color-white); }
.section--navy { background: var(--color-navy); color: var(--color-white); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--inner-gap);
}
.col-6  { grid-column: span 6; }
.col-4  { grid-column: span 4; }
.col-3  { grid-column: span 3; }
.col-8  { grid-column: span 8; }
.col-12 { grid-column: span 12; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--color-white); }

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 18px;
  color: var(--color-body);
  max-width: 640px;
  line-height: 1.7;
}
.section--dark .section-subtitle,
.section--navy .section-subtitle { color: rgba(255,255,255,0.75); }

/* Center variant */
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  line-height: 1;
}
.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(190, 45, 60, 0.2);
}
.btn--primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(190, 45, 60, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}
.btn--outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid rgba(45,64,115,0.2);
}
.btn--outline-navy:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn--dark {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(45,64,115,0.2);
}
.btn--dark:hover {
  background: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45,64,115,0.3);
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--color-red);
  margin: 16px 0 24px;
}
.text-center .divider { margin: 16px auto 24px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.3s ease;
}
.navbar.scrolled .container { height: 72px; }
.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo img {
  height: 64px;
  width: auto;
  transition: all 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.navbar.scrolled .navbar-logo img { height: 48px; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-heading);
  position: relative;
  transition: color var(--transition);
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width 0.3s ease;
}
.navbar-nav a:hover { color: var(--color-red); }
.navbar-nav a:hover::after { width: 100%; }
.navbar-nav a.active { color: var(--color-red); }
.navbar-nav a.active::after { width: 100%; }

.navbar-cta { margin-left: 16px; }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-heading);
  transition: all 0.3s ease;
}
.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;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--color-red); }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-heading);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 740px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(29, 40, 70, 0.95) 0%, rgba(29, 40, 70, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-content .section-label { color: rgba(255,255,255,0.75); }
.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat__num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.hero-stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-image {
  position: relative;
}
.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.intro-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--color-red);
  z-index: -1;
}
.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 20px 24px;
}
.intro-badge__num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.intro-badge__text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--inner-gap);
  align-items: stretch;
}
.industry-item {
  background: var(--color-white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
  height: 100%;
}
.industry-item:hover { 
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-item:hover .industry-icon { color: var(--color-navy); }
.industry-icon {
  font-size: 32px;
  color: var(--color-red);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color var(--transition);
}
.industry-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.industry-desc {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.6;
  flex: 1;
}

/* ============================================
   CAPABILITIES SECTION
   ============================================ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--inner-gap);
  align-items: stretch;
}
.capability-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.capability-icon {
  width: 56px;
  height: 56px;
  background: var(--color-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(190, 45, 60, 0.2);
}
.capability-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.capability-card p { 
  font-size: 15px; 
  color: var(--color-body);
  flex: 1; 
}
.capability-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-light-gray);
}
.capability-list li {
  font-size: 14px;
  color: var(--color-body);
  padding: 5px 0;
  padding-left: 14px;
  position: relative;
}
.capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 2px;
  background: var(--color-red);
}

/* ============================================
   EQUIPMENT SECTION
   ============================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--inner-gap);
}
.equipment-card {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.equipment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.equipment-card:hover img { transform: scale(1.05); }
.equipment-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,40,70,0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.3s ease;
}
.equipment-card:hover .equipment-overlay { background: rgba(29,40,70,0.78); }
.equipment-overlay h4 {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
}
.equipment-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--inner-gap);
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-light-gray);
  line-height: 1;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.service-card p { 
  font-size: 14px; 
  color: var(--color-body); 
  flex: 1;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--inner-gap);
  align-items: stretch;
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.product-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-heading);
}
.product-info p {
  font-size: 15px;
  color: var(--color-body);
  flex: 1;
}

/* ============================================
   CERTIFICATE & CLIENTS
   ============================================ */
.cert-clients-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
.cert-box {
  background: var(--color-white);
  padding: 48px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-bottom: 4px solid var(--color-red);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cert-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cert-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.cert-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-heading);
}
.cert-box p {
  font-size: 15px;
  color: var(--color-body);
  margin-bottom: 0;
}
.clients-wrapper {
  overflow: hidden;
  position: relative;
}
.clients-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scrollTrack 28s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  flex-shrink: 0;
  padding: 12px 28px;
  border: 1px solid var(--color-light-gray);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}
.client-logo:hover {
  color: var(--color-navy);
  border-color: var(--color-navy);
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,40,70,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(29,40,70,0.45); }
.gallery-overlay span {
  color: white;
  font-size: 28px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: scale(1); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--color-navy);
  padding: 100px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-bottom: 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  border-top: 4px solid var(--color-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.footer-logo img:hover { opacity: 1; }
.footer-about { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-red); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item span:first-child {
  color: var(--color-red);
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 0; }
.footer-bottom-right {
  display: flex;
  gap: 24px;
}
.footer-bottom-right a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-right a:hover { color: var(--color-red); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  background-color: var(--color-navy);
  background-image: url('https://images.unsplash.com/photo-1537462715879-360eeb61a0ad?w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  margin-top: 90px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 40, 70, 0.88);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
  display: block;
}
.page-hero h1 { 
  color: var(--color-white);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-top: 20px;
  max-width: 600px;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 2px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-white); text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--color-white); font-weight: 700; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.stats-bar {
  background: var(--color-navy);
  padding: 48px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.stat-num span { color: var(--color-red); }
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--inner-gap);
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
}
.team-card h4 { font-size: 18px; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--color-red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0; }

.mission-vision-item {
  padding: 48px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mission-vision-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mission-vision-item h3 { flex: 1; margin-bottom: 16px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--color-light-gray);
  position: relative;
  transition: background var(--transition);
}
.process-step:hover { background: var(--color-off-white); }
.process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-light-gray);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 16px; margin-bottom: 10px; }
.process-step p { font-size: 14px; }

/* ============================================
   EQUIPMENT PAGE
   ============================================ */
.equip-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--inner-gap);
  align-items: stretch;
}
.equip-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.equip-item:hover { 
  transform: translateY(-4px);
  box-shadow: var(--shadow-md); 
}
.equip-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.equip-info { padding: 28px; }
.equip-info h3 { font-size: 18px; margin-bottom: 8px; }
.equip-info p { font-size: 14px; margin-bottom: 16px; }
.equip-specs { display: flex; flex-direction: column; gap: 6px; }
.equip-spec { font-size: 13px; color: var(--color-body); }
.equip-spec strong { color: var(--color-heading); font-weight: 600; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-light-gray);
}
.service-row:nth-child(even) .service-row-img { order: 2; }
.service-row:nth-child(even) .service-row-content { order: 1; }
.service-row-img { height: 380px; overflow: hidden; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-row:hover .service-row-img img { transform: scale(1.03); }
.service-row-content {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-row-content h3 { font-size: 26px; margin-bottom: 16px; }
.service-row-content p { font-size: 15px; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-body);
}
.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-red);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-full-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: zoom-in;
}
.gallery-full-item.tall { aspect-ratio: 1/1.35; }
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,40,70,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-full-item:hover .gallery-full-overlay { background: rgba(29,40,70,0.5); }
.gallery-caption {
  color: white;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery-full-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-block h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 8px;
}
.contact-info-block p { font-size: 15px; color: var(--color-heading); line-height: 1.7; margin-bottom: 0; }
.contact-form { 
  background: var(--color-white); 
  padding: 56px; 
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--inner-gap);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  background: var(--color-off-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-heading);
  outline: none;
  transition: all var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(45,64,115,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(40%);
  margin-top: 48px;
}

/* ============================================
   NEW CONTACT PAGE (WEBSITE.DOCX)
   ============================================ */
.contact-top-map { width: 100%; height: 400px; border: none; margin-bottom: 60px; filter: grayscale(10%); }
.contact-header { text-align: center; margin-bottom: 64px; }
.contact-header h2 { font-size: 40px; color: var(--color-navy); text-transform: uppercase; font-weight: 800; border-bottom: 3px solid var(--color-red); display: inline-block; padding-bottom: 8px; margin-bottom: 48px; }
.contact-info-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; margin-bottom: 80px; }
.contact-box-icon { color: var(--color-red); margin-bottom: 20px; }
.contact-box-icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.contact-box h3 { font-size: 20px; color: var(--color-heading); margin-bottom: 12px; font-weight: 700; }
.contact-box p { font-size: 15px; color: var(--color-body); line-height: 1.6; }

.contact-form-wrapper { max-width: 900px; margin: 0 auto; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group-gray { display: flex; flex-direction: column; }
.form-group-gray input, .form-group-gray textarea {
  width: 100%;
  background: #F4F6F8;
  border: 1px solid transparent;
  padding: 16px 20px;
  font-size: 15px;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
  color: var(--color-heading);
  font-family: var(--font-body);
}
.form-group-gray input:focus, .form-group-gray textarea:focus { background: #E8ECEF; border-color: var(--color-navy); }
.form-group-gray textarea { min-height: 180px; resize: vertical; margin-bottom: 24px; }

.btn-dark-grey { 
  background-color: var(--color-navy); 
  color: white; 
  padding: 16px 40px; 
  border: none; 
  font-size: 16px; 
  font-weight: 600; 
  cursor: pointer; 
  border-radius: 4px; 
  transition: all 0.3s ease; 
  display: inline-block;
}
.btn-dark-grey:hover { background-color: var(--color-navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================
   NEW PRODUCTS PAGE (WEBSITE.DOCX)
   ============================================ */
.products-page-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-main { display: flex; flex-direction: column; gap: 80px; }
.product-detail-img { width: 100%; height: auto; margin-bottom: 24px; background: #f0f0f0; }
.product-detail-title { font-size: 22px; color: #0066cc; font-weight: 700; margin-bottom: 16px; font-family: var(--font-body); }
.product-detail-text { font-size: 15px; color: #555555; line-height: 1.8; }

.product-sidebar {
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  position: sticky;
  top: 120px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.product-sidebar-header {
  background-color: #82B9FD;
  color: #004D99;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.product-sidebar-list { list-style: none; padding: 0; margin: 0; }
.product-sidebar-list li { border-bottom: 1px solid #EAEAEA; }
.product-sidebar-list li:last-child { border-bottom: none; }
.product-sidebar-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  color: #0066cc;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s;
}
.product-sidebar-list a:hover { background-color: #F8FAFC; }
.product-sidebar-list a svg { width: 14px; height: 14px; stroke-width: 3; }

/* ============================================
   NEW MACHINERY PAGE (WEBSITE.DOCX)
   ============================================ */
.machine-header-wrapper { margin-bottom: 32px; }
.machine-header-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #BE2D3C; margin-bottom: 8px; font-family: var(--font-heading); }
.machine-header-title { font-size: 32px; color: var(--color-charcoal); font-weight: 800; font-family: var(--font-heading); }
.machine-header-line { width: 40px; height: 3px; background-color: #BE2D3C; margin-top: 12px; }

.machine-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: stretch; }
.machine-card {
  display: flex;
  background: white;
  border: 1px solid #EAEAEA;
  transition: transform 0.3s, box-shadow 0.3s;
}
.machine-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.machine-card-img { width: 45%; flex-shrink: 0; }
.machine-card-img img { width: 100%; height: 100%; object-fit: cover; }
.machine-card-content { width: 55%; padding: 32px; display: flex; flex-direction: column; justify-content: flex-start; }
.machine-card-content h3 { font-size: 18px; color: var(--color-heading); font-weight: 700; margin-bottom: 12px; }
.machine-card-content p { font-size: 13px; color: var(--color-body); margin-bottom: 24px; line-height: 1.6; }
.machine-specs { display: flex; flex-direction: column; gap: 8px; }
.machine-spec { font-size: 12px; color: var(--color-body); }
.machine-spec strong { color: var(--color-charcoal); font-weight: 700; }

/* ============================================
   NEW INDEX PAGE (WEBSITE.DOCX)
   ============================================ */
.doc-sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; row-gap: 48px; }
.doc-sector-card {
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.3s ease;
}
.doc-sector-card:hover { transform: translateY(-4px); }
.doc-sector-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 4px; border: 1px solid #EAEAEA; }
.doc-sector-bar {
  background-color: transparent; color: #888888; padding: 16px 0 0 0; text-align: center;
  font-family: var(--font-body); font-weight: 400; font-size: 16px;
}

.doc-cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 64px; }
.doc-cert-card { display: flex; flex-direction: column; background: #fff; height: 320px; overflow: hidden; border: 1px solid var(--color-navy-light);}
.doc-cert-top { background: #fbfbfb; flex-grow: 1; display: flex; align-items: center; justify-content: center; }
.doc-cert-top img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.doc-cert-bar { background-color: var(--color-navy-light); color: white; padding: 12px; text-align: center; font-size: 14px; font-weight: 700; }

.doc-clients-title { text-align: center; font-size: 28px; font-family: var(--font-heading); font-weight: 700; color: var(--color-navy); margin-bottom: 40px; }
.doc-clients-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 40px 0;
}
.doc-clients-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: var(--color-navy);
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 10% 20%;
  z-index: 1;
}

.doc-clients-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-clients 30s linear infinite;
  position: relative;
  z-index: 2;
}

@keyframes scroll-clients {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.doc-client-box {
  background: white; border-radius: 8px; height: 100px; width: 220px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #555; border: 1px solid #EAEAEA; box-shadow: 0 4px 12px rgba(0,0,0,0.06); flex-shrink: 0;
}
.doc-client-logo {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   PREMIUM CAPABILITY CARDS & ICONS
   ============================================ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.capability-card {
  padding: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.capability-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.capability-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 16px rgba(190, 48, 59, 0.3);
  margin-bottom: 8px;
}

.capability-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2px;
}

.capability-card h3 {
  font-size: 20px;
  margin: 0;
}

.capability-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* ============================================
   CONTACT BOXES & ICONS
   ============================================ */
.contact-info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.contact-box {
  padding: 40px 32px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--color-light-gray);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: var(--color-navy-light);
  box-shadow: 0 10px 30px rgba(46, 65, 98, 0.1);
}

.contact-box-icon {
  width: 64px;
  height: 64px;
  background: var(--color-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.contact-box:hover .contact-box-icon {
  background: var(--color-red);
  color: white;
  transform: scale(1.1);
}

.contact-box-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2px;
}

.contact-box h3 {
  font-size: 18px;
  color: var(--color-navy);
  margin: 0;
  font-weight: 700;
}

.contact-box p {
  color: var(--color-body);
  margin: 0;
  font-size: 15px;
}
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   MACHINERY HEADERS
   ============================================ */
.machine-header-wrapper {
  margin-bottom: 40px;
  position: relative;
}
.machine-header-label {
  display: inline-block;
  background-color: var(--color-red);
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
  margin-bottom: 12px;
}
.machine-header-title {
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.machine-header-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-red);
}

/* ============================================
   PRODUCT EXPLORER (Interactive Layout)
   ============================================ */
.product-explorer {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  background: white;
  min-height: 600px;
}

.explorer-sidebar {
  background: var(--color-navy);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.explorer-title {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.6;
}

.explorer-nav-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
}

.explorer-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.explorer-nav-item.active {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 8px 20px rgba(190, 48, 59, 0.3);
}

.explorer-nav-item__arrow {
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.explorer-nav-item.active .explorer-nav-item__arrow {
  opacity: 1;
  transform: translateX(4px);
}

.product-content-area {
  position: relative;
}

.product-detail-view {
  display: none;
  animation: explorerFadeIn 0.5s ease-out forwards;
}

.product-detail-view.active {
  display: block;
}

@keyframes explorerFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.product-display-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.product-display-info {
  padding-right: 40px;
}

.product-display-title {
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-display-title::after {
  content: "";
  height: 4px;
  width: 60px;
  background: var(--color-red);
  display: block;
}

.product-display-text {
  font-size: 17px;
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-py: 64px; }
  .intro-grid,
  .mission-vision-grid { grid-template-columns: 1fr; gap: 40px; }
  .capabilities-grid,
  .services-grid,
  .equipment-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-list-grid { grid-template-columns: 1fr; }
  .equip-item { grid-template-columns: 220px 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 48px; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .capabilities-grid,
  .services-grid,
  .equipment-grid,
  .products-grid,
  .gallery-grid,
  .gallery-full-grid,
  .team-grid { grid-template-columns: 1fr; }
  .hero-stat-bar .container { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .cert-clients-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-boxes { grid-template-columns: 1fr; gap: 48px; }
  .products-page-layout { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; gap: 24px; }
  .machine-card-grid { grid-template-columns: 1fr; }
  .doc-sectors-grid { grid-template-columns: 1fr 1fr; }
  .doc-cert-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row-img { order: 0; }
  .service-row:nth-child(even) .service-row-content { order: 0; }
  .service-row-content { padding: 48px 24px; }
  .mission-vision-item { padding: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .equip-item { grid-template-columns: 1fr; }
  .equip-img { height: 200px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .page-hero { padding: 80px 0 48px; }
}
