/* =========================================================
   VELDTSCHOEN WASTE MANAGEMENT – Main Stylesheet
   =========================================================
   Palette:
     --green-dark:   #1B3A0A  (nav, footer, deep sections)
     --green-mid:    #2D5A16  (dark cards)
     --green-accent: #4B8B1E  (mid-tone)
     --lime:         #7FC52F  (CTA, highlights)
     --lime-light:   #A5D94F  (hover states)
     --mint:         #E8F5D0  (light section bg)
     --white:        #FFFFFF
     --text-dark:    #1A1A1A
     --text-muted:   #5A6B4A
   ========================================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1B3A0A;
  --green-mid:    #2D5A16;
  --green-accent: #4B8B1E;
  --lime:         #7FC52F;
  --lime-light:   #A5D94F;
  --mint:         #EBF7D4;
  --mint-soft:    #F4FAE8;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-muted:   #506040;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(27,58,10,0.12);
  --shadow-lg:    0 12px 48px rgba(27,58,10,0.18);
  --transition:   0.3s ease;
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Nunito', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(127,197,47,0.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-title span { color: var(--lime); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--green-dark);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: var(--lime-light);
  border-color: var(--lime-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127,197,47,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

/* ── Image Placeholder ── */
.img-placeholder {
  background: linear-gradient(135deg, #c8e6a0 0%, #a0c870 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  gap: 10px;
  color: var(--green-mid);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px dashed rgba(75,139,30,0.3);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.15) 20px,
    rgba(255,255,255,0.15) 40px
  );
}

.img-placeholder i {
  font-size: 2.5rem;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.img-placeholder span {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.6);
  padding: 4px 12px;
  border-radius: 4px;
}

