/* ============================================================
   MAHUMBANE CONSULTING — style.css v3 (clean rebuild)
   Palette: #2D5016 (dark green) / #5A8A1E (accent) / #FFFFFF
   Font: Manrope via Google Fonts
   ============================================================ */

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

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --green-dark:   #2D5016;
  --green-mid:    #3D6B1E;
  --green-accent: #5A8A1E;
  --green-light:  #7AB32A;
  --white:        #FFFFFF;
  --off-white:    #F5F7F2;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A5A4A;
  --text-light:   #7A8A7A;
  --border:       #D8E8C8;
  --nav-h:        120px;
}

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-title span { color: var(--green-accent); }
.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-ghost:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.09); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 100px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 11px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-accent);
  background: var(--off-white);
}
.nav-cta {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 4px !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO — HOME PAGE
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(90,138,30,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,80,22,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--green-light); }
.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero-img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hib-icon {
  width: 42px;
  height: 42px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hib-icon svg { width: 20px; height: 20px; stroke: white; fill: none; }
.hero-img-badge strong { display: block; font-size: 15px; font-weight: 800; color: var(--green-dark); }
.hero-img-badge span { font-size: 12px; color: var(--text-light); }

/* ============================================================
   PAGE HERO — INNER PAGES
   ============================================================ */
.page-hero {
  background: var(--green-dark);
  padding: calc(var(--nav-h) + 56px) 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(90,138,30,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero-inner h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.75;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 96px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: 8px; }
.about-img-accent {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 110px;
  height: 110px;
  background: var(--green-dark);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 12px;
}
.about-img-accent strong { font-size: 26px; font-weight: 800; display: block; }
.about-img-accent span { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; margin-top: 2px; }
.about-text .tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.about-text .tags li {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================================================
   SERVICES OVERVIEW (Home)
   ============================================================ */
.services-overview { padding: 96px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 26px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); border-color: var(--green-accent); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--green-dark); fill: none; }
.svc-card h3 { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.svc-card a { font-size: 13px; font-weight: 700; color: var(--green-accent); display: inline-flex; align-items: center; gap: 5px; }
.svc-card a:hover { color: var(--green-dark); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { padding: 96px 0; background: var(--white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 0;
}
.ind-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.ind-item:hover { background: var(--green-dark); border-color: var(--green-dark); }
.ind-item:hover .ind-icon svg { stroke: var(--white); }
.ind-item:hover .ind-name { color: var(--white); }
.ind-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-icon svg { width: 26px; height: 26px; stroke: var(--green-dark); fill: none; transition: stroke 0.3s; }
.ind-name { font-size: 12px; font-weight: 700; color: var(--text-dark); transition: color 0.3s; }

/* ============================================================
   WHY US
   ============================================================ */
.why-section { padding: 96px 0; background: var(--green-dark); }
.why-section .section-title { color: var(--white); }
.why-section .section-label { color: var(--green-light); }
.why-section .section-sub { color: rgba(255,255,255,0.68); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  padding: 30px 26px;
  transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.12); }
.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--green-light); fill: none; }
.why-card h3 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { padding: 72px 0; background: var(--off-white); border-top: 1px solid var(--border); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.cta-text p { font-size: 15px; color: var(--text-mid); }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   WATER TREATMENT PAGE
   ============================================================ */
.wt-page { padding: 72px 0; }
.wt-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.wt-intro img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; }
.services-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
  margin-bottom: 36px;
}
.tab-btn {
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab-btn.active { color: var(--green-dark); border-bottom-color: var(--green-dark); }
.tab-btn:hover { color: var(--green-dark); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.chemicals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.chem-cat {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
}
.chem-cat h4 { font-size: 14px; font-weight: 800; color: var(--green-dark); margin-bottom: 12px; }
.chem-cat ul li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.chem-cat ul li:last-child { border-bottom: none; }
.chem-cat ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.equip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.equip-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.equip-icon {
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.equip-icon svg { width: 22px; height: 22px; stroke: var(--green-dark); fill: none; }
.equip-card h4 { font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.equip-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.svc-cta-box {
  background: var(--green-dark);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 44px;
}
.svc-cta-box h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.svc-cta-box p { font-size: 14px; color: rgba(255,255,255,0.72); }

/* ============================================================
   PPE PAGE
   ============================================================ */
.ppe-page { padding: 72px 0; }
.ppe-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.ppe-intro img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; }
.ppe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}
.ppe-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ppe-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.ppe-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.09); }
.ppe-card:hover::after { transform: scaleX(1); }
.ppe-icon {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.ppe-icon svg { width: 28px; height: 28px; stroke: var(--green-dark); fill: none; }
.ppe-card h3 { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.ppe-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ── Clients & Suppliers ── */
.clients-section { padding: 72px 0; background: var(--off-white); }
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.client-dot { width: 8px; height: 8px; background: var(--green-accent); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.client-card h4 { font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 3px; }
.client-card p { font-size: 12px; color: var(--text-light); }
.suppliers-section { padding: 72px 0; background: var(--white); }
.suppliers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.supplier-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 14px;
  text-align: center;
}
.supplier-card h5 { font-size: 13px; font-weight: 800; color: var(--green-dark); margin-bottom: 5px; }
.supplier-card p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   SUSTAINABILITY PAGE
   ============================================================ */
.sust-page { padding: 72px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 26px;
  transition: all 0.3s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); border-color: var(--green-accent); }
.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.pillar-icon svg { width: 26px; height: 26px; stroke: var(--green-dark); fill: none; }
.pillar-card h3 { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.pillar-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.certs-section { padding: 72px 0; background: var(--off-white); }
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
}
.cert-badge {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.cert-card p { font-size: 13px; color: var(--text-mid); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 72px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 24px; font-weight: 800; margin-bottom: 22px; }
.c-detail { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.c-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-detail-icon svg { width: 18px; height: 18px; stroke: var(--green-dark); fill: none; }
.c-detail-text strong { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 3px; }
.c-detail-text p { font-size: 14px; color: var(--text-dark); line-height: 1.5; }
.c-hours {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  margin-top: 28px;
}
.c-hours h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 10px; }
.c-hours p { font-size: 13px; color: var(--text-dark); margin-bottom: 5px; }
.c-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}
.c-form-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.c-form-wrap > p { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; }
.form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px;
}
.form-tab-btn {
  flex: 1;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  border-radius: 4px;
  transition: all 0.2s;
}
.form-tab-btn.active { background: var(--green-dark); color: var(--white); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; text-align: center; padding: 36px 16px; }
.form-success-icon {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.form-success-icon svg { width: 28px; height: 28px; stroke: var(--green-dark); fill: none; }
.form-success h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.form-success p { font-size: 14px; color: var(--text-mid); }

/* ============================================================
   COMING SOON (Shop / Resources)
   ============================================================ */
.coming-soon {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0;
  background: var(--off-white);
}
.cs-inner { text-align: center; max-width: 520px; margin: 0 auto; padding: 0 24px; }
.cs-tag {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.cs-icon {
  width: 76px;
  height: 76px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.cs-icon svg { width: 34px; height: 34px; stroke: var(--green-dark); fill: none; }
.cs-inner h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.cs-inner p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding: 72px 0; }
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-meta {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 36px;
  font-size: 14px;
  color: var(--text-mid);
}
.legal-meta strong { color: var(--text-dark); }
.legal-content h2 { font-size: 20px; font-weight: 800; color: var(--green-dark); margin: 36px 0 10px; }
.legal-content h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 24px 0 8px; }
.legal-content p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 18px 18px; }
.legal-content ul li { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--green-accent); }
.legal-content a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text-dark); color: var(--white); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 44px;
}
.footer-brand img { height: 100px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 9px; margin-bottom: 10px; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--green-light); fill: none; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span,
.footer-contact-item a { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p,
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap { display: none; }
  .wt-intro, .ppe-intro { grid-template-columns: 1fr; }
  .wt-intro img, .ppe-intro img { height: 260px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .ppe-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .suppliers-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 2px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .chemicals-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .svc-cta-box { flex-direction: column; text-align: center; }
  .ppe-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .suppliers-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .c-form-wrap { padding: 22px; }
  .hero-text h1 { font-size: 30px; }
  .hero-content { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .suppliers-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .nav-logo img { height: 70px; }
}
