/* ======================================
      REVIEWS SECTION
====================================== */
.reviews-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}

.reviews-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 12px !important;
}

.reviews-title span {
  color: #0ea5e9 !important;
}

.reviews-carousel {
  position: relative;
  margin-top: 32px;
}

.reviews-wrapper {
  overflow: hidden;
  border-radius: 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-slide {
  flex: 0 0 100%;
  padding: 8px;
}

.reviews-slide .col-lg-4 {
  flex: 0 0 50%;
  max-width: 50%;
}

.review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px 26px;
  border-radius: 10px;
  background: #ffffff;
  border: 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.10);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.client-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(14, 165, 233, 0.22);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.client-info {
  flex: 1;
  min-width: 0;
}

.client-name {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.client-title {
  font-size: 13px;
  color: #64748b;
  margin: 4px 0 0;
  line-height: 1.4;
}

.stars {
  font-size: 15px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin: 0;
}

.review-text-wrapper {
  position: relative;
  margin-top: 4px;
}

.review-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  font-style: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  position: relative;
  transition: -webkit-line-clamp 0.35s ease;
}

.review-text::after {
  content: "";
  display: none;
}

.review-text.expanded {
  -webkit-line-clamp: 8;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0ea5e9;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.read-more-btn:hover {
  color: #0284c7;
  transform: translateX(2px);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.review-btn {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 233, 0.20);
  background: rgba(255, 255, 255, 0.95);
  color: #0ea5e9;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.review-btn:hover {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(14, 165, 233, 0.22);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 34px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.dot:hover {
  background: #0ea5e9;
}

/* ======================================
      RESPONSIVE
====================================== */
@media (max-width: 992px) {
  .reviews-title {
    font-size: 34px;
  }

  .reviews-slide .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .review-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 64px 0;
  }

  .reviews-title {
    font-size: 28px;
  }

  .reviews-slide {
    padding: 6px;
  }

  .reviews-slide .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .review-card {
    padding: 22px 20px 20px;
    border-radius: 12px;
  }

  .client-avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }

  .review-text {
    font-size: 14px;
    -webkit-line-clamp: 6;
  }

  .review-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  .reviews-section {
    padding: 54px 0;
  }

  .reviews-title {
    font-size: 24px;
  }

  .review-card {
    padding: 18px 16px 16px;
    border-radius: 10px;
  }

  .review-header {
    gap: 12px;
  }

  .client-avatar-img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .client-name {
    font-size: 15px;
  }

  .client-title {
    font-size: 12px;
  }

  .stars {
    font-size: 14px;
  }

  .review-text {
    font-size: 13px;
    line-height: 1.75;
    -webkit-line-clamp: 6;
  }

  .review-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .dot.active {
    width: 28px;
  }
}
