/* ==========================================================================
   tour.css â€" Virtual Tours Showcase page (tour.html)
   ─────────────────────────────────────────────────────────────────────────────
   Section 1: .tour-show â€" intro head (left: h2, right: body + CTA) + 4-card grid
   Section 2: Reuses .wu-contact / .wu-form from why-us-page.css (no styles here)
   ============================================================================ */

.tour-show {
  background: #f3f5f8; /* light cool gray per Figma */
  /* Top padding clears the fixed header (--nav-height) + extra breathing room */
  padding: calc(var(--nav-height, 88px) + 64px) 0 80px;
}

/* Intro: 2-col head (heading left, body+CTA right) */
.tour-show__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.tour-show__h2 {
  font-family: var(--font-family);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--clr-text-1, #0f172a);
  text-transform: uppercase;
  margin: 12px 0 0 0;
}
.tour-show__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-text-3, #64748b);
  margin: 0 0 22px 0;
  max-width: 460px;
}

/* 2x2 grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Tour card */
.tcard {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 12px 32px -16px rgba(15,23,42,0.12);
  display: flex;
  flex-direction: column;
}
.tcard__media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  /* default fallback gradient (overridden per modifier) */
  background: linear-gradient(135deg, #e6f7f5 0%, #eef1ff 100%);
}
.tcard__label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.92);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}
.tcard__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0f172a;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px; /* optical centring of the play triangle */
  transition: transform 200ms ease, background 200ms ease;
}
.tcard__play:hover { transform: scale(1.06); background: #1e293b; }
.tcard__runtime {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-family: var(--font-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--clr-text-1, #0f172a);
}
.tcard__body {
  padding: 22px 24px 26px;
}
.tcard__title {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--clr-text-1, #0f172a);
  margin: 0 0 10px 0;
}
.tcard__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-text-3, #64748b);
  margin: 0;
}

/* Per-card gradient backgrounds + label colors (matches Figma palette) */
.tcard--teal .tcard__media {
  background: linear-gradient(135deg, #dffaf3 0%, #eaf1ff 70%, #eef1f5 100%);
}
.tcard--teal .tcard__label { color: #0d9488; }

.tcard--lime .tcard__media {
  background: linear-gradient(135deg, #f1fae0 0%, #eef9e7 60%, #eef2f7 100%);
}
.tcard--lime .tcard__label { color: #2563eb; }

.tcard--blue .tcard__media {
  background: linear-gradient(135deg, #e2ecff 0%, #e9f7f0 60%, #def4e6 100%);
}
.tcard--blue .tcard__label { color: #2563eb; }

.tcard--purple .tcard__media {
  background: linear-gradient(135deg, #efe7fb 0%, #eee9fa 60%, #e7ebfa 100%);
}
.tcard--purple .tcard__label { color: #7c3aed; }

/* ==========================================================================
   Mobile
   ========================================================================== */
@media (max-width: 880px) {
  .tour-show { padding: calc(var(--nav-height, 88px) + 32px) 0 56px; }
  .tour-show__head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 32px;
  }
  .tour-show__body { max-width: none; }
  .tour-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .tour-show__h2 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }
  .tcard__title { font-size: 16px; }
  .tcard__body { padding: 18px 18px 22px; }
  /* Mobile solid CTA for the hero BOOK A CALL */
  .tour-show .wu-btn--teal {
    background: var(--clr-primary, #0d9488);
    color: #ffffff;
    border-color: var(--clr-primary, #0d9488);
  }
}
