/* ============================================================
   PT. SEBANGA MULTI SAWIT — Website Stylesheet
   Color palette derived from logo: lighter/fresher tones
   ============================================================ */

:root {
  --green-dark:   #1B5E20;
  --green-main:   #2E7D32;
  --green-mid:    #43A047;
  --green-light:  #81C784;
  --green-pale:   #E8F5E9;
  --blue-dark:    #0D47A1;
  --blue-main:    #1565C0;
  --blue-mid:     #1976D2;
  --blue-light:   #90CAF9;
  --blue-pale:    #E3F2FD;
  --red-accent:   #C62828;
  --white:        #FFFFFF;
  --off-white:    #FAFAFA;
  --grey-100:     #F5F5F5;
  --grey-200:     #EEEEEE;
  --grey-400:     #BDBDBD;
  --grey-600:     #757575;
  --grey-800:     #424242;
  --text-dark:    #1A1A1A;
  --text-mid:     #424242;
  --text-light:   #616161;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:    0 4px 12px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 24px rgba(0,0,0,.14);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --transition:   all .25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-mid); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-pale);
  padding: .25rem .75rem;
  border-radius: 99px;
  margin-bottom: .85rem;
}
.section-title { margin-bottom: .65rem; }
.section-sub   { color: var(--text-light); max-width: 620px; }
.text-center   { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
section { padding: 5rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.75);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.btn-outline-green {
  background: transparent;
  color: var(--green-main);
  border-color: var(--green-main);
}
.btn-outline-green:hover { background: var(--green-main); color: white; }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover { background: var(--green-pale); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--grey-200);
  transition: var(--transition);
}
#navbar .container {
  max-width: 100%;
  padding-inline: 2rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo img { width: 48px; height: 48px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .name {
  font-weight: 700;
  font-size: .875rem;
  color: var(--blue-dark);
  letter-spacing: .01em;
}
.nav-logo-text .tagline {
  font-size: .7rem;
  color: var(--red-accent);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-main);
  background: var(--green-pale);
}
.nav-cta {
  margin-left: .75rem;
  padding: .5rem 1.25rem;
  background: var(--green-main);
  color: white !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-cta:hover { background: var(--green-dark) !important; color: white; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 1rem 1.25rem;
  gap: .25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--green-main); background: var(--green-pale); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: white; margin-bottom: 1.1rem; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero p  { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.35);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:.9;transform:scaleY(1.2)} }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1.25rem; }
.stat-item + .stat-item { border-left: 1px solid var(--grey-200); }
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-main);
  line-height: 1.1;
  display: block;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .35rem;
  display: block;
}

/* ============================================================
   ABOUT SUMMARY
   ============================================================ */
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--white);
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-badge-icon { font-size: 1.5rem; }
.about-badge-text strong { display: block; font-size: .9rem; color: var(--green-main); }
.about-badge-text span { font-size: .75rem; color: var(--text-light); }
.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text p { font-size: 1.05rem; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--green-main);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  margin-top: .25rem;
}
.read-more:hover { gap: .75rem; }
.read-more::after { content: '→'; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { background: var(--grey-100); }
.products-section .section-label { color: var(--blue-main); background: var(--blue-pale); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img { height: 160px; background: var(--green-pale); overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.product-card-body { padding: 1.25rem; }
.product-card-body h3 { font-size: 1rem; color: var(--blue-dark); margin-bottom: .5rem; }
.product-card-body p { font-size: .875rem; color: var(--text-light); line-height: 1.6; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-main);
  margin-top: .85rem;
}
.product-link::after { content: '→'; }
.products-cta { text-align: center; margin-top: 2rem; }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.cert-section { padding: 3.5rem 0; }
.cert-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  min-width: 130px;
  background: var(--white);
  transition: var(--transition);
}
.cert-badge:hover { border-color: var(--green-main); box-shadow: var(--shadow-sm); }
.cert-badge-icon { font-size: 1.75rem; }
.cert-badge strong { font-size: .85rem; color: var(--blue-dark); text-align: center; }
.cert-badge span { font-size: .7rem; color: var(--text-light); text-align: center; }
.cert-check {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--green-main);
}
.cert-check::before { content: '✓'; }

