/* Testimonials Component Styles - Perfectly Balanced Asymmetric Showcase */
.testimonials-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #F0F9FF 50%, #F8FAFC 100%);
  padding: 80px 0 90px 0;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

/* Ambient Glow Orbs */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 192, 67, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* Asymmetric 2-Column Showcase Grid */
.testimonials-new-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Column 1: Featured Spotlight & Left Side Metrics Stack */
.spotlight-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Featured Hero Spotlight Card */
.featured-testimonial-card {
  position: relative;
  background: linear-gradient(135deg, #00385F 0%, #005F9E 100%);
  color: #FFFFFF;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 18px 40px rgba(0, 56, 95, 0.22);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, box-shadow 0.35s ease;
  will-change: transform, opacity;
}

.featured-testimonial-card.swapping {
  transform: scale(0.96);
  opacity: 0.3;
}

.featured-quote-mark {
  position: absolute;
  right: 24px;
  bottom: 16px;
  font-size: 7.5rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.featured-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(120, 192, 67, 0.25);
  border: 1px solid #78C043;
  color: #78C043;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 14px;
  border-radius: 50px;
}

.featured-quote-text {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.68;
  font-weight: 500;
  margin: 18px 0 24px 0;
  position: relative;
  z-index: 2;
  min-height: 96px;
}

/* Left Side Trust Metrics 2x2 Grid */
.left-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.left-metric-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.left-metric-card:hover {
  transform: translateY(-3px);
  border-color: #0066CC;
  box-shadow: 0 10px 22px rgba(0, 102, 204, 0.08);
}

.left-metric-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #0066CC;
  line-height: 1.2;
}

.left-metric-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Left Side Read All Reviews CTA Bar */
.left-reviews-cta-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.06);
}

/* Regular Right Side Stack Cards */
.card-stack-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new-testimonial-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 5px solid #0066CC;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.new-testimonial-card:hover {
  transform: translateX(6px) translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 102, 204, 0.12);
  border-color: rgba(0, 102, 204, 0.3);
  border-left-color: #78C043;
}

.new-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.dept-chip {
  background: rgba(0, 102, 204, 0.08);
  color: #0066CC;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.74rem;
  padding: 3px 10px;
  border-radius: 50px;
}

.rating-stars-gold {
  color: #F59E0B;
  font-size: 0.88rem;
  letter-spacing: 1px;
}

.new-card-quote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.new-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.patient-profile-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.patient-avatar-mini {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: #EBF8FF;
  border: 2px solid #0066CC;
  flex-shrink: 0;
}

.patient-avatar-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.click-swap-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0066CC;
  background: rgba(0, 102, 204, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.new-testimonial-card:hover .click-swap-badge {
  background: #0066CC;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .testimonials-new-grid { grid-template-columns: 1fr; gap: 24px; }
  .left-metrics-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .left-metrics-grid { grid-template-columns: 1fr; }
}
