/* ─── TESTIMONIALS & CUSTOMER REVIEWS (Reusable Component Stylesheet) ─── */

.testimonial-section {
  position: relative;
  padding: clamp(3.5rem, 4.5vw, 4.8rem) 0 3.2rem;
  background: linear-gradient(160deg, #f0f7ff 0%, #fafafa 50%, #fff8f2 100%);
  overflow: visible;
}

/* Subtle decorative dot-grid background */
.testimonial-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 26, 61, 0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Section Header ── */
.testimonial-header-wrap {
  margin-bottom: 2.5rem;
}

.testimonial-kicker {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(46, 158, 62, 0.12);
  color: #2e9e3e;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 5rem;
  margin-bottom: 0.8rem;
}

.testimonial-heading {
  font-size: var(--fluid-section-title, clamp(2.0rem, 2.2vw + 0.2rem, 2.8rem));
  font-weight: 600;
  color: var(--color-navy, #1A2B5E);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.testimonial-heading span {
  color: #055ecd;
}

/* ── Testimonials Swiper Wrapper ── */
.trev-swiper-wrap {
  position: relative;
  padding: 0;
  overflow: visible;
}

.trev-swiper {
  padding-bottom: 3.5rem !important;
  overflow: hidden !important;
}

.trev-swiper .swiper-slide {
  height: auto;
}

.trev-swiper .trev-card {
  height: 100%;
}

/* Pagination Dots */
.trev-pagination.swiper-pagination {
  bottom: 0;
}

.trev-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.trev-pagination .swiper-pagination-bullet-active {
  background: #2e9e3e;
  width: 28px;
  border-radius: 5px;
}

/* ── Prev / Next Arrow Buttons ── */
.trev-btn-prev,
.trev-btn-next {
  width: 44px !important;
  height: 44px !important;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(15, 26, 61, 0.12);
  color: #0f1a3d;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  top: 42% !important;
  z-index: 10;
  cursor: pointer;
}

.trev-btn-prev::after,
.trev-btn-next::after {
  display: none !important;
}

.trev-btn-prev i,
.trev-btn-next i {
  font-size: 1.4rem;
  line-height: 1;
}

.trev-btn-prev:hover,
.trev-btn-next:hover {
  background: #2e9e3e;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(46, 158, 62, 0.35);
}

.trev-btn-prev {
  left: -2rem !important;
}

.trev-btn-next {
  right: -2rem !important;
}

@media (max-width: 768px) {
  .trev-btn-prev,
  .trev-btn-next {
    display: none !important;
  }
}

/* ── Review Cards ── */
.trev-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2.2rem 2rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 28px rgba(15, 26, 61, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(15, 26, 61, 0.12);
  border-color: rgba(2, 132, 199, 0.25);
}

/* Big decorative opening quote */
.trev-quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: #2e9e3e;
  opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: -1.5rem;
  margin-left: -0.3rem;
  user-select: none;
}

.trev-review-text {
  font-size: 1.42rem;
  line-height: 1.75;
  color: #334155;
  flex-grow: 1;
  margin-bottom: 1.4rem;
}

.trev-trip-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  gap: 0.5rem;
  background: #f1f5f9;
  color: #0f1a3d;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
}

.trev-trip-badge i {
  color: #2e9e3e;
}

.trev-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.trev-stars {
  color: #eab308;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.trev-score {
  font-size: 1.15rem;
  font-weight: 600;
  color: #475569;
}

.trev-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin-bottom: 1.2rem;
}

/* Author row */
.trev-author {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.trev-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.trev-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: block;
}

.trev-verified-dot {
  position: absolute;
  bottom: 0;
  right: -2px;
  background: #059669;
  color: #ffffff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 2px solid #ffffff;
}

.trev-author-info {
  flex-grow: 1;
}

.trev-author-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f1a3d;
  margin-bottom: 0.2rem;
}

.trev-author-meta {
  font-size: 1.1rem;
  color: #64748b;
  display: block;
}

.trev-platform-logo {
  font-size: 1.7rem;
  flex-shrink: 0;
  opacity: 0.9;
}
