/* طرح کلی و پس‌زمینه */
.consultant-profile-container {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.consultant-profile-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4CAF50, #2196F3);
}

.consultant-profile-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* بخش تصویر و اطلاعات اصلی - بهبود یافته */
.profile-summary {
  position: relative;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.availability-status {
  margin-bottom: 25px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  /*position: relative;*/
  z-index: 1;
}

.status-badge.available {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}

.status-badge.unavailable {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.2);
}

.pulse-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(76, 175, 80, 0.2);
  border-radius: 50px;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.1); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.7; }
}

.next-available {
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.next-available i {
  font-size: 1.1rem;
}

/* تصویر پروفایل - طراحی پیشرفته */
.profile-image-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.profile-img-border {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #4CAF50, #2196F3);
  border-radius: 50%;
  z-index: 0;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.profile-basic-info {
  margin-top: 20px;
}

.ava-code {
  background: #f5f7fa;
  padding: 10px 15px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.file-answer-link a {
  color: #2196F3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.file-answer-link a:hover {
  color: #0d8aee;
  transform: translateX(5px);
}

/* بخش سوابق حرفه‌ای */
.professional-details {
  height: 100%;
}

.consultant-name {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.consultant-title {
  color: #7f8c8d;
  margin-bottom: 25px;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.consultant-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #4CAF50;
}

.section-title {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  font-size: 1.3rem;
}

.professional-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.professional-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.professional-list i {
  color: #4CAF50;
  margin-top: 3px;
  font-size: 0.95rem;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-tag {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-2px);
}

/* بخش زمان‌بندی پاسخگویی */
.schedule-section {
  height: 100%;
}

.satisfaction-badge {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.schedule-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  height: calc(100% - 60px);
}

.time-slot {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  background: white;
}

.time-slot.active {
  box-shadow: 0 0 0 2px #4CAF50;
}

.time-slot.inactive {
  background: rgba(238, 238, 238, 0.5);
  color: #999;
}

.time-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.time-icon.day-time {
  background: rgba(255, 235, 59, 0.2);
  color: #FFC107;
}

.time-icon.night-time {
  background: rgba(63, 81, 181, 0.2);
  color: #3F51B5;
}

.time-details {
  flex-grow: 1;
}

.time-day {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.time-range {
  
  font-size: 0.95rem;
}

.time-status {
  background: #4CAF50;
  color: white;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  margin-right: 10px;
}

.weekly-schedule {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 5px;
}

/* رسپانسیو */
@media (max-width: 992px) {
  .consultant-name {
    font-size: 1.4rem;
  }
  
  .profile-image-container {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .consultant-profile-container {
    padding: 20px;
  }
  
  .consultant-profile-card {
    padding: 20px;
  }
  
  .consultant-name {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.1rem;
  }
  
  .profile-image-container {
    width: 120px;
    height: 120px;
  }
}
.field-tag:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-2px);
}
.field-tag {
  background: #f5f7fa;
  color: #2c3e50;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* طرح کلی */
.call-consultant-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 30px;
}

.call-consultant-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.03);
}

/* حالت آنلاین */
.call-consultant-card .call-consultant-online {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  background: linear-gradient(to right, rgba(76, 175, 80, 0.05), white);
}

.call-consultant-card .call-status {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.call-consultant-card .pulse-dot {
  width: 16px;
  height: 16px;
  background: #4CAF50;
  border-radius: 50%;
  position: relative;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.call-consultant-card .call-status h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 0;
}

.call-consultant-card .call-description {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 600px;
}

.call-consultant-card .call-info {
  flex: 1;
  min-width: 300px;
  padding: 15px;
}

.call-action {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-right: 3px dashed #eee;
}

.call-price {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #666;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4CAF50;
  display: block;
  margin-top: 5px;
}

.cc-call-button {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(76,175,80,0.3);
  text-decoration: none;
  text-align: center;
}

.cc-call-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(76,175,80,0.4);
}

.cc-call-button i {
  font-size: 1.3rem;
}

.cc-pulse-animation {
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* حالت آفلاین */
.call-consultant-offline {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  background: linear-gradient(to right, rgba(255, 152, 0, 0.05), white);
}

.call-status.unavailable {
  color: #FF9800;
}

.call-status.unavailable i {
  font-size: 1.5rem;
}

.alt-button {
  background: linear-gradient(135deg, #2196F3, #0d47a1);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(33,150,243,0.3);
  text-decoration: none;
}

.alt-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(33,150,243,0.4);
}

.alt-button i {
  font-size: 1.3rem;
}

/* رسپانسیو */
@media (max-width: 768px) {
  .call-consultant-container {
    padding: 15px;
  }
  
  .call-consultant-online, 
  .call-consultant-offline {
    padding: 20px;
  }
  
  .call-info, 
  .call-action {
    flex: 0 0 100%;
    padding: 15px;
  }
  
  .call-action {
    border-right: none;
    border-top: 2px dashed #eee;
    padding-top: 25px;
  }
  
  .call-status h3 {
    font-size: 1.2rem;
  }
  
  .cc-call-button, 
  .alt-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

 /* طرح کلی */
.contact-info-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  padding: 25px;
  border-radius: 18px;
  
}

.contact-info-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.03);
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
}

/* بخش آدرس */
.contact-address-section {
  flex: 1;
  min-width: 300px;
  padding: 25px;
  border-left: 1px solid #eee;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-header i {
  font-size: 1.8rem;
  color: #4CAF50;
}

.section-header h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 0;
}

