/* ==========================================================================
   SWAYAMBHU ENVIRONMENTAL TECH - COMPLETE DESIGN SYSTEM
   Inspired by TrustMe Recycle (https://trust-me-recycle-nine.vercel.app/)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* Brand Color Wheel - Matched precisely with Swayambhu Logo Green (#0B9246 / #008236) */
  --primary-green: #0b9246;
  /* Official Swayambhu Brand Green */
  --primary-green-dark: #00732e;
  /* Deep Forest Green Accent */
  --primary-green-light: rgba(11, 146, 70, 0.12);
  /* Soft Brand Green Wash */
  --primary-green-glow: rgba(11, 146, 70, 0.25);

  --dark-pine: #053b1e;
  /* Deep Forest Swayambhu Green */
  --dark-pine-card: #094e28;
  /* Elevated Deep Green Card */
  --dark-pine-hover: #0c6133;

  --text-main: #0f291e;
  /* Deep Forest / Slate Headings */
  --text-body: #374151;
  /* Slate Body Text */
  --text-muted: #6b7280;
  /* Cool Grey Secondary */
  --text-light: #d1fae5;
  /* Mint Light Grey for Dark Green */

  --bg-white: #ffffff;
  /* Pure White */
  --bg-warm-beige: #fdfbf7;
  /* Soft Cream / Warm Highlight */
  --bg-subtle: #f8fafc;
  /* Light Cool Tint */

  --border-color: #e5e7eb;
  /* Soft Divider */
  --border-emerald: rgba(11, 146, 70, 0.28);

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Organic Radii */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --container-max: 1280px;
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

body {
  background-color: var(--bg-white);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Typography Utilities */
.h-title {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.heading-dual {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
}

.heading-dual span,
.text-green-accent {
  color: var(--primary-green);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border: 1px solid var(--border-emerald);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Pill Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.28s ease;
  border: 1px solid transparent;
  outline: none;
  box-shadow: var(--shadow-sm);
}

.btn-pill-green {
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(11, 146, 70, 0.35);
}

.btn-pill-green:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 146, 70, 0.45);
}

.btn-pill-outline {
  background: #ffffff;
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-pill-outline:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: var(--bg-subtle);
  transform: translateY(-2px);
}

.btn-pill-dark {
  background: var(--primary-green);
  color: #ffffff;
}

.btn-pill-dark:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
}

/* Announcement Bar */
.announcement-bar {
  background: #f8fafc;
  color: var(--text-main);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
}

.announcement-bar .badge-chip {
  background: var(--primary-green);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Navigation Header - Sticky Header */
.nav-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  z-index: 99999;
  padding: 10px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-header.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(11, 146, 70, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img,
.brand-logo .site-logo {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo:hover img,
.brand-logo:hover .site-logo {
  transform: scale(1.02);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(11, 146, 70, 0.3);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-title span {
  color: var(--primary-green);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1;
}

.footer-dark .logo-title {
  color: #ffffff;
}

.footer-dark .logo-sub {
  color: #86efac;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta-wrap .btn-pill {
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 7px;
  white-space: nowrap;
}

/* Page Banner Header & Hero Section Base */
.page-banner,
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0 95px;
  background-color: #062614;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-banner {
  text-align: center;
}

.page-banner .container {
  max-width: 880px;
  margin: 0 auto;
}

.page-banner h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  margin-bottom: 20px;
  line-height: 1.12;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.95);
}

.page-banner p {
  color: #f0fdf4;
  font-size: 1.12rem;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

/* Background Image Slider */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s cubic-bezier(0.1, 0, 0.2, 1);
  will-change: opacity, transform;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 25, 12, 0.45) 0%, rgba(2, 14, 7, 0.22) 50%, rgba(2, 10, 5, 0.60) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Page / Hero Container relative z-index */
.page-banner .container,
.hero-section .container {
  position: relative;
  z-index: 3;
}

/* Hero Slider Controls & Controls Layer */
.hero-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.hero-slider-nav {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  backdrop-filter: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.hero-slider-nav i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-slider-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.08);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
}

.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  right: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--primary-green);
  border-color: #86efac;
  box-shadow: 0 0 10px rgba(134, 239, 172, 0.7);
}