/* ============================================================
   FARMER CTA BANNER
   ============================================================ */
.farmer-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.farmer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/plantation-sunny.jpg') center/cover;
  opacity: .12;
}
.farmer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.farmer-cta h2 { color: white; }
.farmer-cta p  { color: rgba(255,255,255,.85); max-width: 480px; margin-top: .5rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 60%, var(--green-main) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero h1 { color: white; }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 100%; margin-top: .75rem; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.history-section .grid-2 { gap: 4rem; }
.history-text h2 { margin-bottom: 1rem; }
.history-text p + p { margin-top: 1rem; }
.history-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.history-img img { width: 100%; height: 420px; object-fit: cover; }

.vision-section {
  background: var(--green-dark);
  padding: 4rem 0;
  text-align: center;
}
.vision-section h2 { color: white; margin-bottom: 1rem; }
.vision-quote {
  font-size: 1.25rem;
  color: rgba(255,255,255,.92);
  font-style: italic;
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.7;
  position: relative;
  padding: 0 2rem;
}
.vision-quote::before { content: '\201C'; font-size: 4rem; color: var(--green-light); position: absolute; left: -1rem; top: -1rem; line-height: 1; }

.mission-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.75rem; }
.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-main);
}
.mission-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.mission-text { font-size: .95rem; color: var(--text-mid); }

.values-section { background: var(--grey-100); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.value-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-top: 3px solid var(--green-main); }
.value-card-icon { font-size: 2rem; margin-bottom: .85rem; }
.value-card h3 { font-size: 1rem; color: var(--blue-dark); margin-bottom: .5rem; }
.value-card p { font-size: .875rem; }

.timeline-section { padding: 5rem 0; }
.timeline { position: relative; max-width: 700px; margin: 2.5rem auto 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-light);
}
.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-year {
  width: 90px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-main);
  flex-shrink: 0;
  padding-top: .1rem;
  text-align: right;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--green-main);
  border: 3px solid var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .35rem;
  box-shadow: 0 0 0 2px var(--green-main);
  position: relative;
  left: -7px;
  margin-left: calc(120px - 7px);
  position: absolute;
  left: calc(120px - 5px);
}
.timeline-content { padding-left: 2.5rem; }
.timeline-content h4 { color: var(--text-dark); margin-bottom: .25rem; }
.timeline-content p { font-size: .875rem; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.product-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.product-detail:last-child { border-bottom: none; }
.product-detail:nth-child(even) { background: var(--grey-100); }
.product-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-detail:nth-child(even) .product-detail-inner { direction: rtl; }
.product-detail:nth-child(even) .product-detail-inner > * { direction: ltr; }
.product-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-img-wrap img { width: 100%; height: 320px; object-fit: cover; }
.product-img-wrap.placeholder-img {
  height: 320px;
  background: linear-gradient(135deg, var(--green-pale), var(--blue-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-number {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--green-main);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.specs-table { width: 100%; border-collapse: collapse; margin-top: .75rem; }
.specs-table td {
  padding: .55rem .75rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--grey-200);
}
.specs-table td:first-child { color: var(--text-light); width: 55%; }
.specs-table td:last-child { font-weight: 600; color: var(--blue-dark); }
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.tag {
  padding: .25rem .7rem;
  background: var(--blue-pale);
  color: var(--blue-main);
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 500;
}
.tag.green { background: var(--green-pale); color: var(--green-dark); }
.specs-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-top: 1.25rem; margin-bottom: .35rem; }

.process-section { background: var(--blue-dark); padding: 5rem 0; }
.process-section .section-label { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.process-section h2 { color: white; }
.process-section .section-sub { color: rgba(255,255,255,.7); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 2rem;
  color: rgba(255,255,255,.3);
  font-size: 1.25rem;
  z-index: 1;
}
.process-step:last-child::after,
.process-step:nth-child(4)::after { display: none; }
.step-num {
  width: 48px;
  height: 48px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-weight: 800;
  font-size: .9rem;
  color: white;
  margin-bottom: .85rem;
}
.process-step h4 { color: white; font-size: .9rem; margin-bottom: .4rem; }
.process-step p { color: rgba(255,255,255,.65); font-size: .78rem; line-height: 1.5; }

/* ============================================================
   SUSTAINABILITY PAGE
   ============================================================ */
.sustain-quote {
  background: var(--green-pale);
  padding: 3.5rem 0;
  text-align: center;
}
.sustain-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--green-dark);
  max-width: 750px;
  margin-inline: auto;
  line-height: 1.7;
  position: relative;
  padding: 0 2.5rem;
}
.sustain-quote blockquote::before { content: '\201C'; font-size: 5rem; color: var(--green-light); position: absolute; left: 0; top: -.5rem; line-height: 1; }

.env-pillars { background: var(--white); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.5rem; }
.pillar-card {
  padding: 2rem;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--green-main);
  transition: var(--transition);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.pillar-card h3 { color: var(--green-dark); margin-bottom: .75rem; }
.pillar-card p { font-size: .9rem; }

.cert-cards-section { background: var(--grey-100); }
.cert-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.cert-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow-md); }
.cert-card-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  padding: .4rem;
}
.cert-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.cert-card-body h3 { color: var(--blue-dark); font-size: 1rem; margin-bottom: .25rem; }
.cert-card-body .cert-sub { font-size: .8rem; color: var(--text-light); margin-bottom: .75rem; font-style: italic; }
.cert-card-body p { font-size: .875rem; margin-bottom: .75rem; }
.cert-meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .65rem;
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-dark);
}

