/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 60px 0;
  position: relative;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: auto;
  gap: 25px;
  margin-top: 3rem;
  position: relative;
  align-items: start;
}

/* Wrapper untuk card yang bersebelahan */
.testimonials-pair-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  grid-column: span 3;
  align-items: start;
}

.testimonials-pair-wrapper .testimonial-card-large {
  grid-column: span 1;
}

.testimonials-pair-wrapper .testimonial-card-small {
  grid-column: span 1;
}

/* Wrapper dengan proporsi terbalik (large di kiri, small di kanan) */
.testimonials-pair-reverse {
  grid-template-columns: 2fr 1fr;
}

/* Cards mengikuti tinggi konten */
.testimonial-card-1,
.testimonial-card-2,
.testimonial-card-3,
.testimonial-card-4,
.testimonial-card-large {
  height: auto;
  min-height: auto;
}

/* Large Card */
.testimonial-card-large {
  background: rgba(var(--bg-dark-alt-rgb), 0.6);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(var(--bg-dark-rgb), 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(var(--accent-dark-rgb), 0.2);
  transition: all 0.4s ease;
  grid-column: span 2;
}

.theme-light .testimonial-card-large {
  background: rgba(var(--bg-light-rgb), 0.9);
  box-shadow: 0 10px 40px rgba(var(--accent-light-rgb), 0.2);
  border-color: rgba(var(--accent-light-rgb), 0.3);
}

.testimonial-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(var(--bg-dark-rgb), 0.5);
}

.theme-light .testimonial-card-large:hover {
  box-shadow: 0 15px 50px rgba(var(--accent-light-rgb), 0.3);
}

.quote-mark-large {
  font-size: 120px;
  line-height: 1;
  color: rgba(var(--accent-dark-rgb), 0.15);
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 0;
}

.theme-light .quote-mark-large {
  color: rgba(var(--accent-light-rgb), 0.2);
}

.review-content-large {
  position: relative;
  z-index: 1;
  margin-top: 80px;
}

.review-text-large {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(var(--text-dark-rgb), 0.9);
  margin-bottom: 30px;
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .review-text-large {
  color: rgba(var(--text-light-rgb), 0.9);
}

.reviewer-info-large {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar-large {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
  border: 3px solid rgba(var(--accent-dark-rgb), 0.3);
  box-shadow: 0 4px 15px rgba(var(--accent-dark-rgb), 0.3);
  transition: transform 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .avatar-large {
  background: linear-gradient(135deg, var(--cta-green), var(--primary-light));
  color: var(--bg-light);
  border-color: rgba(var(--primary-light-rgb), 0.3);
  box-shadow: 0 4px 15px rgba(var(--primary-light-rgb), 0.3);
}

.avatar-large:hover {
  transform: scale(1.1) rotate(5deg);
}

.reviewer-details-large {
  flex: 1;
}

.reviewer-name-large {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .reviewer-name-large {
  color: var(--text-light);
}

.reviewer-location-large {
  font-size: 14px;
  color: rgba(var(--text-dark-rgb), 0.7);
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .reviewer-location-large {
  color: rgba(var(--text-light-rgb), 0.7);
}

/* Small Cards - Masonry layout */
.testimonial-card-small {
  height: 100%;
}

.testimonial-card-small {
  background: rgba(var(--bg-dark-alt-rgb), 0.6);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(var(--bg-dark-rgb), 0.3);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--accent-dark-rgb), 0.15);
  display: flex;
  flex-direction: column;
}

.theme-light .testimonial-card-small {
  background: rgba(var(--bg-light-rgb), 0.9);
  box-shadow: 0 8px 30px rgba(var(--accent-light-rgb), 0.15);
  border-color: rgba(var(--accent-light-rgb), 0.2);
}

.testimonial-card-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--bg-dark-rgb), 0.4);
  border-color: rgba(var(--accent-dark-rgb), 0.3);
}

.theme-light .testimonial-card-small:hover {
  box-shadow: 0 12px 40px rgba(var(--accent-light-rgb), 0.25);
  border-color: rgba(var(--accent-light-rgb), 0.4);
}

