/* ===================================
   SUSTAINABILITY PAGES STYLESHEET
   ===================================

   TABLE OF CONTENTS:
   1. Hero Sections
   2. Page Headers
   3. Section Layouts
   4. Cards & Components
   5. Stats & Metrics
   6. Timeline & Progress
   7. Call to Action
   8. Responsive Design

   =================================== */

/* ===================================
   1. HERO SECTIONS
   =================================== */

.sustainability-hero {
  background: linear-gradient(135deg, var(--first-color) 0%, #2563eb 100%);
  color: #fff;
  padding: 6rem 0 4rem;
  margin-top: var(--header-height);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}

.stat-item p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ===================================
   2. PAGE HEADERS
   =================================== */

.page-header {
  background: linear-gradient(135deg, #1e40af 0%, var(--first-color) 100%);
  color: #fff;
  padding: 8rem 0 3rem;
  margin-top: var(--header-height);
}

.page-header.environmental-header {
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
}

.page-header.social-header {
  background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
}

.page-header.goals-header {
  background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb i {
  font-size: 1.2rem;
}

.page-title {
  font-size: 3rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* ===================================
   3. SECTION LAYOUTS
   =================================== */

.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: #f8fafc;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.6;
}

.lead-text {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-layout.reverse {
  direction: rtl;
}

.content-layout.reverse > * {
  direction: ltr;
}

/* ===================================
   4. CARDS & COMPONENTS
   =================================== */

.approach-grid,
.pillars-grid,
.businesses-grid,
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.approach-card,
.commitment-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.approach-card:hover,
.commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.approach-icon,
.commitment-card i {
  font-size: 3rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.approach-card h3,
.commitment-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.approach-card p,
.commitment-card p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Pillar Cards */
.pillar-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--first-color);
}

.pillar-card.pillar-environmental {
  border-top-color: #22c55e;
}

.pillar-card.pillar-social {
  border-top-color: #ef4444;
}

.pillar-card.pillar-goals {
  border-top-color: #f97316;
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.pillar-card.pillar-environmental .pillar-icon {
  color: #22c55e;
}

.pillar-card.pillar-social .pillar-icon {
  color: #ef4444;
}

.pillar-card.pillar-goals .pillar-icon {
  color: #f97316;
}

.pillar-card h3 {
  font-size: 1.75rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.pillar-card > p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pillar-highlights {
  list-style: none;
  margin-bottom: 2rem;
}

.pillar-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  line-height: 1.5;
}

.pillar-highlights i {
  color: #22c55e;
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pillar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--first-color);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: background 0.3s, transform 0.3s;
}

.pillar-btn:hover {
  background: #1e40af;
  transform: translateX(5px);
}

/* Business Cards */
.business-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.business-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.business-header i {
  font-size: 2.5rem;
  color: var(--first-color);
}

.business-header h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.business-impact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}

.impact-item i {
  color: #22c55e;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.impact-item span {
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Benefits List */
.benefits-list {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.benefits-list h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item i {
  color: #22c55e;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-item h4 {
  font-size: 1.125rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.benefit-item p {
  color: var(--text-color);
  line-height: 1.5;
}

/* ===================================
   COMBINED IMPACT SUMMARY
   =================================== */

.combined-impact {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.impact-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.impact-summary-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--first-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.impact-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.impact-icon.environmental {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
}

.impact-icon i {
  font-size: 2rem;
}

.impact-details h3 {
  font-size: 2rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.impact-label {
  font-size: 1.125rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: var(--font-medium);
}

.impact-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.impact-breakdown span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
}

.impact-breakdown i {
  color: var(--first-color);
  font-size: 1rem;
}

.combined-impact .impact-highlight {
  background: linear-gradient(135deg, #1e40af 0%, var(--first-color) 100%);
  color: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.combined-impact .highlight-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.combined-impact .highlight-content > i {
  font-size: 3rem;
  opacity: 0.9;
  flex-shrink: 0;
  color: #fff;
}

.combined-impact .highlight-content h4 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.75rem;
  color: #fff !important;
}

.combined-impact .highlight-content p {
  line-height: 1.8;
  opacity: 0.95;
  color: #fff !important;
}

/* Visual Content */
.content-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--first-color) 0%, #2563eb 100%);
  color: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
}

.stat-card i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-card h3 {
  font-size: 1.75rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.stat-description {
  opacity: 0.85;
  line-height: 1.6;
}

.impact-highlight {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--first-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.impact-highlight h4 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.impact-highlight p {
  color: var(--text-color);
  line-height: 1.6;
}

/* ===================================
   5. STATS & METRICS
   =================================== */

.progress-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.progress-stat {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.stat-icon.green {
  background: #dcfce7;
  color: #22c55e;
}

.stat-icon.blue {
  background: #dbeafe;
  color: #3b82f6;
}

.stat-icon.orange {
  background: #ffedd5;
  color: #f97316;
}

.progress-stat h3 {
  font-size: 1.125rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.progress-stat .stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Energy Benefits */
.energy-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.energy-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.energy-card:hover {
  transform: translateY(-5px);
}

.energy-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.energy-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.energy-card p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Impact Box */
.impact-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid var(--first-color);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 3rem;
}

.impact-content {
  display: flex;
  gap: 1.5rem;
}

.impact-content i {
  font-size: 3rem;
  color: var(--first-color);
  flex-shrink: 0;
}

.impact-content h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.impact-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* ===================================
   6. TIMELINE & PROGRESS
   =================================== */

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.achievement-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #22c55e;
}

.achievement-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #22c55e;
  font-weight: var(--font-medium);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.achievement-status i {
  font-size: 1.25rem;
}

.achievement-icon {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.achievement-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.achievement-card > p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.achievement-impact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.impact-metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-color);
}

.impact-metric i {
  color: #22c55e;
  font-size: 1rem;
}

/* Timeline */
.initiatives-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 4rem;
  bottom: -3rem;
  width: 2px;
  background: #e2e8f0;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-marker {
  width: 4rem;
  height: 4rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
}

.timeline-badge.badge-progress {
  background: #dbeafe;
  color: #3b82f6;
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.timeline-year {
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
}

.timeline-content > p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.timeline-progress {
  margin-bottom: 1.5rem;
}

.progress-bar {
  height: 0.5rem;
  background: #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--first-color) 0%, #3b82f6 100%);
  border-radius: 1rem;
  transition: width 0.5s ease;
}

.progress-label {
  font-size: 0.875rem;
  color: var(--text-color);
}

.timeline-impact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.timeline-impact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-color);
}

.timeline-impact i {
  color: #22c55e;
}

/* Targets */
.targets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.target-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #f97316;
  position: relative;
}

.target-year {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background: #f97316;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
  font-size: 0.875rem;
}

.target-icon {
  width: 4rem;
  height: 4rem;
  background: #ffedd5;
  color: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.target-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.target-card > p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.target-steps h4 {
  font-size: 1rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.target-steps ul {
  list-style: none;
}

.target-steps li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.target-steps li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

/* ===================================
   7. CALL TO ACTION
   =================================== */

.sustainability-cta,
.cta-section {
  background: linear-gradient(135deg, var(--first-color) 0%, #2563eb 100%);
  color: #fff;
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content.centered {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #fff;
  color: var(--first-color);
}

.btn-secondary {
  background: #1e40af;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* Additional Components */
.solar-initiatives {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.initiative-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.initiative-item.active {
  border-left: 4px solid #22c55e;
}

.initiative-item.planned {
  border-left: 4px solid #3b82f6;
}

.initiative-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.initiative-header i,
.initiative-header h4 {
  display: inline-block;
}

.initiative-header i {
  color: #22c55e;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.initiative-item.planned .initiative-header i {
  color: #3b82f6;
}

.initiative-header h4 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: var(--font-medium);
}

.badge-success {
  background: #dcfce7;
  color: #22c55e;
}

.badge-info {
  background: #dbeafe;
  color: #3b82f6;
}

.initiative-item > p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.initiative-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.initiative-benefits span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-color);
}

.initiative-benefits i {
  color: #22c55e;
}

.solar-stats {
  display: grid;
  gap: 1.5rem;
}

.solar-stat {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.solar-stat i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.solar-stat h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
}

.solar-stat p {
  opacity: 0.9;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.material-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.material-card i {
  font-size: 3rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.material-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.material-card > p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.material-card ul {
  list-style: none;
  text-align: left;
}

.material-card li {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.material-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.lifecycle-stage {
  text-align: center;
  position: relative;
}

.stage-number {
  width: 3rem;
  height: 3rem;
  background: var(--first-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  margin: 0 auto 1rem;
}

.lifecycle-stage h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.lifecycle-stage p {
  color: var(--text-color);
  line-height: 1.6;
}

.recycling-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.recycling-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.recycling-item i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

.recycling-item h4 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.recycling-item p {
  color: var(--text-color);
  line-height: 1.6;
}

.quote-box {
  background: #f0f9ff;
  border-left: 4px solid var(--first-color);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
  position: relative;
}

.quote-box i {
  font-size: 3rem;
  color: var(--first-color);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.quote-box p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--title-color);
  line-height: 1.7;
  padding-left: 2rem;
}

.highlight-card {
  background: linear-gradient(135deg, var(--first-color) 0%, #2563eb 100%);
  color: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
}

.highlight-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.highlight-icon i {
  font-size: 2.5rem;
}

.highlight-card h3 {
  font-size: 1.75rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
}

.highlight-stat {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.highlight-card p {
  opacity: 0.9;
  line-height: 1.6;
}

.values-list {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.values-list h4 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.values-list ul {
  list-style: none;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.values-list i {
  color: #22c55e;
  font-size: 1.25rem;
}

.impact-points {
  margin-top: 2rem;
}

.impact-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.impact-point i {
  color: #22c55e;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.impact-point h4 {
  font-size: 1.125rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.impact-point p {
  color: var(--text-color);
  line-height: 1.5;
}

.covid-impact h3,
.sports-impact h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.covid-impact p,
.sports-impact p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.impact-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.impact-item-small {
  text-align: center;
}

.impact-item-small i {
  font-size: 2.5rem;
  color: var(--first-color);
  margin-bottom: 0.75rem;
}

.impact-item-small h4 {
  font-size: 1.125rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.impact-item-small p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-box {
  background: #f0f9ff;
  border-left: 4px solid var(--first-color);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.info-box i {
  color: var(--first-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-box h4 {
  font-size: 1.125rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.info-box p {
  color: var(--text-color);
  line-height: 1.6;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.community-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.community-icon {
  width: 4rem;
  height: 4rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.community-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.community-card > p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.community-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.community-benefits span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-color);
}

.community-benefits i {
  color: #22c55e;
}

.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--first-color);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.benefit-header i {
  font-size: 2rem;
  color: var(--first-color);
}

.benefit-header h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.benefit-card > p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.employee-welfare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.welfare-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.welfare-item:hover {
  transform: translateY(-5px);
}

.welfare-item i {
  font-size: 3rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.welfare-item h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.welfare-item p {
  color: var(--text-color);
  line-height: 1.6;
}

.business-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.business-impact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.business-impact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.business-impact-header i {
  font-size: 2.5rem;
  color: var(--first-color);
}

.business-impact-header h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.impact-categories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-category h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

.impact-category.environmental h4 {
  color: #22c55e;
}

.impact-category.social h4 {
  color: #ef4444;
}

.impact-category.future h4 {
  color: #3b82f6;
}

.impact-category h4 i {
  font-size: 1.25rem;
}

.impact-category ul {
  list-style: none;
}

.impact-category li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.impact-category li i {
  color: #22c55e;
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ===================================
   8. RESPONSIVE DESIGN
   =================================== */

@media screen and (max-width: 1024px) {
  .hero-title,
  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .content-layout.reverse {
    direction: ltr;
  }
}

@media screen and (max-width: 768px) {
  .hero-title,
  .page-title {
    font-size: 2rem;
  }

  .hero-subtitle,
  .page-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .page-header {
    padding: 6rem 0 2rem;
  }

  .sustainability-hero {
    padding: 4rem 0 3rem;
  }

  .timeline-item {
    gap: 1rem;
  }

  .timeline-marker {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }

  .timeline-item::before {
    left: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .target-year {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .impact-content {
    flex-direction: column;
  }
}

/* ===================================
   9. DIVERSITY, EQUITY & INCLUSION (DEI)
   =================================== */

.dei-intro {
  margin-bottom: 3rem;
}

.dei-statement {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 2rem 3rem;
  border-radius: 1rem;
  border-left: 4px solid var(--first-color);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.dei-statement i {
  font-size: 2rem;
  color: var(--first-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.dei-statement p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--title-color);
  margin: 0;
  line-height: 1.6;
}

.dei-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.dei-pillar {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dei-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dei-pillar-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--first-color);
}

.dei-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.dei-icon.women {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.dei-icon.disability {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.dei-icon.lgbtq {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.dei-icon.equality {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.dei-pillar-header h3 {
  font-size: 1.5rem;
  color: var(--title-color);
  margin: 0;
}

.dei-pillar-content {
  padding: 1.5rem;
}

.dei-pillar-content > p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.dei-initiatives {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dei-initiative {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.dei-initiative:hover {
  background: #f1f5f9;
}

.dei-initiative i {
  font-size: 1.25rem;
  color: var(--first-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.dei-initiative h4 {
  font-size: 1rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin: 0 0 0.25rem;
}

.dei-initiative p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
  line-height: 1.5;
}

/* DEI Impact Stats */
.dei-impact {
  margin-bottom: 3rem;
}

.dei-impact h3 {
  font-size: 1.75rem;
  text-align: center;
  color: var(--title-color);
  margin-bottom: 2rem;
}

.dei-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.dei-stat {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.dei-stat:hover {
  transform: translateY(-3px);
}

.dei-stat i {
  font-size: 2.5rem;
  color: var(--first-color);
  margin-bottom: 1rem;
  display: block;
}

.dei-stat h4 {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.dei-stat p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* DEI Commitment */
.dei-commitment {
  display: flex;
  justify-content: center;
}

.commitment-box {
  background: linear-gradient(135deg, var(--first-color) 0%, #2563eb 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 900px;
}

.commitment-box i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.9;
}

.commitment-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.commitment-box > p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.commitment-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.commitment-values span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.commitment-values span i {
  font-size: 1rem;
}

/* ===================================
   END OF SUSTAINABILITY STYLESHEET
   =================================== */
