/* Jazr Testimonials Widget Styles */

:root {
  --jazr-primary: hsl(204, 80%, 36%);
  --jazr-accent: hsl(24, 100%, 61%);
  --jazr-foreground: hsl(0, 0%, 10%);
}

.jazr-testimonials-section {
  width: 100%;
  padding: 5rem 1rem;
  background: linear-gradient(
    135deg,
    var(--jazr-primary) 0%,
    hsl(204, 80%, 30%) 100%
  );
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .jazr-testimonials-section {
    padding: 7rem 1rem;
  }
}

.jazr-testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.jazr-testimonials-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .jazr-testimonials-title {
    font-size: 2.25rem;
  }
}

.jazr-testimonials-subtitle {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.jazr-testimonials-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jazr-carousel-prev,
.jazr-carousel-next {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jazr-carousel-prev:hover,
.jazr-carousel-next:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.jazr-arrow-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: white !important;
  line-height: 1;
}

.jazr-carousel-prev svg,
.jazr-carousel-next svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
  display: block;
}

@media (max-width: 767px) {
  .jazr-carousel-prev,
  .jazr-carousel-next {
    display: none;
  }
}

.jazr-testimonials-carousel {
  flex: 1;
  position: relative;
}

.jazr-testimonial-slide {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .jazr-testimonial-slide {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.jazr-testimonial-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.jazr-quote-icon {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--jazr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.jazr-quote {
  color: var(--jazr-foreground);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.jazr-client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.jazr-client-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jazr-primary), var(--jazr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
}

.jazr-client-name {
  color: var(--jazr-accent);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.jazr-company-name {
  color: hsl(0, 0%, 50%);
  font-size: 0.75rem;
}

.jazr-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.jazr-carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.jazr-carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.jazr-carousel-dot.jazr-dot-active {
  width: 2rem;
  border-radius: 9999px;
  background-color: var(--jazr-accent);
}