.reviewer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.avatar-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid rgba(var(--accent-dark-rgb), 0.2);
  box-shadow: 0 2px 10px rgba(var(--accent-dark-rgb), 0.2);
  transition: transform 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .avatar-small {
  color: var(--bg-light);
  border-color: rgba(var(--primary-light-rgb), 0.2);
  box-shadow: 0 2px 10px rgba(var(--primary-light-rgb), 0.2);
}

.avatar-small:hover {
  transform: scale(1.1) rotate(5deg);
}

.reviewer-info-header {
  flex: 1;
}

.reviewer-name-small {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .reviewer-name-small {
  color: var(--text-light);
}

.reviewer-meta {
  font-size: 13px;
  color: rgba(var(--text-dark-rgb), 0.7);
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .reviewer-meta {
  color: rgba(var(--text-light-rgb), 0.7);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
  align-items: center;
}

.star {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
}

.star.filled {
  color: var(--accent-dark);
}

.theme-light .star.filled {
  color: var(--cta-green);
}

.star.empty {
  color: rgba(var(--text-dark-rgb), 0.2);
}

.theme-light .star.empty {
  color: rgba(var(--text-light-rgb), 0.2);
}

.review-date {
  font-size: 13px;
  color: rgba(var(--text-dark-rgb), 0.7);
  margin-left: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .review-date {
  color: rgba(var(--text-light-rgb), 0.7);
}

.review-text-small {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(var(--text-dark-rgb), 0.85);
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .review-text-small {
  color: rgba(var(--text-light-rgb), 0.85);
}

.show-more {
  color: var(--accent-dark);
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
}

.theme-light .show-more {
  color: var(--cta-green);
}

.show-more:hover {
  color: var(--accent-brown);
}

.theme-light .show-more:hover {
  color: var(--primary-light);
}

.quote-mark-bottom {
  position: absolute;
  bottom: 25px;
  right: 30px;
  font-size: 80px;
  line-height: 1;
  color: rgba(var(--accent-dark-rgb), 0.1);
  font-family: 'Cormorant Garamond', serif;
  transform: rotate(180deg);
}

.theme-light .quote-mark-bottom {
  color: rgba(var(--accent-light-rgb), 0.15);
}

/* Testimonials Slider Wrapper */
.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
}

/* Testimonials Slider Navigation Buttons */
.testimonial-slider-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(210, 171, 128, 0.6);
  color: #d2ab80;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  pointer-events: auto;
}

.testimonial-slider-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.testimonial-slider-btn:hover {
  transform: translateY(-50%) scale(1.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(210, 171, 128, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 6px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.testimonial-slider-btn:hover i {
  transform: scale(1.1);
}

.testimonial-slider-btn:active {
  transform: translateY(-50%) scale(1.05);
}

.testimonial-slider-prev {
  left: 10px;
}

.testimonial-slider-next {
  right: 10px;
}

/* Mobile Structure untuk Card Large - Sembunyikan di Desktop */
.reviewer-header-mobile,
.stars-mobile,
.review-text-mobile,
.quote-mark-bottom-mobile {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .testimonial-card-large {
    grid-column: span 2;
  }

  .testimonials-pair-wrapper {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-slider-wrapper {
    position: relative;
    overflow: visible;
    padding: 0;
    touch-action: pan-x;
  }

  .testimonials-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 10px 60px;
    touch-action: pan-x;
    -ms-overflow-style: none;
  }

  .testimonials-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonials-pair-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    min-width: 260%;
    margin-right: 40px;
  }

  .testimonials-pair-wrapper .testimonial-card-small,
  .testimonials-pair-wrapper .testimonial-card-large {
    flex: 0 0 50%;
    min-width: 50%;
    max-width: 50%;
    scroll-snap-align: center;
    height: auto;
    min-height: 400px;
    touch-action: pan-x;
    pointer-events: auto;
    padding: 30px 20px;
    margin-right: 0;
  }

  /* Semua card menjadi ukuran kecil di mobile - SAMAKAN SEMUA */
  .testimonial-card-small,
  .testimonial-card-large {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: center;
    height: auto;
    min-height: 400px;
    touch-action: pan-x;
    pointer-events: auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: rgba(var(--bg-dark-alt-rgb), 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(var(--bg-dark-rgb), 0.3);
    border: 1px solid rgba(var(--accent-dark-rgb), 0.15);
  }

  .theme-light .testimonial-card-small,
  .theme-light .testimonial-card-large {
    background: rgba(var(--bg-light-rgb), 0.9);
    box-shadow: 0 8px 30px rgba(var(--accent-light-rgb), 0.15);
    border-color: rgba(var(--accent-light-rgb), 0.2);
  }

  .testimonial-slider-btn {
    display: flex !important;
    width: 40px;
    height: 40px;
    font-size: 16px;
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .testimonial-slider-prev {
    left: 5px;
  }

  .testimonial-slider-next {
    right: 5px;
  }

  /* Sembunyikan card ke-4 dan ke-5 di mobile (hanya tampilkan 3 card) */
  .testimonials-pair-wrapper.testimonials-pair-reverse {
    display: none;
  }

  /* Sembunyikan elemen desktop di mobile */
  .testimonial-card-large .quote-mark-large {
    display: none;
  }

  .testimonial-card-large .review-content-large {
    display: none;
  }

  /* SAMAKAN SEMUA HEADER - baik reviewer-header maupun reviewer-header-mobile */
  .testimonial-card-small .reviewer-header,
  .testimonial-card-large .reviewer-header-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  /* SAMAKAN SEMUA REVIEWER INFO HEADER */
  .testimonial-card-small .reviewer-info-header,
  .testimonial-card-large .reviewer-info-header {
    flex: 1;
  }

  /* SAMAKAN SEMUA REVIEWER NAME */
  .testimonial-card-small .reviewer-name-small,
  .testimonial-card-large .reviewer-name-small {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonial-card-small .reviewer-name-small,
  .theme-light .testimonial-card-large .reviewer-name-small {
    color: var(--text-light);
  }

  /* SAMAKAN SEMUA REVIEWER META */
  .testimonial-card-small .reviewer-meta,
  .testimonial-card-large .reviewer-meta {
    font-size: 13px;
    color: rgba(var(--text-dark-rgb), 0.7);
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonial-card-small .reviewer-meta,
  .theme-light .testimonial-card-large .reviewer-meta {
    color: rgba(var(--text-light-rgb), 0.7);
  }

  /* SAMAKAN SEMUA AVATAR */
  .testimonial-card-small .avatar-small,
  .testimonial-card-large .avatar-small-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(var(--accent-dark-rgb), 0.2);
    box-shadow: 0 2px 10px rgba(var(--accent-dark-rgb), 0.2);
    transition: transform 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonial-card-small .avatar-small,
  .theme-light .testimonial-card-large .avatar-small-mobile {
    color: var(--bg-light);
    border-color: rgba(var(--primary-light-rgb), 0.2);
    box-shadow: 0 2px 10px rgba(var(--primary-light-rgb), 0.2);
  }

  /* SAMAKAN SEMUA STARS */
  .testimonial-card-small .stars,
  .testimonial-card-large .stars-mobile {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    align-items: center;
  }

  /* SAMAKAN SEMUA REVIEW TEXT */
  .testimonial-card-small .review-text-small,
  .testimonial-card-large .review-text-mobile {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(var(--text-dark-rgb), 0.85);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonial-card-small .review-text-small,
  .theme-light .testimonial-card-large .review-text-mobile {
    color: rgba(var(--text-light-rgb), 0.85);
  }

  /* SAMAKAN SEMUA QUOTE MARK BOTTOM */
  .testimonial-card-small .quote-mark-bottom,
  .testimonial-card-large .quote-mark-bottom-mobile {
    position: absolute;
    bottom: 25px;
    right: 30px;
    font-size: 80px;
    line-height: 1;
    color: rgba(var(--accent-dark-rgb), 0.1);
    font-family: 'Cormorant Garamond', serif;
    transform: rotate(180deg);
  }

  .theme-light .testimonial-card-small .quote-mark-bottom,
  .theme-light .testimonial-card-large .quote-mark-bottom-mobile {
    color: rgba(var(--accent-light-rgb), 0.15);
  }

  /* Card large di wrapper pair juga menggunakan struktur mobile - SAMAKAN */
  .testimonials-pair-wrapper .testimonial-card-large .quote-mark-large {
    display: none;
  }

  .testimonials-pair-wrapper .testimonial-card-large .review-content-large {
    display: none;
  }

  .testimonials-pair-wrapper .testimonial-card-small .reviewer-header,
  .testimonials-pair-wrapper .testimonial-card-large .reviewer-header-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  .testimonials-pair-wrapper .testimonial-card-small .stars,
  .testimonials-pair-wrapper .testimonial-card-large .stars-mobile {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    align-items: center;
  }

  .testimonials-pair-wrapper .testimonial-card-small .review-text-small,
  .testimonials-pair-wrapper .testimonial-card-large .review-text-mobile {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(var(--text-dark-rgb), 0.85);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonials-pair-wrapper .testimonial-card-small .review-text-small,
  .theme-light .testimonials-pair-wrapper .testimonial-card-large .review-text-mobile {
    color: rgba(var(--text-light-rgb), 0.85);
  }

  .testimonials-pair-wrapper .testimonial-card-small .quote-mark-bottom,
  .testimonials-pair-wrapper .testimonial-card-large .quote-mark-bottom-mobile {
    display: block;
  }

  .review-text-small {
    font-size: 15px;
  }

  .avatar-large {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .testimonials-slider-wrapper {
    padding: 0;
  }

  .testimonial-card-small,
  .testimonial-card-large {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
    min-height: 450px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: rgba(var(--bg-dark-alt-rgb), 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(var(--bg-dark-rgb), 0.3);
    border: 1px solid rgba(var(--accent-dark-rgb), 0.15);
  }

  .theme-light .testimonial-card-small,
  .theme-light .testimonial-card-large {
    background: rgba(var(--bg-light-rgb), 0.9);
    box-shadow: 0 8px 30px rgba(var(--accent-light-rgb), 0.15);
    border-color: rgba(var(--accent-light-rgb), 0.2);
  }

  .testimonials-pair-wrapper {
    gap: 50px;
    min-width: 270%;
    margin-right: 40px;
  }

  .testimonials-pair-wrapper .testimonial-card-small,
  .testimonials-pair-wrapper .testimonial-card-large {
    flex: 0 0 50%;
    min-width: 50%;
    max-width: 50%;
    min-height: 450px;
    background: rgba(var(--bg-dark-alt-rgb), 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(var(--bg-dark-rgb), 0.3);
    border: 1px solid rgba(var(--accent-dark-rgb), 0.15);
  }

  .theme-light .testimonials-pair-wrapper .testimonial-card-small,
  .theme-light .testimonials-pair-wrapper .testimonial-card-large {
    background: rgba(var(--bg-light-rgb), 0.9);
    box-shadow: 0 8px 30px rgba(var(--accent-light-rgb), 0.15);
    border-color: rgba(var(--accent-light-rgb), 0.2);
  }

  /* Sembunyikan elemen desktop di mobile */
  .testimonial-card-large .quote-mark-large {
    display: none;
  }

  .testimonial-card-large .review-content-large {
    display: none;
  }

  /* SAMAKAN SEMUA HEADER */
  .testimonial-card-small .reviewer-header,
  .testimonial-card-large .reviewer-header-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  /* SAMAKAN SEMUA AVATAR */
  .testimonial-card-small .avatar-small,
  .testimonial-card-large .avatar-small-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(var(--accent-dark-rgb), 0.2);
    box-shadow: 0 2px 10px rgba(var(--accent-dark-rgb), 0.2);
    transition: transform 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonial-card-small .avatar-small,
  .theme-light .testimonial-card-large .avatar-small-mobile {
    color: var(--bg-light);
    border-color: rgba(var(--primary-light-rgb), 0.2);
    box-shadow: 0 2px 10px rgba(var(--primary-light-rgb), 0.2);
  }

  /* SAMAKAN SEMUA STARS */
  .testimonial-card-small .stars,
  .testimonial-card-large .stars-mobile {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    align-items: center;
  }

  /* SAMAKAN SEMUA REVIEW TEXT */
  .testimonial-card-small .review-text-small,
  .testimonial-card-large .review-text-mobile {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(var(--text-dark-rgb), 0.85);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonial-card-small .review-text-small,
  .theme-light .testimonial-card-large .review-text-mobile {
    color: rgba(var(--text-light-rgb), 0.85);
  }

  /* SAMAKAN SEMUA QUOTE MARK */
  .testimonial-card-small .quote-mark-bottom,
  .testimonial-card-large .quote-mark-bottom-mobile {
    display: block;
  }

  .testimonial-slider-btn {
    display: flex !important;
    z-index: 1000 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 480px) {
  .testimonials-slider-wrapper {
    padding: 0;
  }

  .testimonials-wrapper {
    gap: 15px;
  }

  .testimonial-card-small,
  .testimonial-card-large {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
    min-height: 500px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: rgba(var(--bg-dark-alt-rgb), 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(var(--bg-dark-rgb), 0.3);
    border: 1px solid rgba(var(--accent-dark-rgb), 0.15);
  }

  .theme-light .testimonial-card-small,
  .theme-light .testimonial-card-large {
    background: rgba(var(--bg-light-rgb), 0.9);
    box-shadow: 0 8px 30px rgba(var(--accent-light-rgb), 0.15);
    border-color: rgba(var(--accent-light-rgb), 0.2);
  }

  .testimonials-pair-wrapper {
    gap: 50px;
    min-width: 280%;
    margin-right: 40px;
  }

  .testimonials-pair-wrapper .testimonial-card-small,
  .testimonials-pair-wrapper .testimonial-card-large {
    flex: 0 0 50%;
    min-width: 50%;
    max-width: 50%;
    min-height: 500px;
    background: rgba(var(--bg-dark-alt-rgb), 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(var(--bg-dark-rgb), 0.3);
    border: 1px solid rgba(var(--accent-dark-rgb), 0.15);
  }

  .theme-light .testimonials-pair-wrapper .testimonial-card-small,
  .theme-light .testimonials-pair-wrapper .testimonial-card-large {
    background: rgba(var(--bg-light-rgb), 0.9);
    box-shadow: 0 8px 30px rgba(var(--accent-light-rgb), 0.15);
    border-color: rgba(var(--accent-light-rgb), 0.2);
  }

  /* Sembunyikan elemen desktop di mobile */
  .testimonial-card-large .quote-mark-large {
    display: none;
  }

  .testimonial-card-large .review-content-large {
    display: none;
  }

  /* SAMAKAN SEMUA HEADER */
  .testimonial-card-small .reviewer-header,
  .testimonial-card-large .reviewer-header-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  /* SAMAKAN SEMUA AVATAR */
  .testimonial-card-small .avatar-small,
  .testimonial-card-large .avatar-small-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(var(--accent-dark-rgb), 0.2);
    box-shadow: 0 2px 10px rgba(var(--accent-dark-rgb), 0.2);
    transition: transform 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonial-card-small .avatar-small,
  .theme-light .testimonial-card-large .avatar-small-mobile {
    color: var(--bg-light);
    border-color: rgba(var(--primary-light-rgb), 0.2);
    box-shadow: 0 2px 10px rgba(var(--primary-light-rgb), 0.2);
  }

  /* SAMAKAN SEMUA STARS */
  .testimonial-card-small .stars,
  .testimonial-card-large .stars-mobile {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    align-items: center;
  }

  /* SAMAKAN SEMUA REVIEW TEXT */
  .testimonial-card-small .review-text-small,
  .testimonial-card-large .review-text-mobile {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(var(--text-dark-rgb), 0.85);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
  }

  .theme-light .testimonial-card-small .review-text-small,
  .theme-light .testimonial-card-large .review-text-mobile {
    color: rgba(var(--text-light-rgb), 0.85);
  }

  /* SAMAKAN SEMUA QUOTE MARK */
  .testimonial-card-small .quote-mark-bottom,
  .testimonial-card-large .quote-mark-bottom-mobile {
    display: block;
    font-size: 60px;
    bottom: 15px;
    right: 20px;
  }

  .quote-mark-bottom {
    font-size: 60px;
    bottom: 15px;
    right: 20px;
  }

  .testimonial-slider-btn {
    display: flex !important;
    z-index: 1000 !important;
    position: absolute !important;
    pointer-events: auto !important;
  }
}
