/*
Theme Name: MetalCrest
Theme URI: https://easylifeva.com
Author: Nasir Khan
Description: Industrial corporate theme for metal recycling and export — matching exact brand design.
Version: 2.0.0
Text Domain: metalcrest
Tags: business, corporate, industrial, multi-page, responsive
*/

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy:          #1E3A5F;
  --navy-dark:     #152c4a;
  --navy-deeper:   #0f1e30;
  --grey:          #6B7280;
  --grey-light:    #9ca3af;
  --green:         #2E7D32;
  --green-light:   #4caf50;
  --orange:        #C46A2D;
  --orange-hover:  #d97e3e;
  --orange-light:  #e8924d;
  --white:         #ffffff;
  --off-white:     #F5F5F5;
  --border:        #e2e8f0;
  --text:          #1a1a2e;
  --text-mid:      #374151;
  --text-muted:    #6B7280;
  --shadow:        0 4px 20px rgba(30,58,95,0.12);
  --shadow-lg:     0 12px 40px rgba(30,58,95,0.18);
  --r:             4px;
  --r-md:          8px;
  --r-lg:          12px;
  --max-w:         1200px;
  --font-head:     'Oswald', 'Arial Narrow', sans-serif;
  --font-body:     'Open Sans', 'Segoe UI', sans-serif;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::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; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--orange); text-decoration: none; transition: all .25s; }
a:hover { color: var(--orange-hover); }
ul   { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); font-weight: 700; }
p { margin-bottom: 1rem; color: var(--text-mid); }

/* ═══════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════ */
.wrap        { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section     { padding: 72px 0; }
.section-sm  { padding: 48px 0; }
.bg-navy     { background: var(--navy); }
.bg-dark     { background: var(--navy-deeper); }
.bg-off      { background: var(--off-white); }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

/* Section Labels */
.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.eyebrow-line::before,
.eyebrow-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--orange);
  max-width: 40px;
}

/* Section Titles */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 12px;
}
.section-title .accent { color: var(--orange); }
.section-title.white   { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* Divider Line */
.orange-line {
  width: 48px; height: 3px;
  background: var(--orange);
  margin: 12px 0 20px;
  border-radius: 2px;
}
.orange-line.center { margin: 12px auto 20px; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196,106,45,.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
#topbar {
  background: var(--navy-deeper);
  padding: 7px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
#topbar .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#topbar a { color: rgba(255,255,255,.65); }
#topbar a:hover { color: var(--orange); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { opacity: .6; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.site-logo { display: flex; align-items: center; text-decoration: none; } /* horizontal offset set inline via Customize → Header Layout */
.site-logo-img {
  height: 44px;
  width: auto;
  max-width: 260px;
  display: block;
}
.footer-logo-img { height: 40px; }
@media (max-width: 480px) {
  .site-logo-img { height: 36px; }
}

/* An uploaded logo (Appearance → Customize → Site Identity → Logo)
   renders through WordPress's own the_custom_logo() markup, which
   uses different classes (.custom-logo-link / .custom-logo) than the
   theme's own bundled logo above — without these rules an uploaded
   image showed at its full native size and broke the header layout.
   Sized to match .site-logo-img exactly, so either logo source looks
   correct and consistent. */
.custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.custom-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 260px;
  max-height: 44px;
  object-fit: contain;
  display: block;
}
#site-footer .custom-logo {
  height: 40px !important;
  max-height: 40px;
}
@media (max-width: 480px) {
  .custom-logo { height: 36px !important; max-height: 36px; }
}

/* Primary Nav */
#primary-nav { display: flex; align-items: center; gap: 2px; }
#primary-nav > a {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: all .22s;
  position: relative;
}
#primary-nav > a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .22s;
  border-radius: 1px;
}
#primary-nav > a:hover,
#primary-nav > a.current { color: var(--white); }
#primary-nav > a:hover::after,
#primary-nav > a.current::after { transform: scaleX(1); }
.nav-quote {
  margin-left: 12px;
  padding: 10px 22px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--r) !important;
  font-size: .85rem !important;
}
.nav-quote:hover {
  background: var(--orange-hover) !important;
  transform: none !important;
}
.nav-quote::after { display: none !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 1px; transition: all .25s; }