.address-content {
  padding-right: 15px;
}

.office-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
}

.office-name i {
  color: #2196F3;
  font-size: 1.3rem;
}

.office-address {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.office-address i {
  color: #FF9800;
  font-size: 1.5rem;
  margin-top: 3px;
}

.office-address p {
  margin: 0;
  color: #555;
}

.map-link {
  margin-top: 25px;
}

.view-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fa;
  color: #2196F3;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-map-btn:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-2px);
}

.view-map-btn i {
  font-size: 1.2rem;
}

/* بخش تماس */
.contact-details-section {
  flex: 0 0 300px;
  padding: 25px;
  background: #f9f9f9;
}

.contact-card {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-phone, .working-hours {
  margin-bottom: 25px;
}

.contact-phone i {
  font-size: 2rem;
  color: #4CAF50;
  margin-bottom: 10px;
}

.working-hours i {
  font-size: 2rem;
  color: #FF9800;
  margin-bottom: 10px;
}

.phone-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  direction: ltr;
  display: inline-block;
}

.hours-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.contact-card small {
  display: block;
  color: #888;
  font-size: 0.85rem;
  margin-top: 5px;
}

.call-button {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(76,175,80,0.3);
}

.call-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76,175,80,0.4);
}

.call-button i {
  font-size: 1.2rem;
}

/* رسپانسیو */
@media (max-width: 768px) {
  .contact-info-container {
    padding: 15px;
  }
  
  .contact-address-section, .contact-details-section {
    flex: 0 0 100%;
    padding: 20px;
  }
  
  .contact-address-section {
    border-left: none;
    border-bottom: 1px solid #eee;
  }
  
  .section-header h3 {
    font-size: 1.1rem;
  }
  
  .phone-number {
    font-size: 1.2rem;
  }
}
/* استایل‌های عمومی اسلایدر */
.consultant-slider-container {
  padding: 20px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.consultant-swiper {
  padding: 15px;
}

/* کارت مشاور */
.consultant-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.consultant-card.available {
  border-top: 3px solid #4CAF50;
}

.consultant-card.unavailable {
  border-top: 3px solid #FFC107;
}

.consultant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* تصویر مشاور */
.consultant-avatar-container {
  width: 110px;
  height: 110px;
  margin: 0 auto 15px;
  position: relative;
}

.consultant-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* نشانگر وضعیت */
.availability-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.availability-badge.available {
  background-color: #4CAF50;
  color: white;
}

.availability-badge.unavailable {
  background-color: #FFC107;
  color: #333;
}

/* افکت هاله نور برای مشاوران آنلاین */
.online-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.4) 0%, rgba(76, 175, 80, 0) 70%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 0.9; }
  100% { opacity: 0.6; }
}

/* اطلاعات مشاور */
.consultant-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.consultant-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.consultant-specialty {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

.consultant-code {
  margin-top: auto;
  background: #f8f9fa;
  padding: 6px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.code-label {
  font-size: 0.8rem;
  color: #666;
}

.code-value {
  font-weight: 700;
  color: #4CAF50;
}

/* دکمه‌های ناوبری */
.consultant-nav-btn {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #4CAF50;
  transition: all 0.3s ease;
}

.consultant-nav-btn::after {
  font-size: 1rem;
  font-weight: bold;
}

.consultant-nav-btn:hover {
  background: #4CAF50;
  color: white;
}

/* Pagination */
.consultant-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
}

.consultant-pagination .swiper-pagination-bullet-active {
  background: #4CAF50;
}

/* رسپانسیو */
@media (max-width: 768px) {
  .consultant-avatar-container {
    width: 90px;
    height: 90px;
  }
  
  .consultant-name {
    font-size: 1rem;
  }
}
/* استایل بخش هدر و راهنمای وضعیت */
.consultant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
  padding: 0 15px;
}

