/* ============================================
   RAGHUNATH INDUSTRIES — Global Stylesheet
   Palette: Gold #D4A574 · Green #2D5016 · Cream #F5F1E8 · White #FFF · Charcoal #2B2B2B
   Fonts : Playfair Display (headings) · Lato (body)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #D4A574;
  --gold-dark: #B8895A;
  --green:     #2D5016;
  --green-light:#3D6B1F;
  --cream:     #F5F1E8;
  --white:     #FFFFFF;
  --charcoal:  #2B2B2B;
  --text:      #3A3A3A;
  --text-light:#6B6B6B;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --radius:    12px;
  --transition: .3s ease;
  --max-w:     1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--charcoal); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 640px; margin-bottom: 48px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
}
.navbar-brand .brand-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}
.navbar-brand .nav-logo {
  height: 40px;
  width: auto;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: .85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green) 0%, #1a3a0a 60%, #0f2505 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/hero-oils.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero .container { position: relative; z-index: 1; display: flex; align-items: center; gap: 60px; }

.hero-content { flex: 1; max-width: 620px; }
.hero-content .section-label { color: var(--gold); }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-image {
  flex: 0 0 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.hero-image::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(calc(-50% - 8px), calc(-50% - 8px));
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: .4;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,165,116,.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat h3 { color: var(--gold); font-size: 2rem; margin-bottom: 4px; }
.hero-stat p { color: rgba(255,255,255,.6); font-size: .85rem; }

/* ---------- PRODUCTS ---------- */
.products { padding: 100px 0; background: var(--white); }

.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
}
.featured-product-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}
.featured-product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.featured-product:hover .featured-product-image img { transform: scale(1.05); }
.featured-product-image .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-product-info { padding: 48px 48px 48px 0; }
.featured-product-info h3 { font-size: 2rem; margin-bottom: 8px; }
.featured-product-info .product-tagline { color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.featured-product-info p { margin-bottom: 24px; color: var(--text-light); }

.product-features { margin-bottom: 28px; }
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .95rem;
}
.product-features li .check {
  width: 22px; height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

.product-certs { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.product-certs span {
  background: var(--white);
  border: 1px solid #e0d9ce;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
}

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product-card .product-card-img {
  margin: -20px -24px 16px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-card .product-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--transition);
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card .product-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background var(--transition);
}
.product-card:hover .product-icon { background: var(--gold); }
.product-card:hover .product-icon span { filter: brightness(10); }

.product-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.product-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- FACTORY / SUSTAINABILITY ---------- */
.factory { padding: 100px 0; background: var(--cream); }

.factory-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 60px;
  align-items: center;
}

.factory-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.factory-images .img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.factory-images .img-wrap img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}
.factory-images .img-wrap:hover img { transform: scale(1.05); }
.factory-images .img-wrap.tall { grid-row: span 2; }
.factory-images .img-wrap.tall img { height: 100%; }

.factory-content h2 { margin-bottom: 20px; }
.factory-content p { margin-bottom: 20px; color: var(--text-light); }

.factory-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.factory-stat {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.factory-stat h3 {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.factory-stat p { font-size: .85rem; color: var(--text-light); }

/* Certifications strip */
.certifications {
  padding: 60px 0;
  background: var(--white);
}
.cert-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cert-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  width: 160px;
  text-align: center;
  transition: all var(--transition);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cert-card img {
  height: 80px;
  width: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}
.cert-card p { font-size: .78rem; font-weight: 600; color: var(--text); }

/* ---------- LEADERSHIP ---------- */
.leadership { padding: 100px 0; background: var(--white); }

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.leader-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--cream);
  transition: all var(--transition);
}
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.leader-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.leader-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.leader-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.leader-card .leader-role {
  color: var(--gold-dark);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.leader-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- VISION ---------- */
.vision {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green) 0%, #1a3a0a 100%);
  text-align: center;
  position: relative;
}
.vision .section-label { color: var(--gold); }
.vision h2 { color: var(--white); max-width: 800px; margin: 0 auto 24px; }
.vision blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,.85);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
}
.vision blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  display: block;
  margin-bottom: -20px;
  line-height: 1;
}

/* ---------- CONTACT ---------- */
.contact { padding: 100px 0; background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,165,116,.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-submit:hover { background: var(--green-light); transform: translateY(-1px); }

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
  color: var(--text-light);
  font-size: .85rem;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.whatsapp-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
}
.whatsapp-form-btn svg { width: 22px; height: 22px; }
.whatsapp-form-btn:hover { background: #1EBE57; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }

.contact-info h3 { margin-bottom: 32px; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-method .icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method .icon-circle.green { background: var(--green); color: var(--white); }
.contact-method .icon-circle.gold { background: var(--gold); color: var(--white); }

.contact-method h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-method p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }
.contact-method a { color: var(--green); font-weight: 600; }
.contact-method a:hover { color: var(--gold); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 8px;
  transition: all var(--transition);
}
.whatsapp-btn:hover { background: #1EBE57; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.whatsapp-btn svg { width: 22px; height: 22px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; }

.footer h4 {
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .82rem;
}

/* ---------- CLIENTS SECTION ---------- */
.clients { padding: 100px 0; background: var(--cream); }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.brand-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #eee;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-color, var(--gold));
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-color, var(--gold));
}
.brand-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.brand-country {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Logo-based brand grid (homepage) */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.brand-logo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 90px;
}
.brand-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.brand-logo-card img {
  max-height: 50px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--transition);
}
.brand-logo-card:hover img {
  filter: grayscale(0%);
}

