/* Success stories / testimonials — infinite card marquee */

.rewa-stories {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(14, 116, 144, 0.05), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(224, 164, 78, 0.06), transparent 50%),
    #fff;
  scroll-margin-top: 80px;
  overflow: hidden;
}

.rewa-stories__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.rewa-stories__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.rewa-stories__kicker {
  color: #0891b2;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

.rewa-stories__title {
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  margin: 12px 0 14px;
  color: #0c3640;
  letter-spacing: -0.5px;
}

.rewa-stories__subtitle {
  color: #5a7b82;
  font-size: 17px;
  margin: 0;
  line-height: 1.65;
}

.rewa-stories__marquees {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 -24px;
}

.rewa-stories__row {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

[dir='rtl'] .rewa-stories__row {
  mask-image: linear-gradient(
    to left,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to left,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.rewa-stories__track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  animation: rewaStoriesScroll 62s linear infinite;
  will-change: transform;
}

.rewa-stories__row--reverse .rewa-stories__track {
  animation-direction: reverse;
  animation-duration: 70s;
}

.rewa-stories__row:hover .rewa-stories__track {
  animation-play-state: paused;
}

@keyframes rewaStoriesScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

[dir='rtl'] .rewa-stories__track {
  animation-name: rewaStoriesScrollRtl;
}

@keyframes rewaStoriesScrollRtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.rewa-stories__card {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #fbfdfe, #f3fafb);
  border: 1px solid #eaf2f3;
  border-radius: 22px;
  padding: 28px 24px 22px;
  box-shadow: 0 6px 20px rgba(16, 59, 68, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rewa-stories__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(14, 116, 144, 0.12);
  border-color: #b8d9df;
}

.rewa-stories__quote {
  font-size: 32px;
  color: #bfe0e6;
  margin-bottom: 10px;
  line-height: 1;
}

.rewa-stories__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #e0a44e;
}

.rewa-stories__stars i {
  font-size: 14px;
}

.rewa-stories__text {
  color: #2f5660;
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rewa-stories__author {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid #e6f0f2;
  padding-top: 16px;
  margin-top: auto;
}

.rewa-stories__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eaf2f3;
}

.rewa-stories__avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0e7490, #0891b2);
  color: #fff;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  font-size: 18px;
}

.rewa-stories__meta {
  min-width: 0;
}

.rewa-stories__name {
  font-weight: 700;
  color: #0c3640;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 2px;
}

.rewa-stories__country {
  color: #7a989e;
  font-size: 13px;
  margin: 0;
}

.rewa-stories__badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eaf2f3;
}

.rewa-stories__badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5a7b82;
  font-size: 14px;
  font-weight: 600;
}

.rewa-stories__badge-item svg,
.rewa-stories__badge-item i {
  flex-shrink: 0;
  color: #e0a44e;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .rewa-stories__row {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .rewa-stories__track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 18px;
  }

  .rewa-stories__card:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .rewa-stories {
    padding: 72px 0;
  }

  .rewa-stories__header {
    margin-bottom: 40px;
  }

  .rewa-stories__card {
    width: 300px;
    padding: 24px 20px 18px;
  }

  .rewa-stories__marquees {
    gap: 16px;
  }

  .rewa-stories__badge {
    margin-top: 36px;
    padding-top: 24px;
  }
}
