/* ================================
   Cement Stats Strip
================================ */

.cement-stats {
  background: linear-gradient(180deg, #f6efe6, #fdfaf6);
  border-top: 1px solid #eadfce;
  border-bottom: 1px solid #eadfce;
  padding: 1rem 0;
}

/* Link Wrapper */
.stat-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Individual Stat Box */
.stat-box {
  padding: 0.75rem 0;
}

/* Card */
.stat-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  height: 100%;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.stat-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Icon */
.stat-inner img {
  width: 42px;
  height: 42px;
}

.stat-inner:hover img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(95%) saturate(430%) hue-rotate(5deg);
}


/* Text */
.stat-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: #c46a00;
  line-height: 1.1;
}

.stat-text p {
  font-size: 0.8rem;
  margin: 0;
  color: #555;
}

/* ================================
   Responsive (Mobile)
================================ */

@media (max-width: 575px) {
  .stat-inner {
    flex-direction: column;
    gap: 6px;
    padding: 14px;
  }

  .stat-inner img {
    width: 36px;
    height: 36px;
  }

  .stat-text h4 {
    font-size: 0.95rem;
  }

  .stat-text p {
    font-size: 0.72rem;
  }
}