/* ═══════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 60L60 0M-10 10L10-10M50 70L70 50' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.page-hero h1 span { color: var(--orange); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--orange); }

/* ═══════════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════════ */
#home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deeper);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,30,48,.96) 0%, rgba(30,58,95,.82) 45%, rgba(15,30,48,.55) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a2a3a;
  /* Base fallback: always-supported gradient (shows if the photo can't load) */
  background-image: linear-gradient(135deg, #0f1e30 0%, #1a2a3a 30%, #2a1810 70%, #1a0f08 100%);
  /* Enhanced: brand-tinted wash over the real facility/industrial photo (WebP — smaller & faster than JPG/PNG for the same quality) */
  background-image:
    linear-gradient(105deg, rgba(15,30,48,.72) 0%, rgba(15,30,48,.35) 55%, rgba(15,30,48,.78) 100%),
    url('assets/images/hero-bg.webp');
}
.hero-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(180,80,20,.18) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-text { max-width: 600px; }
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .03em;
  margin-bottom: 18px;
}
.hero-h1 .line-accent { color: var(--orange); display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

/* Hero Stats Bar */
.hero-stats-bar {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 520px;
}
.hero-stat {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION / PAGE
═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.about-corner-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-corner-badge .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-corner-badge .lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; }

.about-body {}
.about-desc { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-checks { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-checks li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: var(--text-mid);
}
.about-checks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Values strip */
.values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 56px;
}
.value-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.value-item:last-child { border-right: none; }
.value-icon { font-size: 2rem; margin-bottom: 10px; }
.value-name {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 24px 28px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: all .3s;
}
.service-card:hover .svc-icon { background: var(--orange); }
.svc-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 12px;
}
.svc-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* Services page detail layout */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sdc-head {
  background: var(--navy);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 16px;
}
.sdc-head-icon {
  width: 54px; height: 54px;
  background: var(--orange);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.sdc-head-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.sdc-body { padding: 28px 32px; }
.sdc-body p { font-size: .95rem; color: var(--text-mid); line-height: 1.75; }
.sdc-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sdc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text-mid);
}
.sdc-list li::before {
  content: '►';
  color: var(--orange);
  font-size: .65rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FACILITY
═══════════════════════════════════════════ */
.facility-section { background: var(--navy); position: relative; overflow: hidden; }
.facility-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 40px);
}
.facility-inner { position: relative; z-index: 1; }
.facility-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.facility-equipment-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.equip-item {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.82);
  font-size: .93rem;
}
.equip-item::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.facility-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fac-img {
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 2.2rem;
  transition: all .3s;
  cursor: pointer;
}
.fac-img span { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; }
.fac-img:hover { background: rgba(196,106,45,.15); border-color: rgba(196,106,45,.4); }
.fac-img.wide { grid-column: span 2; aspect-ratio: 2.2/1; }
.fac-img { position: relative; justify-content: flex-end; padding-bottom: 14px; }
.fac-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 55%);
  border-radius: inherit;
}
.fac-img-label {
  position: relative; z-index: 1;
  font-size: .72rem; color: #fff; text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}

/* Facility page - full layout */
.facility-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.spec-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
}
.spec-card:hover { background: rgba(196,106,45,.12); border-color: rgba(196,106,45,.35); }
.spec-icon { font-size: 2.5rem; margin-bottom: 14px; }
.spec-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.spec-desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ═══════════════════════════════════════════
   WHY CHOOSE / VALUE PROPS BAR
═══════════════════════════════════════════ */
.value-props-bar {
  background: var(--navy-dark);
  border-top: 3px solid var(--orange);
}
.value-props-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.vp-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.vp-item:last-child { border-right: none; }
.vp-item:hover { background: rgba(196,106,45,.1); }
.vp-icon { font-size: 2rem; margin-bottom: 10px; }
.vp-title {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   SUSTAINABILITY
═══════════════════════════════════════════ */
.sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sustain-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.sustain-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  transition: all .3s;
}
.sustain-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow); }
.sustain-icon { font-size: 1.8rem; margin-bottom: 10px; }
.sustain-title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 6px;
}
.sustain-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

.sustain-visual {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 60%, var(--green) 100%);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.sustain-visual::before {
  content: '♻';
  position: absolute; right: -16px; bottom: -16px;
  font-size: 10rem; opacity: .07; line-height: 1;
}
.sustain-visual h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eco-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: #a8edae;
  margin-bottom: 24px;
}
.eco-points { display: flex; flex-direction: column; gap: 14px; }
.eco-point { display: flex; align-items: flex-start; gap: 12px; }
.eco-point-icon { font-size: 1.2rem; flex-shrink: 0; }
.eco-point-text { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.55; }

/* ═══════════════════════════════════════════
   MARKETS / WHY US
═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  transition: all .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--navy); margin-bottom: 6px; }
.why-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: start;
}
.contact-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 40px;
  color: var(--white);
}
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-card .orange-line { margin: 10px 0 24px; }
.contact-person-profile {
  display: flex; align-items: center; gap: 18px;
  padding: 4px 0 22px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-person-profile img {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  flex-shrink: 0;
  background: var(--navy-light, #3A5A82);
}
.contact-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-row-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 3px; }
.contact-row-val { font-size: .93rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.contact-row-val a { color: rgba(255,255,255,.8); }
.contact-row-val a:hover { color: var(--orange); }
.contact-btns { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .22s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,95,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#formMsg { margin-top: 14px; font-size: .88rem; display: none; padding: 10px 14px; border-radius: var(--r); }
#formMsg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
#formMsg.error   { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#site-footer { background: var(--navy-deeper); color: rgba(255,255,255,.6); }
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand-desc { font-size: .87rem; line-height: 1.7; margin: 18px 0 22px; }
.footer-socials { display: flex; gap: 8px; }
.social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  font-weight: 700;
  transition: all .22s;
  text-decoration: none;
}
.social-icon:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 7px;
  transition: all .22s;
}
.footer-links a::before { content: '›'; color: var(--orange); font-size: 1rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .86rem; }
.footer-contact-item .ic { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--orange); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .value-props-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #topbar { display: none; }
  .header-inner { padding: 0 16px; }
  #primary-nav {
    display: none; position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column; padding: 20px 16px; gap: 6px;
    box-shadow: var(--shadow-lg); z-index: 998;
  }
  #primary-nav.open { display: flex; }
  #primary-nav > a { padding: 12px 16px; font-size: .92rem; }
  .nav-quote { margin-left: 0; }
  .menu-toggle { display: flex; }

  .about-grid, .sustain-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .facility-layout { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .facility-specs { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats-bar { flex-direction: column; max-width: 280px; }
  .values-strip { grid-template-columns: 1fr 1fr; }
  .value-props-inner { grid-template-columns: 1fr 1fr; }
  .sustain-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .facility-specs { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* WordPress alignment */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; position: absolute !important; }