/* ── Fade-In Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(27,58,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  filter: drop-shadow(0 2px 6px rgba(127,197,47,0.4));
  transition: transform var(--transition);
}
.nav-logo:hover .logo-icon { transform: rotate(-10deg) scale(1.05); }

.logo-text { display: flex; flex-direction: column; }
.logo-primary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1;
}
.logo-secondary {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--lime);
  padding: 10px 22px;
  border-radius: 50px;
  transition: all var(--transition);
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--lime-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(127,197,47,0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ────────────────────────────────────────────
   HERO SECTION
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,58,10,0.96) 0%,
    rgba(45,90,22,0.88) 50%,
    rgba(27,58,10,0.92) 100%
  );
  z-index: 2;
}

/* Hero background image placeholder */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1B3A0A 0%, #2D5A16 40%, #3A6B1A 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  container: hero / inline-size;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(127,197,47,0.15);
  border: 1px solid rgba(127,197,47,0.3);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.8rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-title .accent { color: var(--lime); display: block; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-img-main {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(127,197,47,0.2);
}

.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-img-sm {
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-indicator {
  width: 30px; height: 48px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 5px; height: 5px;
  background: var(--lime);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(14px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ────────────────────────────────────────────
   STATS BAR
──────────────────────────────────────────── */
.stats-bar {
  background: var(--lime);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: x;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(27,58,10,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(27,58,10,0.7);
  margin-top: 4px;
  display: block;
}

/* ────────────────────────────────────────────
   INTRO / ABOUT TEASER
──────────────────────────────────────────── */
.intro-section {
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-visual {
  position: relative;
}
.intro-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img-wrap .img-placeholder { height: 480px; }
.intro-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.intro-badge-float .big-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--lime);
  display: block;
  line-height: 1;
}
.intro-badge-float .big-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.intro-text .section-label { margin-bottom: 10px; }
.intro-text .section-title { margin-bottom: 20px; }
.intro-text .section-desc { margin-bottom: 32px; }

.value-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.value-dot {
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   SERVICES SECTION
──────────────────────────────────────────── */
.services-section { background: var(--mint-soft); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-desc { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-img-wrap img,
.service-card:hover .service-img-wrap .img-placeholder {
  transform: scale(1.04);
}

.service-num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  background: var(--lime);
  padding: 6px 14px;
  border-radius: 50px;
}

.service-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img-wrap .img-placeholder {
  height: 100%;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.service-body { padding: 28px 28px 32px; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--mint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-accent);
  font-size: 1.4rem;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--lime);
  color: var(--green-dark);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ────────────────────────────────────────────
   RECYCLE MATERIALS STRIP
──────────────────────────────────────────── */
.recycle-section { background: var(--green-dark); }
.recycle-header { text-align: center; margin-bottom: 56px; }
.recycle-header .section-title { color: var(--white); }
.recycle-header .section-desc { color: rgba(255,255,255,0.65); margin: 0 auto; }

.recycle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.recycle-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(127,197,47,0.2);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.recycle-item:hover {
  background: rgba(127,197,47,0.12);
  border-color: var(--lime);
  transform: translateY(-4px);
}
.recycle-item i {
  font-size: 2rem;
  color: var(--lime);
  margin-bottom: 10px;
  display: block;
}
.recycle-item span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ────────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #4B8B1E 0%, #2D5A16 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(127,197,47,0.25) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 72px 0;
}
.cta-text .section-title { color: var(--white); }
.cta-text .section-title span { color: var(--lime); }
.cta-text .section-desc { color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ────────────────────────────────────────────
   PAGE HERO (inner pages)
──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(127,197,47,0.15)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
  display: block;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--lime); }
.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--lime); }
.breadcrumb i { font-size: 0.6rem; }

/* ────────────────────────────────────────────
   ABOUT PAGE – SECTIONS
──────────────────────────────────────────── */
.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-visual .img-placeholder { height: 500px; }

.vm-section { background: var(--mint-soft); }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: var(--lime);
  border-radius: 0 4px 4px 0;
}
.vm-card.mission::before { background: var(--green-accent); }

.vm-card-icon {
  width: 60px; height: 60px;
  background: var(--mint);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.vm-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.vm-card-list { display: flex; flex-direction: column; gap: 12px; }
.vm-card-list li {
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.vm-card-list li::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.inspire-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.inspire-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.inspire-img .img-placeholder { height: 420px; }
.inspire-text .section-title { color: var(--white); }
.inspire-text .section-title span { color: var(--lime); }
.inspire-text .section-desc { color: rgba(255,255,255,0.7); }
.inspire-quote {
  margin-top: 28px;
  padding: 24px;
  background: rgba(127,197,47,0.1);
  border-left: 4px solid var(--lime);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
}

/* ────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--mint-soft);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(127,197,47,0.2);
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--lime);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--green-dark);
  color: var(--lime);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card-body h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-card-body a, .contact-card-body p {
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 600;
  display: block;
  line-height: 1.7;
  transition: color var(--transition);
}
.contact-card-body a:hover { color: var(--lime); }

.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.social-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-circle:hover {
  background: var(--lime);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(127,197,47,0.15);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0EBD0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--mint-soft);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(127,197,47,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 1rem; padding: 16px; }

.form-success {
  display: none;
  background: var(--mint);
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* Map Placeholder */
.map-section { background: var(--mint-soft); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
  position: relative;
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c8e8a0 0%, #9ec860 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.map-placeholder i {
  font-size: 4rem;
  color: var(--green-mid);
  opacity: 0.5;
}
.map-placeholder p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.7); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
}
.footer-sub {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--lime);
  color: var(--green-dark);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-services a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a i,
.footer-services a i { font-size: 0.6rem; color: var(--lime); }
.footer-links a:hover,
.footer-services a:hover { color: var(--lime); }

.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--lime);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  line-height: 1.65;
}
.footer-contact a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-credit a { color: var(--lime); }
.footer-credit a:hover { text-decoration: underline; }

/* ────────────────────────────────────────────
   SCROLL TO TOP BUTTON
──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 48px; height: 48px;
  background: var(--lime);
  color: var(--green-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--lime-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual       { display: none; }
  .intro-grid        { grid-template-columns: 1fr; gap: 48px; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .recycle-grid      { grid-template-columns: repeat(3, 1fr); }
  .stats-inner       { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .story-grid        { grid-template-columns: 1fr; gap: 48px; }
  .inspire-inner     { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid      { grid-template-columns: 1fr; }
  .vm-grid           { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar            { height: 68px; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(27,58,10,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(127,197,47,0.2);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { display: block; padding: 12px 16px; border-radius: 10px; }
  .nav-cta  { margin-left: 0; margin-top: 8px; text-align: center; display: block; }
  .nav-toggle { display: flex; }

  .services-grid     { grid-template-columns: 1fr; }
  .recycle-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-inner        { padding: 100px 0 60px; }
  .cta-inner         { flex-direction: column; text-align: center; }
  .cta-actions       { justify-content: center; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-top        { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner       { grid-template-columns: 1fr 1fr; }
  .recycle-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-title        { font-size: 2rem; }
  .page-hero         { padding: 130px 0 60px; }
}

/* ── Prefers Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