.csr-section { padding: 5rem 0; }
.csr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
.csr-block h3 { color: var(--green-dark); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.csr-list { display: flex; flex-direction: column; gap: .6rem; }
.csr-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.csr-list li::before {
  content: '✓';
  color: var(--green-main);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-block { margin-bottom: 2rem; }
.contact-block h4 {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--green-dark);
  font-size: .95rem;
  margin-bottom: .65rem;
}
.contact-block p, .contact-block a {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.contact-block a:hover { color: var(--green-main); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .5rem; }
.hours-grid dt { font-size: .875rem; font-weight: 600; color: var(--text-dark); }
.hours-grid dd { font-size: .875rem; color: var(--text-mid); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; color: var(--blue-dark); }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-main); box-shadow: 0 0 0 3px rgba(46,125,50,.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: .85rem; margin-top: .5rem; }
.form-notice {
  font-size: .75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: .75rem;
}
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 1rem;
}

.map-section { padding: 0 0 5rem; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #111;
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-logo img { width: auto; height: 3rem; object-fit: contain; filter: brightness(1.2); }
.footer-logo-text .name { font-weight: 700; font-size: 1rem; color: white; }
.footer-logo-text .tagline { font-size: .9rem; color: var(--red-accent); font-weight: 600; }
.footer-about { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.75); }
.footer-addr { font-size: .8rem; margin-top: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h4 { color: white; font-size: .9rem; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--green-light); }
.footer-cert-list { display: flex; flex-direction: column; gap: .55rem; }
.footer-cert-item { display: flex; align-items: center; gap: .65rem; font-size: .85rem; }
.cert-dot { width: 8px; height: 8px; background: var(--green-main); border-radius: 50%; flex-shrink: 0; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   UTILITIES & MISC
   ============================================================ */
.bg-grey  { background: var(--grey-100); }
.bg-pale  { background: var(--green-pale); }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.75rem; }
.mb-1  { margin-bottom: .5rem; }

/* Fade-in animation on scroll */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* Alert */
.alert {
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  margin-top: .75rem;
  display: none;
}
.alert-success { background: var(--green-pale); color: var(--green-dark); border: 1px solid var(--green-light); display: block; }
.alert-error { background: #FFEBEE; color: #B71C1C; border: 1px solid #FFCDD2; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .process-step::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; border-top: 1px solid var(--grey-200); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid, .cert-cards, .values-grid, .pillars-grid, .csr-grid { grid-template-columns: 1fr; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .product-detail:nth-child(even) .product-detail-inner { direction: ltr; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .farmer-cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .timeline::before { left: 60px; }
  .timeline-year { width: 50px; font-size: .9rem; }
  .timeline-content { padding-left: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cert-strip { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--grey-200); }
}
