* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8fafc;
}

.testimonials-section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.subtitle {
  color: #f97316;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonial-header h2 {
  font-size: 38px;
  margin-top: 10px;
  color: #0f172a;
}

.testimonial-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.image-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f97316, #facc15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-circle img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
}

.content-section {
  flex: 1;
}

.top-review {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  margin-bottom: 20px;
  font-size: 14px;
}

.stars {
  color: #f59e0b;
}

.quote {
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 30px;
}

.bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.bottom-info h3 {
  font-size: 20px;
  color: #0f172a;
}

.bottom-info p {
  color: #64748b;
  margin-top: 5px;
}

.number {
  font-size: 40px;
  font-weight: bold;
  color: #cbd5e1;
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  cursor: pointer;
  background: white;
}

.dot.active {
  background: #f97316;
  border-color: #f97316;
}

.mobile-dots {
  display: none;
  justify-content: center;
  margin-top: 25px;
}

@media(max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .desktop-dots {
    display: none;
  }

  .mobile-dots {
    display: flex;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .bottom-info {
    flex-direction: column;
    gap: 15px;
  }
}