/* Cary Studio — Realizat de Petri Data Consult SRL | Suport: 0743 982 420 | office@petridataconsult.ro */
/* Testimonials Carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .testimonial-slide { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
  .testimonial-slide { flex: 0 0 33.3333%; }
}
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  line-height: 1;
  color: var(--brand-100);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: #fbbf24; font-size: 13px; }
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-700);
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}
.testimonial-role {
  font-size: 12px;
  color: #9ca3af;
}
/* Navigation dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.testimonial-dot.active {
  background: var(--brand-500);
  width: 24px;
  border-radius: 4px;
}
/* Nav arrows */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
  color: #6b7280;
}
.testimonial-nav:hover {
  background: var(--brand-50);
  border-color: var(--brand-300);
  color: var(--brand-700);
}
.testimonial-nav-prev { left: -4px; }
.testimonial-nav-next { right: -4px; }
@media (max-width: 768px) {
  .testimonial-nav { display: none; }
}
/* Pause on hover */
.testimonial-carousel:hover .testimonial-track {
  /* pause handled in JS */
}
