/* =============================================
   BIKO INDUSTRIES — Site Stylesheet
   ============================================= */

/* --- Variables --- */
:root {
  --green:      #9ccc7a;
  --green-dark: #7ab55c;
  --green-deep: #4a7c30;
  --red:        #ca1f26;
  --dark:       #1a2235;
  --dark-mid:   #2d3748;
  --gray:       #6b7280;
  --gray-light: #9ca3af;
  --border:     #e5e7eb;
  --light:      #f8f9fa;
  --white:      #ffffff;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.10);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: .25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}
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; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: #444; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: .5rem;
}

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.bg-dark     { background: var(--dark); }
.bg-light    { background: var(--light); }
.bg-green    { background: var(--green); }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 620px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--dark);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--dark); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--dark); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
}

/* Top band: green logo + contact info */
.header-top {
  background: var(--white);
  display: flex;
  align-items: stretch;
  min-height: 90px;
}
.header-logo-wrap {
  background: var(--green);
  display: flex;
  align-items: center;
  padding: 18px 88px 18px 36px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 52px) 100%, 0 100%);
  flex-shrink: 0;
  min-width: 260px;
}
.nav-logo img { height: 54px; width: auto; }
.nav-logo span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
}
.nav-logo span em { color: var(--dark); font-style: normal; }

.header-contact {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px 0 64px;
  margin-left: auto;
}
.header-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-contact-icon {
  width: 46px; height: 46px;
  border: 1.5px solid rgba(156,204,122,.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(156,204,122,.07);
}
.header-contact-icon svg { width: 20px; height: 20px; fill: var(--green-deep); }
.header-contact-item strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 2px;
}
.header-contact-item span,
.header-contact-item a {
  font-size: .86rem;
  color: var(--gray);
  text-decoration: none;
}
.header-contact-item a:hover { color: var(--green-deep); }

/* Nav bar */
.header-nav {
  background: var(--dark);
  border-top: 3px solid var(--green);
}
.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 50px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green); background: rgba(156,204,122,.1); }
.nav-link svg { width: 14px; height: 14px; fill: rgba(255,255,255,.55); transition: transform var(--transition); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: .875rem;
  color: var(--dark-mid);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--light); color: var(--green-deep); }

/* Mobile hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-left: auto;
  margin-right: 16px;
  align-self: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Contact Us CTA */
.nav-cta {
  background: var(--green);
  color: var(--dark) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--dark) !important; }
.nav-cta.active { background: var(--green-dark) !important; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* =============================================
   HOMEPAGE HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,34,53,.85) 0%, rgba(26,34,53,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-content .eyebrow { color: var(--green); }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: var(--transition);
  cursor: pointer;
}
.hero-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* =============================================
   SERVICES STRIP
   ============================================= */
