/* ============================================================
   Green Rubber — v2 Corporate Design
   Inspired by leadreclaim.com aesthetic
   ============================================================ */

:root {
  /* Brand palette */
  --green-primary: #2c5c2c;      /* main forest green */
  --green-deep: #1e3f1e;         /* darker green, dark bands */
  --green-darker: #143014;       /* near-black green */
  --green-mid: #4a8a4a;          /* lighter accent */
  --green-tint: #eaf3ea;         /* very pale green */
  --gold: #c9a72d;               /* gold accent */
  --gold-dark: #a68820;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9f7;
  --grey-50: #f5f5f5;
  --grey-100: #eaeaea;
  --grey-200: #d9d9d9;
  --grey-400: #999999;
  --grey-500: #777777;
  --grey-700: #444444;
  --grey-900: #222222;

  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;

  --max-w: 1240px;
  --pad-x: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* ============================================================
   Typography defaults
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(38px, 5.5vw, 62px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; }
h4 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 600; }
h5 { font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }

p { color: var(--grey-700); }

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  position: relative;
  padding-left: 34px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}
.eyebrow.center { padding-left: 0; padding: 0 34px; }
.eyebrow.center::before { left: 0; top: 50%; }
.eyebrow.center::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 22px; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 15px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 167, 45, 0.35);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--green-primary);
}
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: #fff;
}

/* ============================================================
   Top strip (dark bar above header)
   ============================================================ */
.top-strip {
  background: var(--green-darker);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.top-strip .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.top-strip a { color: rgba(255,255,255,0.85); }
.top-strip a:hover { color: var(--gold); }
.top-strip .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 3px 12px; border-radius: 20px;
  font-size: 12px;
}
.top-strip .pill::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--grey-100);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-logo {
  width: 60px; height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--grey-100);
}
.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--green-deep);
  line-height: 1.1;
}
.brand-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}
.nav-menu {
  display: flex; align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-menu a {
  color: var(--grey-900);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--green-primary);
  background: var(--green-tint);
}
.nav-menu a.cta-btn {
  background: var(--green-primary);
  color: #fff;
  padding: 11px 22px;
  font-weight: 600;
  margin-left: 8px;
}
.nav-menu a.cta-btn:hover {
  background: var(--gold);
  color: #fff;
}
.header-phone {
  display: none;
  padding: 8px 16px;
  background: var(--gold);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}
.nav-toggle {
  display: none;
  padding: 8px 12px;
  background: var(--green-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

/* ============================================================
   Floating side icons
   ============================================================ */
.side-icons {
  position: fixed;
  right: 20px;
  top: 45%;
  z-index: 90;
  display: flex; flex-direction: column;
  gap: 10px;
}
.side-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(44, 92, 44, 0.3);
}
.side-icons a:hover {
  background: var(--gold);
  transform: scale(1.1);
}
.side-icons a.whatsapp { background: #25D366; }
.side-icons a.whatsapp:hover { background: #128C7E; }
.side-icons svg { width: 22px; height: 22px; }

/* ============================================================
   Hero section (homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  background: linear-gradient(135deg, rgba(20, 48, 20, 0.85), rgba(20, 48, 20, 0.65)),
              url('../images/facility-1.jpg') center/cover;
  display: flex; align-items: center;
  color: #fff;
  padding: 100px 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  color: var(--gold);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  display: inline-block;
}
.hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero h1 .gold-word {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}
.hero-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-experience {
  position: absolute;
  right: 40px;
  bottom: -40px;
  background: var(--gold);
  color: #fff;
  padding: 28px 40px;
  border-radius: 8px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(201, 167, 45, 0.3);
  text-align: center;
  min-width: 200px;
}
.hero-experience .num {
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}
.hero-experience .label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, rgba(20, 48, 20, 0.9), rgba(20, 48, 20, 0.7)),
              url('../images/gate-1.jpg') center/cover;
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; text-transform: capitalize; }
.page-hero .crumbs {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-top: 8px;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.85); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .sep { color: var(--gold); }

/* ============================================================
   Section spacing
   ============================================================ */
.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow { display: inline-block; }
.section-head h2 { margin-bottom: 18px; }
.section-head p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--grey-500);
}

/* Alternate background */
.section-light { background: var(--off-white); }
.section-green { background: var(--green-tint); }

/* ============================================================
   About block (image + text with stats)
   ============================================================ */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-block .about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.about-block .about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 480px;
}
.about-block .about-image::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}
.about-block h2 { margin-bottom: 20px; }
.about-block p { margin-bottom: 18px; font-size: 16px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--grey-100);
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   Product cards (Featured products grid)
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: all 0.35s;
  border: 1px solid var(--grey-100);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44, 92, 44, 0.18);
  border-color: var(--gold);
}
.product-card .product-img {
  height: 220px;
  overflow: hidden;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-card .product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card .product-img .placeholder {
  color: var(--green-primary);
  font-size: 60px;
  opacity: 0.4;
}
.product-card-body { padding: 30px; }
.product-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--green-deep);
}
.product-card p {
  color: var(--grey-500);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.product-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-card .card-link::after {
  content: '→';
  transition: transform 0.2s;
}
.product-card .card-link:hover::after {
  transform: translateX(4px);
}

/* Featured product row (larger, alternating) */
.featured-product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--grey-100);
}
.featured-product-row:last-child { border-bottom: none; }
.featured-product-row.reverse .fp-image { order: 2; }
.fp-image {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  height: 380px;
  background: var(--green-tint);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.fp-image img { width: 100%; height: 100%; object-fit: cover; }
.fp-image .placeholder-icon {
  font-size: 120px;
  color: var(--green-primary);
  opacity: 0.35;
}
.fp-content h5 { margin-bottom: 12px; }
.fp-content h3 { margin-bottom: 18px; font-size: 30px; }
.fp-content p { margin-bottom: 22px; }

/* ============================================================
   Icon boxes (Why Choose Us / Values)
   ============================================================ */
.icon-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.icon-box {
  text-align: center;
  padding: 44px 30px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid var(--grey-100);
}
.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(44, 92, 44, 0.12);
  border-color: var(--gold);
}
.icon-box .icon-circle {
  width: 80px; height: 80px;
  margin: 0 auto 22px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  transition: all 0.3s;
}
.icon-box:hover .icon-circle {
  background: var(--gold);
  color: #fff;
  transform: rotate(-5deg);
}
.icon-box .icon-circle svg { width: 38px; height: 38px; }
.icon-box h3 { margin-bottom: 14px; font-size: 20px; }
.icon-box p { color: var(--grey-500); font-size: 15px; line-height: 1.65; }

