/* ============================================================
   testimonials.css — styles specific to testimonials.html
   ============================================================ */

/* ── Page hero ──────────────────────────────────────────────── */
.t-hero {
  padding: 40px 0 40px;
  background: linear-gradient(160deg, var(--beige) 0%, var(--pink-light) 50%, var(--white) 100%);
  text-align: center;
}
.t-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
}
.t-hero-sub {
  font-size: 18px;
  color: var(--mid);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.72;
}
.t-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.google-cta { gap: 10px; }

/* ── Rating strip ───────────────────────────────────────────── */
.rating-strip {
  background: var(--teal);
  padding: 28px 0;
}
.rating-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.rating-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars {
  display: flex;
  gap: 3px;
  color: #FFD700;
}
.stars svg { width: 20px; height: 20px; }
.rating-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.rating-label {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.rating-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ── Testimonials grid ──────────────────────────────────────── */
.testimonials {
  padding: 80px 0;
  background: var(--beige);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.t-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--pink-light) 100%);
  border: 1.5px solid var(--pink);
}

.t-quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--pink);
  margin-bottom: 20px;
  user-select: none;
}

.t-card blockquote {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.t-card--featured blockquote {
  font-size: 17px;
  color: var(--dark);
}

.t-read-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-style: normal;
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.t-read-more:hover { opacity: 0.72; }

.t-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.t-trip {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
}
.t-stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
  margin-left: auto;
  flex-shrink: 0;
}
.t-stars svg { width: 14px; height: 14px; }

/* ── Google CTA banner ──────────────────────────────────────── */
.google-banner {
  padding: 80px 0;
  background: var(--dark);
}
.google-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.google-banner-text h2 {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 12px;
}
.google-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  line-height: 1.7;
}
.google-banner-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  gap: 10px;
}
.btn-white:hover {
  background: var(--beige);
  border-color: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .t-grid { grid-template-columns: 1fr 1fr; }
  .t-card--featured { grid-column: span 2; }
}

@media (max-width: 600px) {
  .t-hero { padding: 120px 0 60px; }
  .t-grid { grid-template-columns: 1fr; }
  .t-card--featured { grid-column: span 1; }
  .rating-strip-inner { gap: 24px; }
  .rating-divider { display: none; }
  .google-banner-inner { flex-direction: column; text-align: center; }
  .google-banner-btns { justify-content: center; }
  .google-banner-text p { margin: 0 auto; }
}
