/* ===========================
   Testimonials Page - Hero
   =========================== */
.testi-hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #100329 0%, #1C0944 50%, #0F0039 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testi-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.testi-hero__inner {
  position: relative;
  z-index: 1;
}

.testi-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.testi-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   Testimonial Grid
   =========================== */
.testi-grid-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0F0039 0%, #100329 50%, #1C0944 100%);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.testi-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #363636;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testi-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}


.testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-card__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testi-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111111;
}

.testi-card__role {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-hero__title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .testi-hero {
    padding: 140px 0 70px;
  }

  .testi-hero__title {
    font-size: 2.25rem;
  }

  .testi-grid-section {
    padding: 48px 0;
  }
}

@media (max-width: 600px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