.services-strip { padding: 0; background: var(--white); }
.services-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow-md);
}
.service-strip-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.service-strip-item:last-child { border-right: none; }
.service-strip-item:hover { background: var(--light); }
.service-strip-item:hover .service-num { color: var(--green-deep); }
.service-num {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--green);
  line-height: 1;
}
.service-strip-item h4 { font-size: .95rem; color: var(--dark); margin-bottom: 4px; }
.service-strip-item p { font-size: .8rem; color: var(--gray); line-height: 1.5; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge span { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.about-brands {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.brand-tag {
  padding: 6px 16px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-mid);
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/* =============================================
   OPERATIONS
   ============================================= */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.op-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.op-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.op-icon {
  width: 60px; height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.op-card:hover .op-icon { background: var(--green); }
.op-icon svg { width: 28px; height: 28px; fill: var(--green-deep); transition: var(--transition); }
.op-card:hover .op-icon svg { fill: var(--dark); }
.op-subtitle { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); margin-bottom: 4px; }
.op-card h4 { font-size: 1rem; color: var(--dark); }

/* =============================================
   WAREHOUSE
   ============================================= */
.warehouse-section { background: var(--dark); }
.warehouse-section h2 { color: var(--white); }
.warehouse-section .eyebrow { color: var(--green); }
.warehouse-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.warehouse-track {
  display: flex;
  transition: transform .5s ease;
}
.warehouse-slide { flex: 0 0 100%; }
.warehouse-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  z-index: 2;
}
.carousel-btn:hover { background: var(--green); }
.carousel-btn svg { width: 20px; height: 20px; fill: var(--white); }
.carousel-btn-prev { left: 16px; }
.carousel-btn-next { right: 16px; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--dark) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* =============================================
   WHY CHOOSE US / CONTACT SPLIT
   ============================================= */
.why-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-list { margin-top: 24px; }
.why-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-check {
  width: 24px; height: 24px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg { width: 12px; height: 12px; fill: var(--dark); }
.why-item h4 { font-size: .95rem; margin-bottom: 4px; }
.why-item p  { font-size: .85rem; color: var(--gray); }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(156,204,122,.2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }

/* =============================================
   PRODUCT CARDS (Kopperko / Ibambo)
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card-img {
  height: 220px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 20px; }
.product-card-body h4 { margin-bottom: 8px; font-size: 1rem; }
.product-card-body p  { font-size: .85rem; color: var(--gray); line-height: 1.55; }

/* =============================================
   BRAND PAGE HERO
   ============================================= */
.brand-hero {
  padding: 72px 0;
  text-align: center;
}
.brand-hero.kopperko { background: linear-gradient(135deg, #1a2235 0%, #2d3748 100%); }
.brand-hero.ibambo   { background: linear-gradient(135deg, #2d4a1e 0%, #4a7c30 100%); }
.brand-hero-logo { max-height: 100px; margin: 0 auto 24px; }
.brand-tagline {
  font-size: 1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

/* Brand content */
.brand-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brand-content-grid.reverse { direction: rtl; }
.brand-content-grid.reverse > * { direction: ltr; }
.brand-content-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.brand-bullets { margin-top: 20px; }
.brand-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: #444;
}
.brand-bullets li::before {
  content: '→';
  color: var(--green-deep);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Green products section */
.products-section-green {
  background: #3a7329;
  padding: 80px 0;
}
.products-section-green h2 { color: var(--white); }
.products-section-green .eyebrow { color: rgba(255,255,255,.7); }
.products-section-green .product-card { background: rgba(255,255,255,.95); border: none; }

/* FSC badge */
.fsc-section {
  background: var(--light);
  padding: 48px 0;
}
.fsc-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.fsc-inner img { max-width: 200px; border-radius: var(--radius-lg); }
.fsc-inner h3 { margin-bottom: 8px; }
.fsc-inner p  { color: var(--gray); }

/* =============================================
   SERVICE PAGE CONTENT
   ============================================= */
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.service-content-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.service-highlights {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 20px;
}
.service-highlights h3 { margin-bottom: 20px; }
.highlight-list { display: flex; flex-direction: column; gap: 12px; }
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: #444;
}
.highlight-dot {
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight-dot svg { width: 10px; height: 10px; fill: var(--dark); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 26px; height: 26px; fill: var(--green-deep); }
.value-card h4 { margin-bottom: 8px; font-size: .95rem; }
.value-card p  { font-size: .83rem; color: var(--gray); line-height: 1.55; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-icon svg { width: 24px; height: 24px; fill: var(--dark); }
.contact-info-card h4 { font-size: .9rem; color: var(--gray); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.contact-info-card a, .contact-info-card p { font-weight: 600; color: var(--dark); font-size: .95rem; }
.contact-info-card a:hover { color: var(--green-deep); }
.contact-form-full { max-width: 720px; margin: 0 auto; }
.contact-form-full .contact-form-wrap { box-shadow: var(--shadow-md); }
.map-section { height: 420px; overflow: hidden; border-radius: var(--radius-lg); }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .875rem; margin: 16px 0 24px; max-width: 300px; color: rgba(255,255,255,.6); }
.footer-logo img { height: 42px; }
.footer-logo span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span em { color: var(--green); font-style: normal; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; }
.footer-contact-list svg { width: 15px; height: 15px; fill: var(--green); flex-shrink: 0; margin-top: 3px; }
.footer-contact-list a { color: rgba(255,255,255,.7); }
.footer-contact-list a:hover { color: var(--green); }
.footer-col h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--green); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-contact { display: none; }
  .nav-toggle { display: flex; }
  .header-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-top: none;
  }
  .header-nav.open { max-height: 600px; overflow-y: auto; }
  .header-nav .container { height: auto; padding: 8px 16px; justify-content: stretch; }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border: none;
    border-radius: var(--radius);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .25s ease;
  }
  .nav-item.open .nav-dropdown { max-height: 300px; padding: 4px 0; }
  .nav-dropdown a { color: rgba(255,255,255,.7); }
  .nav-dropdown a:hover { background: rgba(255,255,255,.05); color: var(--green); }
  .nav-cta { text-align: center; }

  .hero { min-height: 480px; }
  .services-strip-inner { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-contact-grid, .brand-content-grid,
  .service-content-grid, .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-content-grid.reverse { direction: ltr; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-strip-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr; }
}

/* --- Formspree field errors --- */
.field-error { display: block; color: #ca1f26; font-size: .78rem; margin-top: 4px; min-height: 1em; }
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: #ca1f26 !important;
  outline: none;
}
