/* Customer Reviews Section */
#reviews {
  padding: 60px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.reviews-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  padding: 20px 5px; /* Padding for shadow */
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.customer-profile {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.customer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  background-color: #e9ecef;
}

.customer-info h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.stars {
  color: #ffc107;
  font-size: 14px;
}

.review-text {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.review-date {
  font-size: 12px;
  color: #999;
  text-align: right;
}

.nav-btn {
  background: #fff;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  z-index: 10;
  position: absolute;
}

.nav-btn:hover {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }
}

/* Customer Support Section */
#support-section {
  padding: 60px 0;
  background-color: #fff;
}

.support-panel {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.support-image-col {
  flex: 1;
  min-width: 300px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.support-img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.support-content-col {
  flex: 2;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-title {
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.support-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
}

.support-icon {
  width: 36px;
  height: 36px;
  background: #e8f5e9;
  color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 16px;
}

.live-chat-btn {
  margin-top: 20px;
  background: #28a745;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.live-chat-btn:hover {
  background: #218838;
  color: #fff;
  transform: translateY(-2px);
}

.live-chat-btn svg {
  margin-right: 8px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}
