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

.am-testimonials::before{
  content:"";
  position:absolute; inset:-20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,.12), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(99,102,241,.08), transparent 55%);
  filter: blur(10px);
  pointer-events:none;
}

.am-t-wrap{max-width:1100px;margin:0 auto;position:relative; z-index:1;}

.am-t-head{text-align:center;margin-bottom:34px;color:#fff;}
.am-t-head h2{font-size:2.05rem;font-weight:900;color:#d4af37;letter-spacing:.2px;}
.am-t-head p{color:#b7c6d3;margin-top:8px;font-size:1.02rem}

.am-t-slider{
  display:flex;
  gap:18px;
  overflow:auto;
  scroll-behavior:smooth;
  padding:6px 6px 18px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.am-t-slider::-webkit-scrollbar{display:none;}

.am-t-card{
  scroll-snap-align:center;
  min-width: min(92%, 520px);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  padding:22px;
  border-radius:24px;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  position:relative;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.am-t-card::after{
  content:"";
  position:absolute; inset:-1px;
  border-radius:24px;
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,.28), transparent 55%);
  opacity:.0;
  transition:opacity .35s ease;
  pointer-events:none;
}

.am-t-card:hover{
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 26px 70px rgba(0,0,0,.65), 0 0 0 1px rgba(212,175,55,.15) inset;
}
.am-t-card:hover::after{opacity:1;}

.am-t-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

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

.am-t-loc{
  display:block;
  margin-top:6px;
  font-size:.92rem;
  color:#d4af37;
  font-weight:700;
}

.am-t-rating{white-space:nowrap; user-select:none; margin-top:2px;}
.am-star{font-size:15px; opacity:.28; color:#fff; margin-left:2px;}
.am-star.on{opacity:1; color:#d4af37; filter: drop-shadow(0 0 8px rgba(212,175,55,.35));}

.am-t-meta{
  margin-top:12px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.08);
  color:#cbd5e1;
  font-size:.92rem;
}

.am-t-body{
  margin-top:14px;
  color:#d7e0ea;
  line-height:1.85;
  font-size:1rem;
}

.am-t-dots{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.am-t-dots span{
  width:10px;height:10px;border-radius:999px;
  background: rgba(255,255,255,.22);
  transition: .25s ease;
}

.am-t-dots .active{
  width:26px;
  background:#d4af37;
  box-shadow: 0 0 14px rgba(212,175,55,.45);
}

@media (min-width: 900px){
  .am-t-card{min-width: 420px;}
}

.am-t-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  color: #00101d;
  background: linear-gradient(135deg, #d4af37, #facc15);
  box-shadow: 0 8px 24px rgba(212,175,55,.35);
  transition: all .25s ease;
}

.am-t-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,175,55,.55);
}