/* =========================================================
   Home Social Proof (Testimonials)
========================================================= */

.al-social{
  padding: 74px 0;
}

.al-social__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.al-social__title{
  font-family: var(--al-font-head);
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.1;
  margin: 0 0 8px;
}

.al-social__desc{
  margin: 0;
  max-width: 720px;
  color: var(--al-muted);
  font-weight: 500;
}

.al-social__controls{
  display:flex;
  gap: 10px;
}

.al-social__btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--al-border);
  background: rgba(255,255,255,.70);
  box-shadow: 0 10px 24px rgba(17,19,24,.08);
  cursor:pointer;
}
.al-social__btn:hover{ transform: translateY(-1px); }

/* Track */
.al-social__trackWrap{
  border: 1px solid var(--al-border);
  background: rgba(255,255,255,.65);
  border-radius: var(--al-radius);
  box-shadow: 0 16px 40px rgba(17,19,24,.08);
  padding: 16px;
}

.al-social__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 3);
  gap: 11px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 10px;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 10px;
}
.al-social__track::-webkit-scrollbar{ height: 8px; }
.al-social__track::-webkit-scrollbar-thumb{ background: rgba(17,19,24,.12); border-radius: 999px; }

.al-socialCard{
  scroll-snap-align: start;
  border-radius: 16px;
  border: 1px solid rgba(17,19,24,.10);
  background: #fff;
  padding: 16px 16px 14px;
  min-height: 190px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.al-socialCard__top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}

.al-socialCard__who{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.al-socialCard__avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(17,19,24,.12);
}
.al-socialCard__avatar--letter{
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(15,27,45,.95);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

.al-socialCard__meta{ min-width: 0; }
.al-socialCard__name{
  font-weight: 900;
  line-height: 1.2;
}
.al-socialCard__sub{
  margin-top: 2px;
  color: var(--al-muted);
  font-weight: 600;
  font-size: 13px;
  display:flex;
  flex-wrap: wrap;
  gap: 6px;
}
.al-socialCard__brand{ color: rgba(15,27,45,.95); }
.al-socialCard__dot{ opacity: .7; }

.al-socialCard__stars{
  display:flex;
  gap: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.al-socialCard__stars i{
  font-size: 14px;
  opacity: .22;
}
.al-socialCard__stars i.is-on{
  opacity: 1;
  color: var(--al-accent);
}

.al-socialCard__text{
  margin: 0;
  color: rgba(17,19,24,.84);
  font-weight: 550;
}

/* Dots */
.al-social__dots{
  display:flex;
  justify-content: center;
  gap: 8px;
  padding-top: 10px;
}
.al-social__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17,19,24,.18);
}
.al-social__dot.is-active{
  background: rgba(15,27,45,.92);
  width: 18px;
}

/* Reveal animation (site genel dili) */
.al-reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.al-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .al-social{ padding: 56px 0; }
  .al-social__head{
    align-items:flex-start;
    flex-direction: column;
  }
  .al-social__controls{ align-self: flex-end; }

  .al-social__track{
    grid-auto-columns: calc((100% - 11px) / 2);
  }
}

@media (max-width: 560px){
  .al-social__track{
    grid-auto-columns: 100%;
  }
}