:root {
  --green: #1B5E20;
  --green-mid: #2E7D32;
  --green-light: #388E3C;
  --gold: #F9A825;
  --gold-dark: #F57F17;
  --white: #FFFFFF;
  --cream: #FAFAF7;
  --tan: #C4A882;
  --tan-light: #F5EFE6;
  --tan-mid: #E8DDD0;
  --dark: #0F2010;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --shadow: 0 4px 24px rgba(27,94,32,0.10);
  --shadow-lg: 0 12px 48px rgba(27,94,32,0.16);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Lora', serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* GLOBAL IMAGE ZOOM HOVER */
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.5s ease;
  display: block;
}
.img-zoom:hover img {
  transform: scale(1.07);
}

/* Apply zoom to all common image wrappers */
.product-card-img,
.blog-img,
.blog-card .blog-img,
.team-photo-wrap {
  overflow: hidden;
}
.product-card-img img,
.blog-img img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
}
.product-card:hover .product-card-img img,
.blog-card:hover .blog-img img {
  transform: scale(1.07);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,168,37,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,94,32,0.3); }

/* TOP BAR */
.topbar {
  background: var(--green);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.9); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-contact { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 12px; align-items: center; }
.topbar-social a { font-size: 14px; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.logo-text { line-height: 1.1; }
.logo-name {
  font-family: 'Lora', serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--green);
  display: block;
}
.logo-sub {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links a, .nav-links button {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover { background: var(--tan-light); color: var(--green); }
.nav-links a.active, .nav-links button.active { color: var(--green); font-weight: 600; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  border: 1px solid var(--tan-mid);
}
.nav-links li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
}
.dropdown a:hover { background: var(--tan-light); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  padding: 84px 32px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  border: none;
  border-radius: 10px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(27,94,32,0.25);
}
.mobile-close:hover { background: var(--dark); }
.mobile-nav a, .mobile-nav button {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--tan-mid);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  display: block;
  width: 100%;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav button:hover { color: var(--green); }
.mobile-sub {
  padding-left: 28px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--gray) !important;
  border-bottom: 1px solid var(--tan-mid) !important;
  border-left: 3px solid var(--green) !important;
  margin-left: 12px !important;
}
.mobile-nav .mobile-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--dark) !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid var(--tan-mid) !important;
  display: block !important;
  cursor: default !important;
  pointer-events: none !important;
}

/* PAGE HERO BANNER */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,40,16,0.82) 0%, rgba(27,94,32,0.75) 60%, rgba(46,125,50,0.68) 100%);
  z-index: 0;
}
.page-hero .breadcrumb,
.page-hero h1,
.page-hero p { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(28px, 5vw, 48px); color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb span { color: var(--gold); }

/* SECTIONS */
.section { padding: 80px 24px; }
.section-sm { padding: 60px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--tan-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(27,94,32,0.15);
}
.section-title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.section-subtitle { color: var(--gray); font-size: 17px; line-height: 1.7; max-width: 620px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* CARDS */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid var(--tan-mid);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 28px; }

/* PRODUCT CARDS */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--tan-mid);
  transition: all 0.35s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 20px; margin-bottom: 10px; color: var(--dark); }
.product-card-body p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s;
}
.product-card-link:hover { gap: 10px; }

/* STATS */
.stats-section {
  background: var(--green);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(249,168,37,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Lora', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: #ffffff; font-size: 13px; font-weight: 700; line-height: 1.4; }

/* WAVE DIVIDER */
.wave-top {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-top svg { display: block; width: 100%; }

/* BLOG CARDS */
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--tan-mid); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-tag { display: inline-block; background: var(--tan-light); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.blog-body { padding: 24px; }
.blog-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--gray); display: flex; gap: 12px; align-items: center; }

/* PARTNERS SCROLL */
.partners-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner-card {
  background: var(--white);
  border: 1.5px solid var(--tan-mid);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  height: 140px;
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(27,94,32,0.06);
  overflow: hidden;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.partner-card img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: grayscale(20%);
}
.partner-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}
@media (max-width: 600px) {
  .partners-gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .partner-card { height: 110px; padding: 20px 16px; }
}

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

