/* About page-specific styles extracted from inline blocks. */

/* Reviews carousel */
.reviewSection {
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: sans-serif;
}

.reviewTitle {
  font-size: 40px;
  margin-bottom: 40px;
}

.reviewContainer {
  position: relative;
  max-width: 650px;
  margin: auto;
  height: 200px;
}

.review {
  position: absolute;
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.6s;
}

.review.active {
  opacity: 1;
  transform: scale(1);
}

.review.explode {
  animation: explode 0.6s forwards;
}

.stars {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 10px;
}

.text {
  font-size: 18px;
  line-height: 1.5;
}

.author {
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
}

.author span {
  color: #4285f4;
  margin-left: 6px;
  font-size: 12px;
}

@keyframes explode {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  40% {
    transform: scale(1.4) rotate(6deg);
  }

  100% {
    transform: scale(0.1) rotate(20deg);
    opacity: 0;
  }
}

/* Cleaning infographic row */
.infographicRow {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.infoCard {
  width: 150px;
  padding: 16px;
  border-radius: 18px;
  color: white;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.4s;
  animation: floatCard 5s ease-in-out infinite;
}

.icon {
  font-size: 34px;
  margin-bottom: 8px;
  animation: bounceIcon 2s infinite;
}

.infoCard h3 {
  font-size: 14px;
  font-weight: 700;
}

.infoCard p {
  font-size: 12px;
  opacity: 0.9;
}

.infoCard:hover {
  transform: translateY(-8px) scale(1.08);
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Before/after labels */
.beforeLabel {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ef4444;
  color: white;
  padding: 8px 18px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.afterLabel {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #10b981;
  color: white;
  padding: 8px 18px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Tips cards */
.tip {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.tip:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tip h4 {
  font-weight: 600;
  margin-bottom: 6px;
}