/* ============================================================
   Dark CTA banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: rgba(201, 167, 45, 0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -20%;
  width: 500px; height: 500px;
  background: rgba(201, 167, 45, 0.05);
  border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h5 { color: var(--gold); margin-bottom: 16px; }
.cta-banner h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: clamp(28px, 4vw, 48px);
}

/* ============================================================
   Applications section
   ============================================================ */
.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.app-list { display: flex; flex-direction: column; gap: 16px; }
.app-item {
  padding: 22px 28px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--green-primary);
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  cursor: pointer;
}
.app-item:hover {
  border-left-color: var(--gold);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(44, 92, 44, 0.1);
}
.app-item h4 {
  color: var(--green-deep);
  margin-bottom: 8px;
  font-size: 18px;
}
.app-item p {
  color: var(--grey-500);
  font-size: 14px;
  line-height: 1.6;
}
.app-image {
  border-radius: 10px; overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: sticky;
  top: 100px;
}
.app-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   Certifications strip
   ============================================================ */
.certs-strip {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}
.cert-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.25s;
}
.cert-item:hover { transform: translateY(-4px); }
.cert-badge {
  width: 90px; height: 90px;
  margin: 0 auto 12px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.cert-badge svg { width: 42px; height: 42px; }
.cert-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   Global reach (country flags)
   ============================================================ */
.global-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.country-item {
  text-align: center;
  padding: 22px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--grey-100);
  transition: all 0.25s;
}
.country-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.country-flag {
  width: 60px; height: 60px;
  margin: 0 auto 12px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.country-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-deep);
}

/* ============================================================
   Message cards (Chairman/MD/Founder)
   ============================================================ */
