/* 🌟 قسم آراء العملاء - استايل متكامل */
.testimonials-section {
  background: radial-gradient(circle at top left, #1a1a22 0%, #0c0c12 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Cairo', sans-serif;
  color: #f1f1f1;
  padding: 80px 0;
}

/* ✨ توهج متدرج ألوان عمود الحلاق */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 90deg,
    #ff1744 0deg,
    #ffffff 90deg,
    #1565c0 180deg,
    #ff1744 270deg,
    #ffffff 360deg
  );
  opacity: 0.08;
  animation: rotateGlow 25s linear infinite;
  filter: blur(100px);
  z-index: 0;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 🎩 عنوان القسم */
.testimonials-section .section-title {
  color: #ffffff;
  text-shadow: 0 0 25px rgba(255,255,255,0.25);
  letter-spacing: 1px;
  font-size: 2.3rem;
  position: relative;
  display: inline-block;
  text-align: center;
}
.testimonials-section .section-title::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #ff1744, #1565c0);
  border-radius: 4px;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* 💠 البطاقة */
.testimonial-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  color: #f0f0f0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(21,101,192,0.35);
}

/* 🧔‍♂️ صورة العميل */
.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 0 12px rgba(255,255,255,0.2);
  margin-left: 16px;
}

/* الاسم واللقب */
.testimonial-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
}
.testimonial-role {
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* التعليق */
.testimonial-comment {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: right;
  margin-top: 10px;
  direction: rtl;
}
.text-accent {
  color: #ff1744;
  margin-left: 6px;
}

/* 💫 توهج ناعم عند التمرير */
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,23,68,0.2), rgba(21,101,192,0.25));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.testimonial-card:hover::before {
  opacity: 1;
}

/* 🧱 تحسين الموبايل */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-img {
    width: 60px;
    height: 60px;
    margin-left: 0;
    margin-bottom: 10px;
    align-self: center;
  }
  .testimonial-name {
    text-align: center;
  }
  .testimonial-comment {
    text-align: center;
  }
  .section-title {
    font-size: 1.9rem;
  }
}
