<style>
.am-testimonials {
  padding: 80px 16px;
  background: radial-gradient(circle at 70% 20%, #0b1727, #000b14);
  position: relative;
  overflow: hidden;
}

.am-t-head {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.am-t-head h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #d4af37;
}

.am-t-head p {
  color: #b7c6d3;
  margin-top: 6px;
  font-size: 1rem;
}

.am-t-slider {
  display: flex;
  gap: 26px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.am-t-card {
  min-width: 85%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  transform: perspective(800px) translateZ(0);
  transition: transform .4s ease, box-shadow .35s ease;
}

.am-t-card:hover {
  transform: perspective(900px) translateZ(24px);
  box-shadow: 0 18px 50px rgba(212,175,55,0.25);
}

.am-t-card h3 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
}

.am-t-loc {
  display: block;
  margin-top: 4px;
  font-size: .9rem;
  color: #d4af37;
  font-weight: 600;
}

.am-t-card p {
  margin-top: 16px;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 1rem;
}

/* المؤشرات */
.am-t-dots {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.am-t-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: .3s;
}

.am-t-dots .active {
  background: #d4af37;
  transform: scale(1.4);
}
</style>