.hero-slide-caption {
  position: absolute;
  bottom: 16px;
  left: 32px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(3, 18, 9, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-slide-caption i {
  color: var(--primary-green-light);
}

/* Hero Content Grid & Elements */
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: rgba(3, 20, 10, 0.65);
  color: #86efac;
  border: 1.5px solid rgba(134, 239, 172, 0.45);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.hero-dark-badge i {
  color: #86efac;
}

.hero-dark-badge .tag-mini {
  background: var(--primary-green);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  margin-left: 6px;
}

.hero-title {
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  margin-bottom: 20px;
  line-height: 1.12;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.95);
}

.hero-title span {
  color: #86efac;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: #f0fdf4;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  max-width: 780px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-actions .btn-pill-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.hero-actions .btn-pill-outline:hover {
  background: #ffffff;
  color: var(--primary-green-dark);
  border-color: #ffffff;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.trust-item i {
  color: #86efac;
}

/* Hero Visual Telemetry Card Glassmorphic Update */
.hero-visual-card {
  background: rgba(8, 32, 17, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 32px;
  color: #ffffff;
}

.telemetry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.telemetry-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(134, 239, 172, 0.18);
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, 0.3);
  font-size: 0.75rem;
  font-weight: 800;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.7);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.7);
  }

  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(134, 239, 172, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(134, 239, 172, 0);
  }
}

.telemetry-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.t-metric-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.t-metric-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #86efac;
}

.t-metric-lbl {
  font-size: 0.78rem;
  color: #e2f7ed;
  margin-top: 2px;
  font-weight: 600;
}

.facility-status-bar {
  padding: 14px 18px;
  background: rgba(11, 146, 70, 0.35);
  border: 1px solid rgba(134, 239, 172, 0.4);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Stats Section & Logo Marquee */
.stats-marquee-section {
  padding: 80px 0;
  background: #ffffff;
}

.stats-4grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.stats-3grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 1100px) {
  .stats-4grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-3grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-slider-controls {
    padding: 0 8px;
  }

  .hero-slider-nav {
    width: 36px;
    height: 36px;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
    font-size: 1rem;
  }

  .hero-slider-nav:hover,
  .hero-slider-nav:active {
    background: rgba(255, 255, 255, 0.15) !important;
  }

  .stats-4grid,
  .stats-3grid {
    grid-template-columns: 1fr;
  }
}