/* FORM */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--tan-mid);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* VALUE CARD */
.value-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--tan-mid);
  transition: all 0.3s ease;
}
.value-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.value-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--green); }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* TEAM CARDS */
.team-card { text-align: center; }
.team-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--tan-light);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* PRODUCT DETAIL CARDS */
.input-card {
  background: var(--white);
  border: 1px solid var(--tan-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.input-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}
.input-card:hover::before { transform: scaleY(1); }
.input-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(27,94,32,0.2); }
.input-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.input-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.input-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* SERVICE CARD */
.service-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--tan-mid);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(27,94,32,0.2); }
.service-icon-wrap {
  width: 72px; height: 72px;
  background: var(--tan-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--green); }
.service-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--dark); }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* JOB CARD */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--tan-mid);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  flex-wrap: wrap;
}
.job-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green); }
.job-info h3 { font-size: 18px; margin-bottom: 6px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag { font-size: 12px; padding: 4px 12px; border-radius: 50px; background: var(--tan-light); color: var(--green); font-weight: 600; }

/* CALLOUT */
.callout {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
  margin: 40px 0;
}
.callout h3 { font-size: 22px; margin-bottom: 10px; color: var(--white); }
.callout p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; }

/* CONTACT INFO */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--tan-light);
  margin-bottom: 16px;
}
.contact-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--green); }
.contact-info-item p { font-size: 14px; color: var(--gray); }

/* MAP PLACEHOLDER */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(27,94,32,0.2);
  color: var(--green);
}
.map-placeholder span { font-size: 48px; }
.map-placeholder p { font-size: 14px; font-weight: 600; }
.map-placeholder small { font-size: 12px; color: var(--gray); }

/* FEED CATEGORY */
.feed-category {
  background: var(--white);
  border: 1px solid var(--tan-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.feed-category:hover { box-shadow: var(--shadow-lg); }
.feed-cat-header {
  background: var(--green);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feed-cat-header span { font-size: 24px; }
.feed-cat-header h3 { font-size: 16px; color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 700; }
.feed-cat-body { padding: 16px 20px; }
.feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--tan-mid);
  font-size: 14px;
  color: var(--dark);
}
.feed-item:last-child { border-bottom: none; }
.feed-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* CTA BANNER */
.cta-banner {
  background: var(--tan-light);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}
.cta-banner h2 { font-size: 32px; margin-bottom: 14px; }
.cta-banner p { font-size: 16px; color: var(--gray); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 72px 24px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--gold); }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* DIVIDERS */
.divider-wave {
  height: 60px;
  background: var(--green);
  clip-path: ellipse(55% 100% at 50% 0%);
}

/* BG VARIANTS */
.bg-cream { background: var(--cream); }
.bg-tan { background: var(--tan-light); }
.bg-green { background: var(--green); }

/* MISC */
.tag-gold { background: rgba(249,168,37,0.15); color: var(--gold-dark); border: 1px solid rgba(249,168,37,0.3); }
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.highlight { color: var(--gold); }
.green-line { width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin: 16px 0 24px; }
.green-line.center { margin: 16px auto 24px; }
hr.divider { border: none; border-top: 1px solid var(--tan-mid); margin: 48px 0; }

/* HERO SLIDESHOW */
#home-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 14vw, 140px) clamp(16px, 4vw, 48px) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,24,10,0.85) 0%, rgba(27,94,32,0.72) 55%, rgba(56,142,60,0.55) 100%);
}
.hero-dots {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; }
.hero-tag {
  display: inline-block;
  background: rgba(249,168,37,0.2);
  color: var(--gold);
  border: 1px solid rgba(249,168,37,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeSlideIn 0.8s ease forwards;
}
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  animation: fadeSlideIn 0.8s ease 0.2s both;
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
  animation: fadeSlideIn 0.8s ease 0.4s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeSlideIn 0.8s ease 0.6s both; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ABOUT HERO STRIP */
.about-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 56px;
}
.about-strip-item {
  padding: 32px;
  text-align: center;
}
.about-strip-item:nth-child(1) { background: var(--green); color: var(--white); }
.about-strip-item:nth-child(2) { background: var(--gold); color: var(--dark); }
.about-strip-item:nth-child(3) { background: var(--dark); color: var(--white); }
.about-strip-item .num { font-family: 'Lora', serif; font-size: 40px; font-weight: 900; line-height: 1; }
.about-strip-item .lbl { font-size: 13px; font-weight: 600; margin-top: 6px; opacity: 0.85; }