.message-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.message-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 10px;
  border: 1px solid var(--grey-100);
  position: relative;
  transition: all 0.3s;
}
.message-card::before {
  content: '"';
  position: absolute;
  top: 10px; left: 24px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
}
.message-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.message-card h5 { color: var(--gold); margin-bottom: 12px; }
.message-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-700);
  font-style: italic;
  margin-bottom: 28px;
  padding-top: 16px;
}
.message-card .person {
  border-top: 1px solid var(--grey-100);
  padding-top: 20px;
}
.message-card .person-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.message-card .person-role {
  font-size: 13px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   Mission/Vision two-column blocks
   ============================================================ */
.mv-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.mv-block.reverse .mv-image { order: 2; }
.mv-image {
  border-radius: 10px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mv-image img { width: 100%; height: 100%; object-fit: cover; }
.mv-image .mv-icon {
  font-size: 140px;
  color: var(--green-primary);
  opacity: 0.4;
}
.mv-block h3 { color: var(--green-deep); margin-bottom: 16px; font-size: 30px; }
.mv-block h5 { margin-bottom: 12px; }
.mv-block p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }

/* ============================================================
   Contact section
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.contact-info {
  background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
  padding: 50px 40px;
  border-radius: 10px;
  color: #fff;
}
.contact-info h3 { color: #fff; margin-bottom: 12px; }
.contact-info p { color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.info-block {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.info-block:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.info-icon svg { width: 22px; height: 22px; }
.info-text .lbl {
  display: block;
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
  font-weight: 500;
}
.info-text a, .info-text p {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}
.info-text a:hover { color: var(--gold); }

.contact-form {
  background: #fff;
  padding: 50px 40px;
  border-radius: 10px;
  border: 1px solid var(--grey-100);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.contact-form h3 { margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-700);
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-900);
  background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44, 92, 44, 0.1);
}
.form-field textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.footer-col p { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-col ul li svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-col ul li a, .footer-col ul li span {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .brand-logo { border: 1px solid rgba(255,255,255,0.2); }
.footer-brand-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.footer-brand-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: all 0.25s;
}
.socials a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}
.socials svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid var(--grey-100);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .header .container { position: relative; }
  .about-block, .mv-block, .app-layout, .contact-layout, .featured-product-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-block .about-image img { min-height: 320px; }
  .featured-product-row.reverse .fp-image, .mv-block.reverse .mv-image { order: 0; }
  .product-grid, .icon-boxes, .message-grid { grid-template-columns: 1fr; }
  .stats-row, .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .global-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-experience { position: static; margin-top: 40px; }
  .app-image { position: static; height: 300px; }
  .side-icons { right: 12px; }
  .side-icons a { width: 40px; height: 40px; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { min-height: 500px; padding: 70px 0; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .global-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-strip .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   PRODUCT PAGES — listing grid and detail layout
   Inspired by hsxjw.com's product page structure
   ============================================================ */

/* Product listing grid — 5 large cards on the /products/ page */
.product-listing {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.product-listing .product-listing-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.product-listing .product-listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(44, 92, 44, 0.15);
  border-color: var(--gold);
}
.product-listing-card .plc-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--green-tint);
}
.product-listing-card .plc-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-listing-card:hover .plc-image img { transform: scale(1.06); }
.product-listing-card .plc-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.product-listing-card .plc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-listing-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--green-deep);
  line-height: 1.3;
}
.product-listing-card .plc-brief {
  color: var(--grey-500);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.product-listing-card .plc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-listing-card .plc-link::after {
  content: '→';
  transition: transform 0.2s;
}
.product-listing-card:hover .plc-link::after { transform: translateX(4px); }

/* Product detail — main layout: gallery left, info right */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery .product-main-image {
  border-radius: 10px;
  overflow: hidden;
  background: var(--green-tint);
  height: 460px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  margin-bottom: 14px;
  position: relative;
}
.product-gallery .product-main-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-gallery .product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.product-gallery .product-thumbs img {
  width: 100%; height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.product-gallery .product-thumbs img:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.product-info-panel h2 {
  font-size: 30px;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.product-info-panel .product-tagline {
  font-size: 15px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Specs list */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  background: var(--off-white);
  border-radius: 8px;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--grey-200);
  font-size: 14.5px;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list li strong {
  color: var(--grey-700);
  font-weight: 500;
}
.spec-list li span {
  color: var(--green-deep);
  font-weight: 600;
  text-align: right;
}

/* CTA block below specs */
.product-cta-block {
  padding: 24px;
  background: linear-gradient(135deg, var(--green-tint), var(--off-white));
  border-radius: 8px;
  margin-top: 20px;
}
.product-cta-block p {
  color: var(--grey-700);
  font-size: 14.5px;
  margin-bottom: 16px;
}
.product-cta-block .product-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Prose block for description */
.prose-narrow {
  max-width: 860px;
  margin: 0 auto;
}
.prose-narrow h2 {
  font-size: 30px;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.prose-narrow h3 {
  font-size: 22px;
  color: var(--green-deep);
  margin: 30px 0 14px;
}
.prose-narrow p {
  color: var(--grey-700);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.prose-narrow ul {
  padding-left: 20px;
  margin-bottom: 24px;
}
.prose-narrow ul li {
  color: var(--grey-700);
  font-size: 15.5px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.prose-narrow ul li::marker {
  color: var(--gold);
}

/* Product highlight callout */
.highlight-callout {
  background: var(--green-deep);
  color: #fff;
  padding: 32px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 5px solid var(--gold);
}
.highlight-callout p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  margin: 0;
}
.highlight-callout p strong {
  color: var(--gold);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery .product-main-image { height: 340px; }
  .product-info-panel h2 { font-size: 26px; }
}
@media (max-width: 600px) {
  .spec-list li { flex-direction: column; gap: 4px; }
  .spec-list li span { text-align: left; }
  .product-cta-buttons .btn { width: 100%; text-align: center; }
}

/* ============================================================
   Elementor wrapper reset — when our page content is rendered
   inside an Elementor HTML widget, prevent Elementor's default
   section container padding/max-width from breaking our layout.
   ============================================================ */
.gr-elementor-wrapper,
.gr-elementor-wrapper > .elementor-container,
.gr-elementor-wrapper .elementor-column,
.gr-elementor-wrapper .elementor-widget-wrap,
.gr-elementor-wrapper .elementor-widget-html > .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.gr-elementor-wrapper .elementor-container {
  min-height: 0 !important;
}
