/* FEEDBACK SECTION */
.feedback-section {
  background-color: #ffffff;
  padding: 7rem 0;
  font-family: 'Space Grotesk', sans-serif;
}

.feedback-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.feedback-carousel {
  position: relative;
  overflow: hidden;
}

.feedback-slide {
  display: none;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 400px;
  opacity: 0;
  transform: translateX(-80px);
}

.feedback-slide.active {
  display: grid;
  animation: feedbackSlideIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.feedback-image {
  width: 400px;
  height: 400px;
  background-color: #e85107;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.feedback-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feedback-content {
  position: relative;
  padding: 2rem 0;
}

.feedback-quote-mark {
  width: 50px;
  height: auto;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.feedback-quote-mark img {
  width: 100%;
  display: block;
}

.feedback-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  font-family: 'Space Grotesk', sans-serif;
}

.feedback-author {
  margin-top: 2rem;
}

.author-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}


/* Navigation Arrows */
.feedback-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
  position: absolute;
  right: 2rem;
  bottom: 0;
}

.feedback-arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 48px;
  height: 48px;
}

.feedback-arrow:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.feedback-arrow:active {
  transform: scale(0.95);
}

.feedback-arrow svg {
  width: 24px;
  height: 24px;
}

/* Animations */
@keyframes feedbackSlideIn {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .feedback-slide {
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    min-height: 350px;
  }

  .feedback-image {
    width: 350px;
    height: 350px;
  }

  .feedback-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .feedback-section {
    padding: 3rem 0;
  }

  .feedback-container {
    padding: 0 1.5rem;
  }

  .feedback-slide {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    text-align: center;
    transform: none;
    opacity: 1;
    animation: none;
  }

  .feedback-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
  }

  .feedback-content {
    padding: 1rem 0;
  }

  .feedback-quote-mark {
    width: 68px;
  }

  .feedback-text {
    font-size: 1rem;
    text-align: left;
  }

  .feedback-author {
    text-align: left;
  }

  .feedback-navigation {
    position: static;
    justify-content: flex-end;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .feedback-section {
    padding: 2rem 0;
  }

  .feedback-image {
    height: 300px;
  }

  .feedback-quote-mark {
    width: 58px;
  }

  .feedback-text {
    font-size: 0.95rem;
  }

  .author-name {
    font-size: 1.25rem;
  }
}