.industries-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #e0d9ce;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green);
  transition: all var(--transition);
}
.industry-tag:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.industry-icon { font-size: 1.2rem; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--green) 0%, #1a3a0a 100%);
  text-align: center;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- PAGE SECTIONS ---------- */
.page-section { padding: 80px 0; }
.page-section.alt-bg { background: var(--cream); }

/* ---------- CLIENT PROFILES ---------- */
.client-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.client-profile {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.client-profile:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.client-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.client-logo-text {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--brand-color, var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.client-header h3 { font-size: 1.15rem; margin-bottom: 0; }
.client-location { font-size: .82rem; color: var(--text-light); font-weight: 600; }
.client-profile > p { font-size: .92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.client-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.client-tags span {
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--green);
}

/* ---------- INDUSTRY CARDS (Clients page) ---------- */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.industry-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.industry-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.industry-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
.industry-card ul { text-align: left; }
.industry-card li {
  padding: 4px 0;
  font-size: .88rem;
  color: var(--text-light);
  position: relative;
  padding-left: 16px;
}
.industry-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- AWARDS TIMELINE ---------- */
.awards-timeline { max-width: 900px; margin: 0 auto; }
.award-entry {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}
.award-entry::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 40px;
  bottom: -48px;
  width: 2px;
  background: #e0d9ce;
}
.award-entry:last-child::before { display: none; }
.award-year {
  flex: 0 0 112px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-align: center;
  padding-top: 8px;
}
.award-content {
  flex: 1;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.award-image { border-radius: 8px; overflow: hidden; }
.award-image img { width: 100%; height: 150px; object-fit: cover; }
.award-detail h3 { font-size: 1.05rem; margin-bottom: 8px; }
.award-detail p { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.award-badge {
  display: inline-block;
  background: var(--cream);
  padding: 4px 14px;
  border-radius: 16px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
}

/* ---------- CERT DETAIL GRID ---------- */
.cert-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all var(--transition);
}
.cert-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cert-detail-card img {
  height: 160px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 16px;
  object-fit: contain;
  border-radius: 8px;
}
.cert-detail-card h4 { font-size: 1rem; margin-bottom: 8px; }
.cert-detail-card p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* ---------- PRODUCT RANGE GRID ---------- */
.product-range-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.range-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.range-card:hover { box-shadow: var(--shadow-lg); }
.range-highlight { border-color: var(--gold); border-width: 2px; }
.range-header { margin-bottom: 20px; }
.range-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.range-header h3 { font-size: 1.15rem; margin-bottom: 4px; }
.range-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.range-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .92rem;
}
.range-list li:last-child { border: none; }
.range-list a { color: var(--green); font-weight: 600; }
.range-list a:hover { color: var(--gold-dark); }
.tag-hero {
  background: var(--gold);
  color: var(--white);
  padding: 1px 8px;
  border-radius: 8px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 6px;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.process-step:last-child::after { display: none; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.step-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  height: 140px;
}
.step-image img { width: 100%; height: 100%; object-fit: cover; }
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* ---------- PRODUCT DETAILS ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #eee;
}
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }
.product-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.product-detail-image img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-detail:hover .product-detail-image img { transform: scale(1.03); }
.product-detail-info h3 { font-size: 1.6rem; margin-bottom: 12px; }
.product-detail-info > p { color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.detail-features {
  margin-bottom: 20px;
  list-style: none;
}
.detail-features li {
  padding: 5px 0 5px 24px;
  position: relative;
  font-size: .9rem;
  color: var(--text);
}
.detail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.product-applications {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-applications span {
  background: var(--cream);
  padding: 4px 14px;
  border-radius: 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
}

/* ---------- COMPETITIVE EDGE ---------- */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.edge-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.edge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.edge-icon { font-size: 2.2rem; margin-bottom: 16px; }
.edge-card h4 { font-size: 1rem; margin-bottom: 10px; }
.edge-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero .container { flex-direction: column; text-align: center; padding-top: 40px; }
  .hero-content { max-width: 100%; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { flex: 0 0 auto; max-width: 400px; }
  .hero-image::before { display: none; }

  .featured-product { grid-template-columns: 1fr; }
  .featured-product-info { padding: 36px; }
  .featured-product-image { min-height: 300px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .factory-grid { grid-template-columns: 1fr; }
  .factory-images { order: -1; }

  .leaders-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* New pages */
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .client-profiles { grid-template-columns: 1fr; }
  .industry-cards { grid-template-columns: repeat(2, 1fr); }
  .award-content { grid-template-columns: 1fr; }
  .cert-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .product-range-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step::after { display: none; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .product-detail.reverse { direction: ltr; }
  .edge-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-image { max-width: 300px; }
  .hero-stats { flex-direction: column; gap: 20px; text-align: center; }

  .products-grid { grid-template-columns: 1fr; }

  .factory-images { grid-template-columns: 1fr; }
  .factory-images .img-wrap.tall { grid-row: auto; }
  .factory-images .img-wrap.tall img { height: 200px; }
  .factory-stats { grid-template-columns: 1fr; }

  .leaders-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

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

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cert-grid { gap: 12px; }
  .cert-card { width: 130px; padding: 14px; }

  /* New pages */
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-cards { grid-template-columns: 1fr; }
  .award-entry { flex-direction: column; gap: 12px; }
  .award-entry::before { display: none; }
  .award-year { flex: auto; }
  .award-content { grid-template-columns: 1fr; }
  .cert-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .product-detail-image img { height: 200px; }
  .edge-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 40px; }
}
