/* =====================================================
   NEDU INDUSTRIES UK LTD — MAIN STYLESHEET
   Premium Global Shea Butter Export Company
   ===================================================== */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --gold:        #C9972A;
  --gold-light:  #E8B94A;
  --gold-dark:   #9E7420;
  --green:       #1A3C2E;
  --green-light: #2A5C44;
  --green-mid:   #3A7055;
  --cream:       #F8F4EC;
  --cream-dark:  #EDE6D6;
  --white:       #FFFFFF;
  --black:       #0D0D0D;
  --text:        #1E1E1E;
  --text-mid:    #3A3A3A;
  --text-light:  #6A6A6A;
  --border:      #DDD6C8;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 80px rgba(0,0,0,0.16);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   32px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:   1340px;
  --font-heading:'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* overflow-x: clip does NOT create a scroll container, so position:sticky still works */
  overflow-x: clip;
}
html { overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1.2rem; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.75;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.section-header { margin-bottom: 3.5rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,151,42,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-dark:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.topbar a:hover { color: var(--gold-light); }
.topbar svg { width: 13px; height: 13px; }

/* ---- NAVIGATION ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .logo-mark span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
}
.nav-logo .logo-text { line-height: 1.2; }
.nav-logo .logo-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
}
.nav-logo .logo-text small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: var(--cream);
}
.nav-link svg { width: 13px; height: 13px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a:hover {
  background: var(--cream);
  color: var(--green);
  padding-left: 1.3rem;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--cream);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb-list li:last-child { color: var(--text); font-weight: 500; }
.breadcrumb-list a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list .sep { color: var(--border); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/new/hero-shea-DIcvIcmc.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,60,46,0.95) 0%,
    rgba(26,60,46,0.75) 50%,
    rgba(26,60,46,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 700px; */
  text-align: left;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,151,42,0.18);
  border: 1px solid rgba(201,151,42,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.12;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 5rem 0;
  background: var(--green);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,60,46,0.95) 40%, rgba(26,60,46,0.6));
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ---- FEATURE STRIP ---- */
.feature-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-item:hover { background: var(--cream); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  transition: background 0.2s;
}
.feature-item:hover .feature-icon { background: var(--gold); color: var(--white); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.feature-text span { font-size: 0.8rem; color: var(--text-light); }

/* ---- ADVANTAGE SECTION ---- */
.advantage-section { background: var(--cream); }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.advantage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.advantage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,151,42,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.advantage-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--green);
}
.advantage-card p { font-size: 0.92rem; }

/* ---- PRODUCT OVERVIEW ---- */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-showcase.reverse { direction: rtl; }
.product-showcase.reverse > * { direction: ltr; }
.product-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-img-wrap:hover img { transform: scale(1.04); }
.product-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
}
.product-img-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.product-img-badge span { font-size: 0.75rem; color: var(--text-light); }
.product-info .checklist {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- PROCESS STEPS ---- */
.process-section { background: var(--green); color: var(--white); }
.process-section .section-label { color: var(--gold-light); }
.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.65); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3.5rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.step-item { text-align: center; padding: 0 1rem; }
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,151,42,0.2);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.step-item h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step-item p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--gold);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ---- INDUSTRIES GRID ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition);
}
.industry-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.industry-icon svg { width: 24px; height: 24px; }
.industry-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--green);
}
.industry-card p { font-size: 0.87rem; color: var(--text-light); }

/* ---- TESTIMONIAL / QUOTE BLOCK ---- */
.quote-block {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem 2.5rem;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  font-family: var(--font-heading);
  margin: 2rem 0;
}

/* ---- INFO CARDS ---- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.info-card-icon {
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h4 { font-size: 1.05rem; color: var(--green); margin-bottom: 0.5rem; }
.info-card p { font-size: 0.9rem; }

/* ---- PACKAGING TABLE ---- */
.pack-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pack-table th {
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 1.25rem;
  text-align: left;
}
.pack-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.pack-table tr:last-child td { border-bottom: none; }
.pack-table tr:nth-child(even) td { background: var(--cream); }
.pack-badge {
  display: inline-block;
  background: rgba(201,151,42,0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  border: 1px solid rgba(201,151,42,0.3);
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid .item-tall { grid-row: span 2; }
.gallery-grid .item-wide { grid-column: span 2; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,46,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- BLOG CARDS ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}
.blog-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  line-height: 1.35;
}
.blog-body p { font-size: 0.87rem; line-height: 1.65; margin-bottom: 1rem; }
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 0.65rem; color: var(--gold-dark); }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s;
  gap: 1rem;
}
.faq-question:hover { background: var(--cream); }
.faq-item.open .faq-question { background: var(--cream); color: var(--green); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-mid);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 18px; height: 18px; }
.contact-card strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.3rem; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--text-mid); display: block; }
.contact-card a:hover { color: var(--gold-dark); }

/* ---- FORMS ---- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,60,46,0.08);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-submit { margin-top: 0.5rem; }

/* ---- QUOTE GRID (wider form column) ---- */
.quote-grid { grid-template-columns: 1fr 2fr; gap: 3.5rem; }
@media (max-width: 1024px) { .quote-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--gold); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--green);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

/* ---- FOOTER ---- */
.site-footer {
  background: #0F2419;
  color: rgba(255,255,255,0.75);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-brand .logo-mark-f {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand .logo-mark-f span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
}
.footer-brand .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand .brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social:hover { background: var(--gold); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ---- CERT BADGES ---- */
.cert-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
}
.cert-badge svg { width: 18px; height: 18px; color: var(--gold); }

/* ---- TWO-COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.two-col-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.two-col-img .img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 70%;
  height: 70%;
  background: var(--cream);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.highlight-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.highlight-box p { color: rgba(255,255,255,0.75); }
.highlight-box .checklist li { color: rgba(255,255,255,0.85); }
.highlight-box .checklist li svg { color: var(--gold-light); }

/* ---- LOCATION CARDS ---- */
.location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.location-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.location-card h4 { font-size: 1.1rem; color: var(--green); margin-bottom: 0.25rem; }
.location-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.location-detail svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

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

/* ---- UTILITY ---- */
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green); }
.bg-white { background: var(--white); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.inline-flex { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .step-item { padding-bottom: 1rem; }
}

@media (max-width: 1024px) {
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .item-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .product-showcase.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Root cause of home page overflow: z-index:-1 accent escapes overflow:hidden on mobile */
  .img-accent { display: none; }
  .info-cards { grid-template-columns: 1fr; }
  .location-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  /* Hide entire topbar on mobile — prevents overflow from long text */
  .topbar { display: none; }
  /* Feature strip: 2 columns on mobile, tighter padding */
  .feature-strip-inner { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 1.25rem 1rem; gap: 0.75rem; }
  /* Table overflow on mobile */
  .pack-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .hero { min-height: 100svh; }
  .hero h1 { font-size: 2.2rem; }
  /* Contact grid already 1 col, reduce gap */
  .contact-grid { gap: 2rem; }
  /* Reduce section header bottom margin */
  .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-steps { grid-template-columns: 1fr; }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Prevent any single element from breaking page width */
  .cert-badges { gap: 0.5rem; }
  .cert-badge { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text);
  cursor: pointer;
}
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav-body { padding: 1rem 1.5rem; flex: 1; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link svg { width: 16px; height: 16px; color: var(--text-light); }
.mobile-submenu { padding: 0.5rem 0 0.5rem 1rem; }
.mobile-submenu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-nav-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
