.section-7-wrapper .section-seven {
  padding: 40px 0;
  font-family: 'IRANSans', sans-serif;
  text-align: center;
  background: linear-gradient(90deg,#e4e9ff 0%,#f5f9ff 100%);
}

.section-7-wrapper .section-title {
  font-size: 24px;
  font-weight: bold;
  color: #4B0082;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
  position: relative;
}

.section-7-wrapper .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 16px auto 0;
  background: linear-gradient(90deg,#00C4B4,#8a2be2);
  border-radius: 2px;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #e4e9ff;
  direction: rtl;
}
.reviews-slider::-webkit-scrollbar {
  height: 8px;
  background: #e4e9ff;
}
.reviews-slider::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 8px;
}
.review-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(76,0,129,.10);
  padding: 26px 18px 18px 18px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  scroll-snap-align: start;
  position: relative;
  border: 1.5px solid #e4e9ff;
  min-width: 260px;
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(76,0,129,0.15),0 2px 8px #00c4b42f;
  transform: translateY(-6px) scale(1.02);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.user-name {
  font-size: 16px;
  font-weight: bold;
  color: #4B0082;
}

.user-location {
  font-size: 12px;
  color: #888;
  margin-right: 4px;
}

.review-item__date {
  font-size: 12px;
  color: #bbb;
  margin-right: 10px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.rating-label {
  font-size: 11px;
  color: #888;
  margin-left: 4px;
}

.rating-stars {
  display: flex;
  gap: 1px;
}

.rating-stars img {
  width: 18px;
  height: 18px;
}

.review-service {
  font-size: 12px;
  color: #00C4B4;
  font-weight: bold;
}

.review-title {
  font-size: 16px;
  font-weight: bold;
  color: #4B0082;
  margin: 0 0 4px 0;
}

.review-text {
  font-size: 14px;
  color: #444;
  margin: 0 0 4px 0;
  line-height: 1.7;
}

.review-actions {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.action-button {
  background: #f6f9ff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 1px 6px rgba(0,196,180,.07);
  transition: background 0.15s, box-shadow 0.15s;
}
.action-button:hover {
  background: #e4e9ff;
  box-shadow: 0 2px 8px #00c4b43a;
}
.action-button img {
  width: 20px;
  height: 20px;
}

/* موبایل */
@media (max-width: 600px) {
  .section-7-wrapper .section-title {
    font-size: 18px;
  }
  .review-card {
    min-width: 230px;
    flex: 0 0 80vw;
    padding: 20px 8px 12px 8px;
  }
  .user-name {
    font-size: 15px;
  }
  .review-title {
    font-size: 14px;
  }
  .review-text {
    font-size: 13px;
  }
}
