/* ============================================================
   /reviews page — written reviews grid + experience videos
   ============================================================ */

/* Page root */
.rp-root {
  min-height: 60vh;
  background: #fff;
}

/* ---- Hero ---- */
.rp-hero {
  background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
  color: #fff;
  text-align: center;
  padding: 72px 24px 60px;
}
.rp-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FBA504;
  margin: 0 0 14px;
}
.rp-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.15;
}
.rp-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.rp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.rp-hero-stat-num {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #FBA504;
  line-height: 1;
}
.rp-hero-stat-lbl {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 5px;
}
.rp-ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 7px 20px;
  font-size: 13px;
  color: #fff;
  margin-top: 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.rp-ta-badge:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ---- Tab bar ---- */
.rp-tabs-root {
  width: 100%;
}
.rp-tab-bar {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.rp-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.rp-tab:hover {
  color: #0b1a2e;
}
.rp-tab.active {
  color: #FBA504;
  border-bottom-color: #FBA504;
}
.rp-tab-icon {
  font-size: 14px;
}
.rp-tab-count {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
}

/* Tab panels — hidden by default, shown when .visible */
.rp-tab-panel {
  display: none;
}
.rp-tab-panel.visible {
  display: block;
}

/* ---- Section layout ---- */
.rp-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px 40px;
}
.rp-section-title {
  font-size: 26px;
  font-weight: 700;
  color: #0b1a2e;
  margin: 0 0 6px;
}
.rp-section-title em {
  color: #FBA504;
  font-style: normal;
}
.rp-section-sub {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 28px;
}

/* (Videos now rendered inside the tab panel — no separate section needed) */

/* ============================================================
   ReviewsGrid
   ============================================================ */

/* Filter pills */
.rg-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.rg-pill {
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.rg-pill:hover {
  border-color: #FBA504;
  color: #FBA504;
}
.rg-pill.active {
  background: #FBA504;
  border-color: #FBA504;
  color: #fff;
}
.rg-pill-count {
  opacity: 0.72;
  font-weight: 400;
}

/* Grid */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .rg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .rg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .rg-grid { grid-template-columns: 1fr; } }

/* Cards */
.rg-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.rg-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.rg-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.rg-card-link:hover {
  box-shadow: 0 6px 22px rgba(11, 26, 46, 0.12);
  transform: translateY(-2px);
  border-color: #FBA504;
}
.rg-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.rg-stars {
  color: #FBA504;
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.rg-stars-dim {
  opacity: 0.2;
}
.rg-source {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.rg-text {
  font-size: 13px;
  font-style: italic;
  color: #374151;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.rg-name {
  font-size: 12px;
  font-weight: 600;
  color: #0b1a2e;
  margin: 0;
  margin-top: auto;
}
.rg-loc {
  font-weight: 400;
  color: #94a3b8;
}

/* Pagination */
.rg-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.rg-page-btn {
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  min-width: 38px;
}
.rg-page-btn:hover:not(:disabled) {
  border-color: #FBA504;
  color: #FBA504;
}
.rg-page-btn.active {
  background: #FBA504;
  border-color: #FBA504;
  color: #fff;
}
.rg-page-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.rg-ellipsis {
  padding: 0 4px;
  color: #94a3b8;
  font-size: 14px;
}

/* ============================================================
   VideoGallery
   ============================================================ */
.vg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .vg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vg-grid { grid-template-columns: 1fr; } }

.vg-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.vg-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-2px);
}
.vg-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.vg-thumb-btn {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  display: block;
}
.vg-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.vg-thumb-btn:hover .vg-thumb {
  opacity: 0.82;
}
.vg-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  transition: background 0.2s;
}
.vg-thumb-btn:hover .vg-play {
  background: rgba(0, 0, 0, 0.38);
}
.vg-play-circle {
  width: 58px;
  height: 58px;
  background: rgba(251, 165, 4, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  padding-left: 4px; /* optical center for ▶ */
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 16px rgba(251, 165, 4, 0.4);
}
.vg-thumb-btn:hover .vg-play-circle {
  transform: scale(1.1);
  background: rgba(251, 165, 4, 1);
}
.vg-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.vg-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vg-name {
  font-size: 14px;
  font-weight: 600;
  color: #0b1a2e;
}
.vg-trip {
  font-size: 12px;
  color: #64748b;
}