.stat-card-clean {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.stat-card-clean:hover {
  transform: translateY(-4px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.stat-num-big {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-title-main {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.025rem;
  margin-bottom: 4px;
}

.stat-sub-txt {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Marquee Row */
.logo-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeLoop 30s linear infinite;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 90px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
}

.partner-text-card {
  font-family: var(--font-heading);
  line-height: 1.25;
}

.partner-text-card .partner-name {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text-main);
  display: block;
  letter-spacing: -0.01em;
}

.partner-text-card .partner-role {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.partner-logo-card img {
  max-height: 160px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.partner-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Credentials Section */
.credentials-section {
  padding: 60px 0 80px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.credential-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s ease;
}

.credential-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.cred-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.cred-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cred-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Products Section (Homepage Redirection) */
.products-section {
  padding: 100px 0;
  background: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.product-img-box {
  height: 200px;
  background: linear-gradient(135deg, #053b1e 0%, #0b9246 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.product-badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-green);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body {
  padding: 24px;
  flex-grow: 1;
}

.product-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.product-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.product-specs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.p-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-main);
}

.product-footer {
  padding: 20px 24px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}

/* Photo Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-warm-beige);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.gallery-visual {
  height: 220px;
  background: linear-gradient(135deg, #053b1e 0%, #0b9246 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
}

.gallery-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 146, 70, 0.9);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
}

.gallery-info {
  padding: 20px;
}

.gallery-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.gallery-info p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Materials Accepted Section */
.materials-section {
  padding: 100px 0;
  background: #ffffff;
}

.materials-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.materials-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.materials-tabs-guide {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-green-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 2px solid rgba(11, 146, 70, 0.22);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.m-tab-btn .tab-label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.m-tab-btn .tab-label-wrap i {
  color: var(--primary-green);
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.m-tab-btn .badge-chip {
  background: rgba(11, 146, 70, 0.1);
  color: var(--primary-green-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(11, 146, 70, 0.2);
}

.m-tab-btn:hover {
  background: rgba(11, 146, 70, 0.04);
  border-color: var(--primary-green);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.m-tab-btn:hover .tab-label-wrap i {
  transform: scale(1.15);
}

.m-tab-btn.active {
  background: linear-gradient(135deg, #0b9246 0%, #00732e 100%);
  color: #ffffff;
  border-color: #0b9246;
  box-shadow: 0 10px 24px rgba(11, 146, 70, 0.3);
  transform: translateX(6px);
}

.m-tab-btn.active .tab-label-wrap i {
  color: #ffffff;
}

.m-tab-btn.active .badge-chip {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.m-tab-content {
  display: none;
}

.m-tab-content.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sub-material-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sub-material-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 24px rgba(11, 146, 70, 0.12);
  transform: translateY(-4px);
}

.sub-m-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(11, 146, 70, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.sub-material-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.sub-material-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sub-m-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--border-color);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

.btn-arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--bg-warm-beige);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-chain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-node-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  text-align: center;
  transition: all 0.25s ease;
}

.process-node-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.node-number-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px;
  border: 1px solid var(--border-color);
}

.process-node-card h4 {
  font-family: var(--font-heading);
  font-size: 1.025rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.process-node-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Who We Serve Section */
.who-we-serve-section {
  padding: 100px 0;
  background: #ffffff;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.serve-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serve-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-green);
}

.serve-card.accent-dark::before {
  background: var(--primary-green);
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.serve-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.serve-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.serve-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.serve-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.serve-item i {
  color: var(--primary-green);
}

/* MRF Dark Section */
.mrf-dark-section {
  padding: 100px 0;
  background: #ffffff;
}

.mrf-dark-container {
  background: linear-gradient(135deg, #053b1e 0%, #0b9246 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mrf-info-col h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 16px;
}

.mrf-info-col p {
  color: #e2f7ed;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.mrf-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.mrf-stat-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mrf-stat-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #86efac;
}

.mrf-stat-lbl {
  font-size: 0.8rem;
  color: #ffffff;
  margin-top: 2px;
}

.mrf-visual-col {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Two-Category Impact Calculator (Wet Waste vs Dry Waste) */
.calculator-section {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
}

.calc-category-switcher {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.calc-cat-btn {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--border-color);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-cat-btn:hover {
  border-color: var(--primary-green);
}

.calc-cat-btn.active {
  background: linear-gradient(135deg, #0b9246 0%, #00732e 100%);
  color: #ffffff;
  border-color: #0b9246;
  box-shadow: 0 6px 18px rgba(11, 146, 70, 0.3);
}

.calc-cat-btn.active i {
  color: #ffffff;
}

.calculator-card-split {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.calc-inputs-col h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.range-group {
  margin-bottom: 28px;
}

.range-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.925rem;
}

.range-val-highlight {
  color: var(--primary-green-dark);
}

input[type=range] {
  width: 100%;
  accent-color: var(--primary-green);
  height: 8px;
  border-radius: 4px;
}

.calc-outputs-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
}

.calc-out-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.calc-out-card {
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.calc-out-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

.calc-out-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 700;
}

/* Team Members Section (About Us) */
.team-section {
  padding: 100px 0;
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.team-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 3px solid var(--primary-green);
  box-shadow: 0 4px 14px rgba(11, 146, 70, 0.2);
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.team-card:hover .team-avatar img {
  transform: scale(1.08);
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.team-social-icon:hover {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
}

/* Projects Page Cards */
.projects-section {
  padding: 100px 0;
  background: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 36px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-xl);
  background: #ffffff;
}

.project-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 146, 70, 0.12);
  color: var(--primary-green-dark);
  border: 1px solid rgba(11, 146, 70, 0.25);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.project-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.project-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.project-impact-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.p-impact-item h5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-green-dark);
  font-weight: 800;
}

.p-impact-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Contact Page Components */
.contact-section {
  padding: 100px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: linear-gradient(135deg, #053b1e 0%, #0b9246 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.contact-info-card h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-info-card p {
  color: #e2f7ed;
  margin-bottom: 36px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.c-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(11, 146, 70, 0.2);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.c-text h5 {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.c-text p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.contact-form-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  background: var(--bg-warm-beige);
  border-top: 1px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Final Action CTA */
.final-cta-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.final-cta-card {
  background: var(--bg-warm-beige);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.final-cta-card h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.3;
}

.final-cta-card p {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  line-height: 1.6;
}

.recycling-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #ffffff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 6px 20px rgba(11, 146, 70, 0.4);
}

/* Direct Phone CTA Box */
.cta-direct-phone-box {
  background: #ffffff;
  border: 1.5px solid rgba(11, 146, 70, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 580px;
  margin: 0 auto 36px;
  box-shadow: 0 10px 30px rgba(11, 146, 70, 0.08);
  transition: all 0.3s ease;
}

.cta-direct-phone-box:hover {
  border-color: var(--primary-green);
  box-shadow: 0 14px 40px rgba(11, 146, 70, 0.16);
  transform: translateY(-2px);
}

.cta-phone-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-green);
  margin-bottom: 12px;
  background: rgba(11, 146, 70, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.cta-phone-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1.2;
}

.cta-phone-number:hover {
  color: var(--primary-green);
  transform: scale(1.02);
}

.cta-phone-number i {
  color: var(--primary-green);
  margin-right: 8px;
  font-size: 2rem;
}

.cta-phone-hours {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

.cta-action-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-call {
  font-size: 1.05rem;
  padding: 14px 30px;
  box-shadow: 0 8px 24px rgba(11, 146, 70, 0.3);
}

.btn-cta-wa {
  font-size: 1.05rem;
  padding: 14px 28px;
}

/* Download Toast Notification */
.esg-download-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #053b1e;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--primary-green);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
  max-width: 420px;
}

.esg-download-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.esg-download-toast i {
  font-size: 1.4rem;
  color: var(--primary-green);
}

@media (max-width: 768px) {
  .cta-phone-number {
    font-size: 1.8rem;
  }

  .cta-direct-phone-box {
    padding: 20px 18px;
  }

  .esg-download-toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}

/* RFP Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 580px;
  padding: 40px;
  position: relative;
  transform: translateY(16px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
}

/* Footer with Social Icons */
.footer-dark {
  background: linear-gradient(180deg, #074222 0%, #042714 100%);
  color: #ffffff;
  padding: 70px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col p {
  color: #d1fae5;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #d1fae5;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--primary-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.active-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 146, 70, 0.25);
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  color: #d1fae5;
}

/* Responsive Media Queries */
/* Footer social links row style override */
.social-links-after-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

/* Interactive Accordion FAQ Styles */
.faq-accordion-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-accordion-item:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.faq-accordion-item.active {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
}

.faq-accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  outline: none;
}

.faq-accordion-header span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-header span {
  color: var(--primary-green-dark);
}

.faq-chevron {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq-accordion-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-green-dark);
}

.faq-accordion-content {
  max-height: 0;
  opacity: 0;
  padding: 0 24px;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 250px;
  opacity: 1;
  padding: 0 24px 24px 24px;
}

.faq-accordion-content p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Legacy Visual Timeline Roadmap */
/* --- ARTISTIC COMPACT LEGACY ROADMAP (2015 - 2026) --- */
.legacy-timeline-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 50%, #f8fafc 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.timeline-visual-wrap {
  position: relative;
  max-width: 1060px;
  margin: 45px auto 0;
  padding: 10px 0;
}

/* Glowing central track */
.timeline-visual-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #10b981 0%, #0b9246 50%, #047857 100%);
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
}

.timeline-milestone-node {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.timeline-milestone-node:nth-child(even) {
  justify-content: flex-start;
}

.timeline-milestone-node:nth-child(odd) {
  justify-content: flex-end;
}

.milestone-year-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0b9246 0%, #047857 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 2px solid #ffffff;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(11, 146, 70, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.timeline-milestone-node:nth-child(even) .milestone-year-pill {
  background: linear-gradient(135deg, #047857 0%, #064e3b 100%);
}

.milestone-card {
  width: 44.5%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #10b981, #059669);
  opacity: 0.85;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-4px);
  border-color: #10b981;
  box-shadow: 0 12px 28px rgba(11, 146, 70, 0.12);
}

.milestone-card:hover::before {
  height: 5px;
  opacity: 1;
}

.milestone-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.milestone-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.milestone-step-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  color: #cbd5e1;
}

.milestone-card h4 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.35;
}

.milestone-card p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

.milestone-dot-marker {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 3.5px solid var(--primary-green);
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
}

/* --- AWARDS & GLOBAL ACCOLADES PHOTO CARDS --- */
.awards-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.award-photo-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.award-photo-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: 0 16px 36px rgba(11, 146, 70, 0.16);
}

.award-photo-thumb {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #053b1e 0%, #0b9246 100%);
}

.award-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-photo-card:hover .award-photo-thumb img {
  transform: scale(1.08);
}

.award-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 42, 27, 0.88);
  backdrop-filter: blur(8px);
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(134, 239, 172, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.award-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.award-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.award-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.award-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  line-height: 1.3;
}

.award-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .awards-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .awards-photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Waste Streams Grid Styles */
.waste-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.waste-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.waste-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.waste-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
}

.waste-card:hover::after {
  opacity: 1;
}

.waste-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.waste-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.waste-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.waste-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-green-dark);
  background: var(--primary-green-light);
  padding: 2px 8px;
  border-radius: 4px;
}

/* How It Works Chain Styles */
.process-flow-container {
  margin-top: 40px;
}

.process-chain-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-chain-flow::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.process-step-node {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.process-step-node:hover {
  transform: translateY(-4px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.step-number-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(11, 146, 70, 0.4);
}

.step-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.process-step-node:hover .step-icon-circle {
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  border-color: var(--primary-green);
}

.process-step-node h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.process-step-node p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Photo Gallery Interactive Styles */
.gallery-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1200px) {
  .gallery-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid-premium {
    grid-template-columns: 1fr;
  }
}

.gallery-card-premium {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.gallery-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.gallery-image-box {
  height: 230px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #053b1e 0%, #0b9246 100%);
}

.gallery-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

.gallery-image-box img.img-focus-left {
  object-position: 0% 15% !important;
}

.gallery-card-premium:hover .gallery-image-box img {
  transform: scale(1.08);
}

.gallery-card-premium:hover .gallery-image-box img.img-focus-left {
  transform-origin: left center !important;
}

.gallery-tag-premium {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 146, 70, 0.9);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  z-index: 2;
  text-transform: uppercase;
}

.gallery-info-premium {
  padding: 24px;
}

.gallery-info-premium h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.gallery-info-premium p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Standardized Section Spacing (Desktop) */
.hero-section,
.stats-marquee-section,
.who-we-serve-section,
.products-section,
.gallery-section,
.materials-section,
.process-section,
.calculator-section,
.team-section,
.projects-section,
.contact-section,
.faq-section,
.final-cta-section,
.legacy-timeline-section,
.waste-streams-section {
  padding: 80px 0 !important;
}

/* Mobile Navigation Toggle Button */
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
  outline: none;
  transition: color 0.2s ease;
}

.mobile-toggle-btn:hover {
  color: var(--primary-green);
}

.nav-close-btn {
  display: none;
}

/* Mobile Navigation Backdrop Overlay */
.nav-backdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(4, 20, 10, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999990 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active,
.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Hide Proposal button inside mobile nav drawer on desktop */
.nav-links .btn-pill {
  display: none;
}

/* Announcement Bar Mobile Responsiveness */
@media (max-width: 768px) {
  .announcement-bar {
    display: none;
  }

  .cert-bar-inner {
    font-size: 0.65rem;
    padding: 2px 8px;
  }
}

/* Responsive 2-Column Form Row */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

/* Overview Split 2-Column Layout (About Us) */
.overview-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {

  .hero-grid,
  .materials-layout,
  .mrf-dark-container,
  .calculator-card-split,
  .contact-grid,
  .overview-split-grid {
    grid-template-columns: 1fr;
  }

  .serve-grid,
  .credentials-grid,
  .team-grid,
  .products-grid,
  .gallery-grid-premium,
  .waste-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-chain-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-chain-flow::before {
    display: none;
  }

  /* Mobile Responsive Navigation Drawer Activation */
  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-cta-wrap {
    display: none;
    /* Hide top header proposal button on mobile */
  }

  .nav-links {
    display: flex;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(320px, 85vw);
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    padding: 76px 24px 36px;
    z-index: 999999 !important;
    box-shadow: -8px 0 36px rgba(0, 0, 0, 0.25);
    transform: translateX(105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.35s ease;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active,
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 18px;
    outline: none;
    z-index: 10;
    transition: all 0.2s ease;
  }

  .nav-close-btn:hover {
    background: #e2e8f0;
    color: var(--primary-green);
  }

  .nav-link {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 700;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
  }

  /* Show RFP button inside mobile nav drawer on mobile */
  .nav-links .btn-pill {
    display: inline-flex;
    margin-top: 14px;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    cursor: pointer;
  }
}

@media (max-width: 768px) {

  .brand-logo {
    gap: 10px;
  }

  .brand-logo img,
  .brand-logo .site-logo {
    height: 48px;
    max-height: 48px;
    max-width: 110px;
  }

  .logo-title {
    font-size: 1.12rem;
  }

  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  /* Standardized Section Spacing (Mobile) */
  .hero-section,
  .stats-marquee-section,
  .who-we-serve-section,
  .products-section,
  .gallery-section,
  .materials-section,
  .process-section,
  .calculator-section,
  .team-section,
  .projects-section,
  .contact-section,
  .faq-section,
  .final-cta-section,
  .legacy-timeline-section,
  .waste-streams-section {
    padding: 48px 0 !important;
  }

  .stats-4grid,
  .credentials-grid,
  .serve-grid,
  .gallery-grid,
  .projects-grid,
  .team-grid,
  .products-grid,
  .gallery-grid-premium,
  .process-chain-grid,
  .waste-grid,
  .process-chain-flow,
  .hubs-grid,
  .footer-grid,
  .overview-split-grid {
    grid-template-columns: 1fr !important;
  }

  .process-chain-flow::before {
    display: none;
  }

  .timeline-visual-wrap::before {
    left: 20px;
  }

  .timeline-milestone-node {
    justify-content: flex-start !important;
    padding-left: 50px;
  }

  .milestone-year-pill {
    left: 20px !important;
    transform: translateX(-50%) translateY(-35px) !important;
  }

  .milestone-card {
    width: 100% !important;
  }

  .milestone-card::after {
    display: none !important;
  }

  .milestone-dot-marker {
    left: 20px !important;
  }

  /* Impact Calculator Mobile Optimizations */
  .calc-category-switcher {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 24px;
  }

  .calc-cat-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 12px 18px;
    text-align: center;
  }

  .calculator-card-split {
    padding: 24px 16px;
    gap: 24px;
    border-radius: var(--radius-lg);
  }

  .calc-inputs-col h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .calc-inputs-col p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .range-header {
    font-size: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .calc-inputs-col .btn-pill {
    width: 100%;
    font-size: 0.88rem;
    padding: 12px 18px;
    justify-content: center;
  }

  .calc-outputs-box {
    padding: 20px 14px;
    border-radius: var(--radius-md);
  }

  .calc-outputs-box h4 {
    font-size: 1rem !important;
    margin-bottom: 16px !important;
  }

  .calc-out-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
    margin-bottom: 16px;
  }

  .calc-out-card {
    padding: 12px 10px;
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .calc-out-val {
    font-size: 1.25rem;
  }

  .calc-out-lbl {
    font-size: 0.68rem;
    line-height: 1.2;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {

  .brand-logo {
    gap: 8px;
  }

  .brand-logo img,
  .brand-logo .site-logo {
    height: 40px;
    max-height: 40px;
    max-width: 90px;
  }

  .logo-title {
    font-size: 0.98rem;
  }

  .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn-pill {
    width: 100%;
  }

  .telemetry-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .t-metric-box {
    padding: 12px 10px;
  }

  .t-metric-val {
    font-size: 1.2rem;
  }

  .t-metric-lbl {
    font-size: 0.72rem;
  }

  .facility-status-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .section-head h2 {
    font-size: 1.75rem;
  }
}

/* Verified Credentials Bar Styles */
.credentials-bar-wrap {
  margin-top: 48px;
  text-align: center;
}

.credentials-bar-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  background: var(--primary-green-light);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  border: 1.5px solid var(--border-emerald);
}

.tab-chevron {
  font-size: 0.8rem;
  color: var(--primary-green);
  transition: transform 0.25s ease;
}

.m-tab-btn.active .tab-chevron {
  color: #ffffff;
  transform: translateX(3px);
}

.credentials-pills-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  justify-content: center;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .credentials-pills-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .credentials-pills-row {
    grid-template-columns: 1fr;
  }
}

.cred-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cred-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.cred-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cred-pill-info {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.cred-pill-info strong {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 800;
}

.cred-pill-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.cred-pill-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 8px;
}

.cred-pill-green .cred-pill-icon {
  background: rgba(11, 146, 70, 0.12);
  color: var(--primary-green);
}

.cred-pill-green .cred-pill-badge {
  background: var(--primary-green);
  color: #ffffff;
}

.cred-pill-orange .cred-pill-icon {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.cred-pill-orange .cred-pill-badge {
  background: #f59e0b;
  color: #ffffff;
}

.cred-pill-silver .cred-pill-icon {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}

.cred-pill-silver .cred-pill-badge {
  background: #0284c7;
  color: #ffffff;
}

.cred-pill-blue .cred-pill-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.cred-pill-blue .cred-pill-badge {
  background: #3b82f6;
  color: #ffffff;
}

.cred-pill-purple .cred-pill-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.cred-pill-purple .cred-pill-badge {
  background: #8b5cf6;
  color: #ffffff;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy Timeline Milestone Node Scroll Animations */
.timeline-milestone-node {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-milestone-node .milestone-card {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-milestone-node .milestone-dot-marker {
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.timeline-milestone-node .milestone-year-pill {
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

/* Left-aligned milestone nodes card transition (Even nodes) */
.timeline-milestone-node:nth-child(even) .milestone-card {
  transform: translateX(-40px);
}

/* Right-aligned milestone nodes card transition (Odd nodes) */
.timeline-milestone-node:nth-child(odd) .milestone-card {
  transform: translateX(40px);
}

/* Active animations when timeline node comes on screen */
.timeline-milestone-node.reveal-visible {
  opacity: 1;
}

.timeline-milestone-node.reveal-visible .milestone-card {
  opacity: 1;
  transform: translateX(0);
}

.timeline-milestone-node.reveal-visible .milestone-dot-marker {
  transform: scale(1);
}

.timeline-milestone-node.reveal-visible .milestone-year-pill {
  transform: scale(1);
}

/* Media Query overrides for mobile timeline alignment */
@media (max-width: 768px) {

  /* On mobile, all cards should slide in from the right since they are all aligned right relative to the left line! */
  .timeline-milestone-node:nth-child(odd) .milestone-card {
    transform: translateX(40px);
  }

  .timeline-milestone-node.reveal-visible .milestone-card {
    transform: translateX(0);
  }
}

/* ==========================================================================
   VIDEO OVERVIEW SHOWCASE SECTION
   ========================================================================== */
.video-overview-section {
  padding: 90px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.video-showcase-container {
  max-width: 1040px;
  margin: 0 auto;
}

.video-player-wrapper {
  position: relative;
  background: #000000;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1.5px solid var(--border-color);
  border-bottom: none;
}

.video-player-wrapper video {
  width: 100%;
  max-height: 580px;
  display: block;
  object-fit: contain;
  background: #041208;
  outline: none;
}

.video-highlights-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 32px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-color);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.v-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.v-h-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(11, 146, 70, 0.12);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(11, 146, 70, 0.2);
}

.v-h-text strong {
  display: block;
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}

.v-h-text span {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

@media (max-width: 768px) {
  .video-overview-section {
    padding: 60px 0;
  }

  .video-highlights-bar {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }

  .video-player-wrapper {
    border-radius: 16px 16px 0 0;
  }

  .video-highlights-bar {
    border-radius: 0 0 16px 16px;
  }
}