.consultant-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  position: relative;
  padding-right: 15px;
}

.consultant-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(to bottom, #4CAF50, #2196F3);
  border-radius: 2px;
}

.availability-legends {
  display: flex;
  gap: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.legend-badge.available {
  background-color: #4CAF50;
  color: white;
}

.legend-badge.unavailable {
  background-color: #FFC107;
  color: #333;
}

.legend-text {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}
.consultant-slider-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.consultant-slider-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(76,175,80,0.05) 0%, rgba(76,175,80,0) 70%);
  z-index: 0;
}
.consultant-slider-container {
  background-color: #f8f9fa;
  background-image: 
    radial-gradient(#4CAF50 0.5px, transparent 0.5px),
    radial-gradient(#4CAF50 0.5px, #f8f9fa 0.5px);
  background-size: 20px 20px;
  background-position: 0 0,10px 10px;
  padding: 30px;
  border-radius: 16px;
}
.consultant-slider-container {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}

.consultant-title {
  color: #4CAF50;
}
.swiper-slide {
  transition: all 0.3s ease;
}

.swiper-slide:hover {
  z-index: 10;
}

.consultant-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.consultant-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.consultant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-top-width: 4px;
}

/* تغییر نشانگر موس به دست */
.swiper-slide, 
.consultant-link, 
.consultant-card {
  cursor: pointer;
}
/* استایل بخش نظرات */
.comments-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
  padding: 40px 0;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.comments-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #4CAF50, #2196F3);
}

.comments-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comments-header {
  text-align: center;
  margin-bottom: 30px;
}

.comments-title {
  font-size: 1.8rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.comments-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #2196F3);
  border-radius: 3px;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.stars {
  color: #FFC107;
  font-size: 1.2rem;
}

.average-rating {
  font-weight: 600;
  color: #4CAF50;
}

/* استایل کارت نظرات */
.comment-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.comment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4CAF50, #2196F3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-left: 15px;
}

.user-info {
  flex-grow: 1;
}

.user-name {
  font-weight: 700;
  display: block;
  color: #2c3e50;
}

.comment-date {
  font-size: 0.8rem;
  color: #7f8c8d;
}

.comment-rating {
  color: #FFC107;
  font-size: 0.9rem;
}

.comment-text {
  color: #34495e;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.comment-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.like-btn, .reply-btn {
  background: none;
  border: none;
  color: #7f8c8d;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.like-btn:hover {
  color: #4CAF50;
}

.reply-btn:hover {
  color: #2196F3;
}

/* استایل ناوبری اسلایدر */
.comment-nav-next, .comment-nav-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #4CAF50;
  transition: all 0.3s ease;
}

.comment-nav-next::after, 
.comment-nav-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

.comment-nav-next:hover, 
.comment-nav-prev:hover {
  background: #4CAF50;
  color: white;
}

.comment-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
}

.comment-pagination .swiper-pagination-bullet-active {
  background: #4CAF50;
}

.view-all-comments {
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-comments:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-2px);
}
.like-btn {
  transition: all 0.2s ease;
}

.like-btn.liked {
  color: #4CAF50;
}

.bi-hand-thumbs-up-fill {
  display: none;
}

.like-btn.liked .bi-hand-thumbs-up {
  display: none;
}

.like-btn.liked .bi-hand-thumbs-up-fill {
  display: inline-block;
}

/* استایل‌های پایه */
.services-container {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-top: 50px;
  margin-bottom: 50px;
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-col {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

/* استایل کارت‌ها */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* افکت گلو (نور پس‌زمینه) */
.service-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-glow {
  opacity: 1;
}

/* استایل‌های اختصاصی برای هر کارت */
.premium-experts {
  border-top: 4px solid #4CAF50;
}

.anonymous-call {
  border-top: 4px solid #2196F3;
}

.instant-connection {
  border-top: 4px solid #FFC107;
}

/* آیکون‌ها */
.service-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* محتوای کارت */
.service-content {
  flex-grow: 1;
}

.service-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.service-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-title a:hover {
  color: #4CAF50;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #2196F3);
  border-radius: 3px;
}

.service-description {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* رسپانسیو */
@media (max-width: 992px) {
  .services-row {
    gap: 20px;
  }
  
  .service-col {
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .service-col {
    min-width: 100%;
  }
  
  .service-card {
    padding: 25px;
  }
}