/* SECTION */
.why-us-section {
  padding: 30px 20px;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.why-us-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* GRID */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.why-card {
  position: relative;
  padding: 38px 26px;
  text-align: center;

  /* 🌿 Organic bamboo shape */
  border-radius: 30px 18px 34px 22px;

   background:linear-gradient(
        5deg,
        var(--card-bg-color) 0%,
        var(--color-secondary) 100%
    );
  border: 1px solid rgba(207,175,107,0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);

  transition: all 0.4s ease;
  overflow: hidden;
}

/* 🌿 Bamboo cut corner */
/* .why-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 70px;
  height: 70px;

  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(163,177,138,0.25) 50%
  );
} */

/* 🌿 Bamboo texture */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    90deg,
    rgba(163,177,138,0.05),
    rgba(163,177,138,0.05) 2px,
    transparent 2px,
    transparent 6px
  );

  opacity: 0.4;
  pointer-events: none;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* NODE */
.node-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.node-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    #a3b18a,
    transparent
  );
}

.node-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #2C6E49;
  border-radius: 50%;
  top: -4px;
  box-shadow: 0 0 0 4px rgba(44,110,73,0.15);
}


/* ECO CARD */
/* .eco-card {
  background: linear-gradient(
    135deg,
    rgba(207,175,107,0.2),
    rgba(163,177,138,0.25)
  );
  border: 1px solid rgba(207,175,107,0.4);
} */

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-us-section {
    padding: 80px 20px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }
}