
/* phongvt- */
.chiaseaz-wrapper {
  text-align: center;
  padding: 40px 20px 20px;
}
.chiaseaz-wrapper h2 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #e95420;
  margin-bottom: 30px;
}

.chiaseaz-swiper {
  padding-bottom: 60px;
  position: relative;
}
.chiaseaz-slide {
  padding: 15px;
}
.testimonial-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.testimonial-image {
  position: relative;
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-box:hover .testimonial-image {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}
.testimonial-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.testimonial-user {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
.testimonial-info {
  font-size: 15px;
}
.testimonial-info strong {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}
.testimonial-info span {
  display: block;
  color: #ccc;
  font-size: 14px;
}
.testimonial-quote {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  opacity: 1;
}
.testimonial-content {
  padding: 25px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  min-height: 140px;
  animation: fadeInUp 0.6s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.swiper-button-next, .swiper-button-prev {
  color: #ccc;
  top: 42%;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  color: #333;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 26px;
}

/* Pagination style: gạch + chấm xám như ảnh mẫu */
.swiper-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 100px;
  transition: all 0.3s ease;
  display: inline-block;
}
.swiper-pagination-bullet-active {
  width: 30px;
  background: #e95420;
  border-radius: 100px;
}