/* Blog layout responsive */
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr !important; }
  .blog-layout > div:last-child { position: static !important; }
}
@media (max-width: 520px) {
  .blog-card[style*="grid-template-columns:160px"] {
    grid-template-columns: 1fr !important;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links a, .nav-links button { font-size: 13px; padding: 8px 10px; }
}
@media (max-width: 768px) {
  /* Hide topbar completely on mobile */
  .topbar { display: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }

  /* Hide nav links, hide Reach Out button on mobile */
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-reach-out { display: none !important; }

  /* Center the logo on mobile */
  .nav-inner {
    padding: 0 16px;
    height: 64px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }
  .logo {
    grid-column: 2;
    justify-self: center;
  }
  .nav-cta {
    grid-column: 3;
    justify-self: end;
  }

  .hamburger { display: flex; grid-column: 1; grid-row: 1; justify-self: start; }
  .about-strip { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #home-hero { min-height: 100svh; }
  .hero-title { font-size: clamp(28px, 8vw, 52px) !important; }
  .hero-subtitle { font-size: clamp(14px, 4vw, 17px) !important; }
  .hero-tag { font-size: 11px; padding: 5px 12px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn { padding: 12px 20px; font-size: 14px; }
  .section { padding: 56px 20px; }
  .section-title { font-size: clamp(22px, 6vw, 34px); }
  .callout { padding: 28px 20px; }
  .cta-banner { padding: 40px 20px; }
  .about-strip-item { padding: 24px 16px; }
  .about-strip-item .num { font-size: 32px; }
  .stat-num { font-size: clamp(28px, 8vw, 48px) !important; }
  .product-card-img img, .blog-img img { height: 180px !important; }
  .logo img { height: 58px !important; }
  .footer-social { flex-wrap: wrap; }
  .feed-category { margin-bottom: 0; }
  .input-card { padding: 20px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 16px; }
  .section-sm { padding: 40px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .topbar-social { display: none; }
  .topbar-contact span { display: none; }
  .hero-title { font-size: clamp(26px, 9vw, 44px) !important; line-height: 1.15 !important; }
  .hero-subtitle { font-size: 14px !important; }
  .btn { padding: 11px 18px; font-size: 13px; }
  .page-hero { padding: 60px 16px 40px; }
  .page-hero h1 { font-size: clamp(22px, 7vw, 36px); }
  .card-body { padding: 20px 16px; }
  .blog-body { padding: 18px 16px; }
  .service-card { padding: 20px 16px; gap: 14px; }
  .contact-info-item { padding: 16px; gap: 12px; }
  .footer-grid { gap: 24px; }
  .footer-bottom-links { gap: 12px; font-size: 12px; }
  .nav-inner { height: 58px; }
  .logo img { height: 50px !important; }
  .hero-dots { bottom: 16px; gap: 8px; }
  .partner-logo { width: 110px; height: 56px; }
}

/* ===== ACCESSIBILITY ===== */

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Visible focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Larger touch targets on mobile */
@media (max-width: 768px) {
  .btn { min-height: 48px; }
  .nav-links a, .nav-links button { min-height: 44px; }
  .footer-col ul li a { padding: 6px 0; display: inline-block; }
  .hero-dot { width: 14px; height: 14px; }
  .hero-dot.active { width: 28px; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide { transition: none !important; }
  .partners-track { animation: none !important; }
  .fade-up, .fade-left, .fade-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* High contrast text improvements */
.blog-meta { color: #555; }
.section-subtitle { color: #4B5563; }
.footer-col ul li a { color: rgba(255,255,255,0.75); }
