 /* ================= SUSTAINABILITY HERO ================= */
.sustainability-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-image: url("../images/sustainability-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay */
.sustainability-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(15,43,70,0.65),
      rgba(15,43,70,0.55)
    );
  z-index: 1;
}

/* Content */
.sustainability-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #ffffff;
}


/* Pill */
.sustainability-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.sustainability-pill i {
  font-size: 15px;
}


/* Heading */
.sustainability-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Paragraph */
.sustainability-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d7e1eb;
  max-width: 640px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .sustainability-hero {
    min-height: 480px;
  }

  .sustainability-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .sustainability-hero {
    min-height: 440px;
  }

  .sustainability-hero h1 {
    font-size: 2rem;
  }

  .sustainability-hero p {
    font-size: 0.95rem;
  }
}

/* ================= CORE PILLARS ================= */
.pillars-section {
  padding: 120px 0 100px;
  background: #faf9f6;
}

.section-header {
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2b46;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7c8f;
}

/* Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

/* Card */
.pillar-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 20px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(15, 43, 70, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 43, 70, 0.12);
}

/* Icon */
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #eaf5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2fb36a;
  font-size: 22px;
}

/* Text */
.pillar-card h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0f2b46;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= VISION 2030 ROADMAP ================= */
.vision-roadmap {
  padding: 120px 0 100px;
  background: #faf9f6;
}

.section-head {
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2b46;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7c8f;
}

/* Grid */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.roadmap-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(15, 43, 70, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 43, 70, 0.12);
}

/* Year */
.roadmap-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #173357;
  margin-bottom: 18px;
}

/* Progress */
.progress-wrap {
  height: 8px;
  background: #f1ede6;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}

.progress-bar {
  display: block;
  height: 100%;
  background: #2fb36a;
  border-radius: 20px;
}

/* Text */
.roadmap-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #5b6b7a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.1rem;
  }
}


/* ================= PACKAGING INNOVATION ================= */
.packaging-section {
  padding: 120px 0;
  background: #faf9f6;
}

/* Pill */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #e6f2ea;
  color: #2f8f5b;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.section-pill i {
  font-size: 14px;
}

/* Text */
.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2b46;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 520px;
  font-size: 16px;
  color: #6b7c8f;
  margin-bottom: 32px;
}

/* List */
.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-list li {
  position: relative;
  padding: 16px 18px 16px 36px;
  background: #f6f4ee;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #0f2b46;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #2fb36a;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Metric Card */
.package-metric {
  height: 100%;
  min-height: 360px;
  background: #e3f0e8;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.package-metric h3 {
  font-size: 4rem;
  font-weight: 800;
  color: #2f8f5b;
  margin-bottom: 14px;
}

.package-metric p {
  font-size: 17px;
  color: #0f2b46;
  margin: 0;
}

.package-metric span {
  font-size: 14px;
  color: #6b7c8f;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }

  .package-metric {
    min-height: auto;
    padding: 60px 30px;
  }
}

/* ================= CSR COMMITMENTS ================= */
.csr-section {
  background: #173357;
  padding: 120px 0 140px;
  color: #ffffff;
}

/* Header */
.csr-header {
  max-width: 780px;
  margin: 0 auto;
}

.csr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.csr-pill i {
  font-size: 14px;
}

.csr-title {
  margin-top: 22px;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
}

.csr-subtitle {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

/* Cards */
.csr-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 32px 26px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.csr-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.csr-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.csr-icon i {
  font-size: 22px;
  color: #ffffff;
}

.csr-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.csr-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .csr-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .csr-section {
    padding: 90px 0 100px;
  }
}

/* ================= SUSTAINABILITY CTA ================= */
.sustainability-cta {
  background: #faf9f6;
  padding: 120px 0 140px;
  text-align: center;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2b46;
  margin-bottom: 14px;
}

.cta-subtitle {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 16px;
  color: #6b7c8f;
  line-height: 1.6;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  background: #2f8f5b;
  color: #ffffff;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background: #257a4d;
  color: #ffffff;
  transform: translateY(-1px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .sustainability-cta {
    padding: 90px 0 100px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}