/* ==========================================================================
   CLIENT REVIEWS 1-BY-1 CAROUSEL & UNIQUE CARD DESIGN
   ========================================================================== */
.reviews-section {
  padding: 4.5rem 0 5rem 0;
  background: #f8fafc;
  position: relative;
}

.reviews-slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.reviews-slider-track {
  position: relative;
  width: 100%;
  height: 310px;
}

.review-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #051329;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(5, 19, 41, 0.12);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-nav-btn:hover {
  background: #FF7A00;
  color: #ffffff;
  border-color: #FF7A00;
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.review-nav-btn.prev-btn { left: -10px; }
.review-nav-btn.next-btn { right: -10px; }

/* 1-by-1 Slide Animation with Fixed Same Card Size */
.reviews-slider-track .client-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

.reviews-slider-track .client-card.active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* Unique Unified Client Card Design (Identical Equal Size for All Cards) */
.client-card {
  background: linear-gradient(145deg, #051329 0%, #0E294B 60%, #162B46 100%);
  border-radius: 20px;
  padding: 2.25rem 2.25rem;
  border: 1px solid rgba(255, 122, 0, 0.3);
  box-shadow: 0 16px 40px rgba(5, 19, 41, 0.18), 0 4px 16px rgba(255, 122, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF7A00, #FFA800, #FF7A00);
}

.client-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF7A00, #E66A00);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.35);
  letter-spacing: -0.5px;
}

.client-info {
  flex-grow: 1;
}

.client-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}

.client-info h4 {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 750;
  margin: 0;
  line-height: 1.3;
}

.client-info span.client-role {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  margin-top: 0.15rem;
}

.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  color: #FF7A00;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.35);
  white-space: nowrap;
}

.rating-stars {
  color: #FF7A00;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  z-index: 2;
}

.rating-score {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

.client-quote {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.client-quote span.highlight-quote {
  color: #FF7A00;
  font-weight: 700;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.client-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  color: #FF7A00;
  background: rgba(255, 122, 0, 0.14);
  border: 1px solid rgba(255, 122, 0, 0.3);
  width: fit-content;
}

.quote-watermark {
  font-size: 2rem;
  color: rgba(255, 122, 0, 0.15);
}

.review-dots-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  width: 28px;
  border-radius: 20px;
  background: #FF7A00;
}

@media (max-width: 768px) {
  .reviews-slider-wrapper {
    padding: 0 2.5rem;
  }
  .reviews-slider-track {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .reviews-slider-wrapper {
    padding: 0;
  }
  .reviews-slider-track {
    height: 380px;
  }
  .review-nav-btn {
    display: none;
  }
  .client-card {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
  }
  .client-quote {
    font-size: 0.94rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
  }
  .client-avatar {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .client-info h4 {
    font-size: 1.05rem;
  }
}

@media (max-width: 400px) {
  .reviews-slider-track {
    height: 410px;
  }
  .client-card {
    padding: 1.15rem 0.95rem;
  }
  .client-quote {
    font-size: 0.88rem;
  }
}
