/* ══════════════════════════════════════════════════════════
   OUR CLIENTS
══════════════════════════════════════════════════════════ */
.clients-section {
  background: #ffffff;
  padding: 6rem 2.5rem 5rem;
}

.clients-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ── HEADER ──────────────────────────────────────────────── */
.clients-cards-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clients-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ── NAV BUTTONS ─────────────────────────────────────────── */
.clients-nav {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #888;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
  line-height: 1;
}

.nav-btn:hover {
  color: #111;
}

/* ── DESTINATION CARDS CAROUSEL ──────────────────────────── */
.cards-track-wrapper {
  overflow: hidden;
}

.cards-track {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
  transition: transform 0.45s ease;
}

.dest-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
  background: #e0e0e0;
  cursor: pointer;
  height: 320px;
}

.dest-card--tall {
  height: 320px;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.05);
}

.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}

.dest-card-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  max-width: 100%;
}

/* ── TESTIMONIAL CAROUSEL ────────────────────────────────── */
.testimonials-wrapper {
  border-top: 1px solid #ebebeb;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
}

.testimonials-track {
  display: flex;
  overflow: hidden;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  transition: transform 0.45s ease;
}

.testimonial-author {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 190px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.author-role {
  font-size: 0.82rem;
  color: #888;
  margin-top: 0.15rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
  font-style: normal;
}

.testimonial-nav {
  display: flex;
  gap: 0.5rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards-track-wrapper {
    overflow: auto;
  }

  .dest-card {
    flex: 0 0 calc(80% - 0.63rem);
    height: 260px;
  }

  .dest-card--tall {
    height: 260px;
  }

  .testimonial-slide {
    flex-direction: column;
    gap: 1.5rem;
  }
}
