/* ================================================================
   GREEN VALLEY RESOURCES – why-recycle.css
   Why to Recycle / Sustainability Page – Exclusive Styles
   ================================================================ */

/* Page Lead Overview Box */
.why-recycle-overview-box {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}
.why-recycle-overview-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
}

/* Benefit Cards */
.benefit-card {
  background: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-normal);
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(27, 94, 32, 0.12);
  border-color: rgba(27, 94, 32, 0.25);
}
.benefit-card:hover::after {
  transform: scaleX(1);
}
.benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.08), rgba(200, 169, 81, 0.15));
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--trans-normal);
}
.benefit-icon-wrapper .bi {
  font-size: 1.6rem;
  color: var(--clr-primary);
  transition: color var(--trans-fast);
}
.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--clr-primary), #2e7d32);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(27, 94, 32, 0.3);
}
.benefit-card:hover .benefit-icon-wrapper .bi {
  color: var(--clr-accent) !important;
}
.benefit-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(27, 94, 32, 0.12);
  line-height: 1;
}
.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 0.75rem;
}
.benefit-card p {
  font-size: 0.92rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .why-recycle-overview-box {
    padding: 1.75rem 1.25rem;
  }
}
