/* ==========================================================================
   Tour Booking Page — Vision Court
   How to book a property tour: process, advantages, types, timeline, FAQ
   ========================================================================== */

/* ── Variables ─────────────────────────────────────────────────────────── */
.vc-tour-booking {
  --tbk-accent: #2563eb;
  --tbk-accent-dk: #1d4ed8;
  --tbk-accent-lt: #60a5fa;
  --tbk-navy: #0f172a;
  --tbk-navy-mid: #1e293b;
  --tbk-forest-dk: #060e1c;
  --tbk-forest: #0b1f40;
  --tbk-forest-lt: #93c5fd;
  --tbk-sky: #f0f7ff;
  --tbk-sky-mid: #dbeafe;
  --tbk-cream: #faf9f7;
  --tbk-stone: #f3efe9;
  --tbk-white: #ffffff;
  --tbk-text: #334155;
  --tbk-heading: #0f172a;
  --tbk-muted: #64748b;
  --tbk-border: #e2e8f0;
  --tbk-warm-border: #e4ddd3;
  --tbk-radius: 18px;
  --tbk-radius-sm: 10px;
  --tbk-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --tbk-shadow-blue: 0 10px 40px rgba(37, 99, 235, 0.18);
  --tbk-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tbk-dur: 0.3s;
  scroll-behavior: smooth;
}

/* ── Shared section head ───────────────────────────────────────────────── */
.vc-tbk-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.vc-tbk-section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--tbk-heading);
  line-height: 1.18;
  margin: 8px 0 18px;
}
.vc-tbk-section-head p {
  color: var(--tbk-text);
  font-size: 1.05rem;
  line-height: 1.75;
}
.vc-tbk-section-head--light h2 {
  color: #fff;
}
.vc-tbk-section-head--light p {
  color: rgba(255, 255, 255, 0.72);
}

/* ── Inline highlight gradient ─────────────────────────────────────────── */
.vc-tbk-highlight {
  background: linear-gradient(135deg, var(--tbk-accent), var(--tbk-accent-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Chapter markers ───────────────────────────────────────────────────── */
.vc-tbk-chapter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tbk-accent);
  margin-bottom: 14px;
}
.vc-tbk-chapter__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 22px;
  border: 1.5px solid var(--tbk-accent);
  border-radius: 5px;
  color: var(--tbk-accent);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  flex-shrink: 0;
}
.vc-tbk-chapter__divider {
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, var(--tbk-accent), transparent);
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.7;
}
.vc-tbk-chapter--light {
  color: rgba(255, 255, 255, 0.65);
}
.vc-tbk-chapter--light .vc-tbk-chapter__num {
  border-color: var(--tbk-accent-lt);
  color: var(--tbk-accent-lt);
}
.vc-tbk-chapter--light .vc-tbk-chapter__divider {
  background: linear-gradient(to right, var(--tbk-accent-lt), transparent);
  opacity: 0.55;
}

/* ── Pill (hero tag) ───────────────────────────────────────────────────── */
.vc-tbk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.vc-tbk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--tbk-dur) var(--tbk-ease);
  white-space: nowrap;
  cursor: pointer;
}
.vc-tbk-btn--solid {
  background: var(--tbk-accent);
  color: #fff;
  border-color: var(--tbk-accent);
}
.vc-tbk-btn--solid:hover {
  background: var(--tbk-accent-dk);
  border-color: var(--tbk-accent-dk);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.vc-tbk-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.vc-tbk-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.vc-tbk-btn--white {
  background: #fff;
  color: var(--tbk-accent);
  border-color: #fff;
}
.vc-tbk-btn--white:hover {
  background: var(--tbk-sky);
  color: var(--tbk-accent-dk);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}
.vc-tbk-btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.vc-tbk-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO — tall split: dark left panel / featured image right
   ========================================================================== */
.vc-tbk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

/* Left panel */
.vc-tbk-hero__left {
  flex: 0 0 52%;
  min-height: 100vh;
  background: var(--tbk-forest-dk);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.vc-tbk-hero__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Ccircle cx='45' cy='45' r='42' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='28' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='14' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 90px 90px;
  pointer-events: none;
}
.vc-tbk-hero__left-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 160px 64px 120px 8vw;
  max-width: 680px;
}

/* Right panel — full-bleed featured image */
.vc-tbk-hero__right {
  flex: 0 0 48%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--tbk-navy);
}
.vc-tbk-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: tbkImgZoom 14s ease-out both;
  will-change: transform;
}
@keyframes tbkImgZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
.vc-tbk-hero__right-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(6, 14, 28, 0.82) 0%,
      rgba(6, 14, 28, 0.22) 30%,
      rgba(6, 14, 28, 0) 52%
    ),
    linear-gradient(
      to top,
      rgba(6, 14, 28, 0.68) 0%,
      rgba(6, 14, 28, 0.22) 25%,
      rgba(6, 14, 28, 0) 50%
    ),
    radial-gradient(
      ellipse at 78% 12%,
      rgba(37, 99, 235, 0.26) 0%,
      transparent 55%
    );
  z-index: 1;
  pointer-events: none;
}

/* Hero type & heading */
.vc-tbk-hero__title {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.vc-tbk-hero__accent {
  background: linear-gradient(135deg, var(--tbk-accent-lt) 0%, #bfdbfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc-tbk-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin: 0 0 40px;
  max-width: 520px;
}
.vc-tbk-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Hero stats bar */
.vc-tbk-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--tbk-radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 420px;
}
.vc-tbk-hero__stat {
  flex: 1;
  text-align: center;
}
.vc-tbk-hero__stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.vc-tbk-hero__stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vc-tbk-hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Hero entrance animations */
.vc-tbk-hero__left-inner .vc-tbk-pill {
  animation: tbkFadeUp 0.7s var(--tbk-ease) 0.15s both;
}
.vc-tbk-hero__title {
  animation: tbkFadeUp 0.7s var(--tbk-ease) 0.3s both;
}
.vc-tbk-hero__lead {
  animation: tbkFadeUp 0.7s var(--tbk-ease) 0.46s both;
}
.vc-tbk-hero__ctas {
  animation: tbkFadeUp 0.7s var(--tbk-ease) 0.6s both;
}
.vc-tbk-hero__stats {
  animation: tbkFadeUp 0.7s var(--tbk-ease) 0.74s both;
}
@keyframes tbkFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   HOW TO BOOK — 3-step process
   ========================================================================== */
.vc-tbk-steps {
  padding: 112px 0;
  background: var(--tbk-cream);
}

.vc-tbk-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each step row */
.vc-tbk-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 64px;
}
.vc-tbk-step:last-child {
  padding-bottom: 0;
}

/* Numbered aside — large circle + vertical connector */
.vc-tbk-step__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
  padding-top: 4px;
}
.vc-tbk-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tbk-accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.32);
}
.vc-tbk-step__connector {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(37, 99, 235, 0.35),
    rgba(37, 99, 235, 0)
  );
  margin: 10px 0 0;
}

/* Step body — text + visual side by side */
.vc-tbk-step__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.vc-tbk-step__text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--tbk-heading);
  margin: 0 0 14px;
  line-height: 1.25;
}
.vc-tbk-step__text p {
  color: var(--tbk-text);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 20px;
}
.vc-tbk-step__tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vc-tbk-step__tips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--tbk-muted);
  line-height: 1.5;
}
.vc-tbk-step__tips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tbk-accent);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Step visual area */
.vc-tbk-step__visual {
  display: flex;
  justify-content: center;
}

/* ── Mockup: Property Listing Card (Step 1) ───────────────────────────── */
.vc-tbk-card-mockup {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
  width: 100%;
  max-width: 290px;
  border: 1px solid var(--tbk-border);
  transition:
    transform 0.4s var(--tbk-ease),
    box-shadow 0.4s var(--tbk-ease);
}
.vc-tbk-card-mockup:hover {
  transform: translateY(-6px);
  box-shadow: var(--tbk-shadow-blue);
}
.vc-tbk-card-mockup__img {
  height: 150px;
  background: linear-gradient(
    135deg,
    var(--tbk-forest) 0%,
    #1e3a6e 40%,
    var(--tbk-accent) 100%
  );
  position: relative;
}
.vc-tbk-card-mockup__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(37, 99, 235, 0.9);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.vc-tbk-card-mockup__body {
  padding: 16px 18px 20px;
}
.vc-tbk-card-mockup__title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--tbk-heading);
  margin: 0 0 6px;
  line-height: 1.3;
}
.vc-tbk-card-mockup__meta {
  font-size: 0.75rem;
  color: var(--tbk-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 14px;
}
.vc-tbk-card-mockup__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vc-tbk-card-mockup__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tbk-accent);
}
.vc-tbk-card-mockup__link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tbk-accent);
  cursor: default;
}

/* ── Mockup: Browser / Property Details Page (Step 2) ─────────────────── */
.vc-tbk-prop-mockup {
  background: #f8fafc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
  width: 100%;
  max-width: 290px;
  border: 1px solid #e2e8f0;
}
.vc-tbk-prop-mockup__bar {
  background: #e2e8f0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vc-tbk-prop-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
}
.vc-tbk-prop-mockup__dot:nth-child(1) {
  background: #ef4444;
}
.vc-tbk-prop-mockup__dot:nth-child(2) {
  background: #f59e0b;
}
.vc-tbk-prop-mockup__dot:nth-child(3) {
  background: #22c55e;
}
.vc-tbk-prop-mockup__url {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  font-size: 0.55rem;
  color: #64748b;
  padding: 4px 8px;
  font-family: monospace;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.vc-tbk-prop-mockup__layout {
  display: flex;
}
.vc-tbk-prop-mockup__main {
  flex: 1;
  padding: 10px;
}
.vc-tbk-prop-mockup__gallery {
  height: 70px;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  border-radius: 6px;
  margin-bottom: 8px;
}
.vc-tbk-prop-mockup__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vc-tbk-prop-mockup__line {
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
}
.vc-tbk-prop-mockup__line--short {
  width: 60%;
}
.vc-tbk-prop-mockup__sidebar {
  width: 100px;
  background: #fff;
  border-left: 1px solid #e2e8f0;
  padding: 10px 9px;
  flex-shrink: 0;
}
.vc-tbk-prop-mockup__price-line {
  height: 9px;
  background: linear-gradient(to right, var(--tbk-accent), transparent);
  border-radius: 4px;
  margin-bottom: 5px;
  width: 80%;
}
.vc-tbk-prop-mockup__meta-line {
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 14px;
  width: 60%;
}
.vc-tbk-prop-mockup__btn-wrap {
  position: relative;
}
.vc-tbk-prop-mockup__btn {
  background: var(--tbk-accent);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  padding: 7px 6px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}
.vc-tbk-prop-mockup__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 8px;
  border: 2px solid var(--tbk-accent);
  animation: tbkPulse 2s ease-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes tbkPulse {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}
.vc-tbk-prop-mockup__hint {
  display: block;
  font-size: 0.54rem;
  color: var(--tbk-accent);
  font-weight: 700;
  text-align: right;
  margin-top: 5px;
}

/* ── Mockup: WhatsApp Confirmation (Step 3) ───────────────────────────── */
.vc-tbk-wa-mockup {
  background: #e5ddd5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
  width: 100%;
  max-width: 290px;
}
.vc-tbk-wa-mockup__head {
  background: #075e54;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vc-tbk-wa-mockup__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
}
.vc-tbk-wa-mockup__info p {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.vc-tbk-wa-mockup__info span {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.65);
}
.vc-tbk-wa-mockup__chat {
  padding: 16px 14px 14px;
}
.vc-tbk-wa-mockup__bubble {
  background: #dcf8c6;
  border-radius: 8px 8px 0 8px;
  padding: 10px 13px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #1a1a1a;
  margin-bottom: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.vc-tbk-wa-mockup__time {
  display: block;
  text-align: right;
  font-size: 0.62rem;
  color: #8a9e9a;
}

/* ==========================================================================
   WHY BOOK — 6 advantage cards
   ========================================================================== */
.vc-tbk-why {
  padding: 112px 0;
  background: var(--tbk-white);
}
.vc-tbk-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vc-tbk-why__card {
  background: var(--tbk-white);
  border-radius: var(--tbk-radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--tbk-sky-mid);
  transition:
    transform var(--tbk-dur) var(--tbk-ease),
    box-shadow var(--tbk-dur) var(--tbk-ease);
}
.vc-tbk-why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tbk-shadow-blue);
}
/* ── Mockup shared container ──────────────────────────────────── */
.vc-tbk-why__mockup {
  width: 100%;
  height: 172px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-tbk-why__body {
  padding: 20px 22px 26px;
}
.vc-tbk-why__card h4 {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--tbk-heading);
  margin: 0 0 10px;
}
.vc-tbk-why__card p {
  color: var(--tbk-text);
  font-size: 0.91rem;
  line-height: 1.68;
  margin: 0;
}

/* ── 1. Map mockup ────────────────────────────────────────────── */
.vc-tbk-why__mockup--map {
  background: #1a2b4a;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
}
.tbk-map-pin {
  position: relative;
  z-index: 2;
  animation: tbkPinBounce 2.2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tbk-map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.55);
  opacity: 0;
  pointer-events: none;
}
.tbk-map-ring--1 {
  animation: tbkRingExpand 2.6s ease-out 0s infinite;
}
.tbk-map-ring--2 {
  animation: tbkRingExpand 2.6s ease-out 1.3s infinite;
}
.tbk-map-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(37, 99, 235, 0.85);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 13px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── 2. Verify mockup ─────────────────────────────────────────── */
.vc-tbk-why__mockup--verify {
  background: #f8fafc;
  padding: 14px 16px;
  align-items: center;
}
.tbk-verify-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.07);
}
.tbk-verify-title {
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.tbk-verify-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: #334155;
  padding: 3px 0;
  opacity: 0;
}
.tbk-verify-item--1 {
  animation: tbkVerify1 6s ease infinite;
}
.tbk-verify-item--2 {
  animation: tbkVerify2 6s ease infinite;
}
.tbk-verify-item--3 {
  animation: tbkVerify3 6s ease infinite;
}
.tbk-verify-item--4 {
  animation: tbkVerify4 6s ease infinite;
}
.tbk-check-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

/* ── 3. Team mockup ───────────────────────────────────────────── */
.vc-tbk-why__mockup--team {
  background: #f8fafc;
  flex-direction: column;
  gap: 9px;
  padding: 14px 16px;
}
.tbk-team-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.tbk-team-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.tbk-team-info {
  flex: 1;
  min-width: 0;
}
.tbk-team-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #0f172a;
}
.tbk-team-status {
  font-size: 9.5px;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.tbk-team-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: tbkDotPulse 1.6s ease-in-out infinite;
}
.tbk-team-msg {
  font-size: 10px;
  color: #475569;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
  padding: 0 2px;
  opacity: 0;
  animation: tbkTeamMsgFade 4.5s ease-in-out 0.6s infinite;
}

/* ── 4. Chat mockup ───────────────────────────────────────────── */
.vc-tbk-why__mockup--chat {
  background: #f0f4f8;
  padding: 10px 13px;
  align-items: stretch;
}
.tbk-chat-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  justify-content: flex-end;
}
.tbk-chat-msg {
  max-width: 82%;
  font-size: 9.5px;
  line-height: 1.45;
  padding: 6px 10px;
  border-radius: 10px;
  opacity: 0;
}
.tbk-chat-msg--in {
  background: #fff;
  color: #334155;
  border-bottom-left-radius: 2px;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.tbk-chat-msg--out {
  background: #2563eb;
  color: #fff;
  border-bottom-right-radius: 2px;
  align-self: flex-end;
}
.tbk-chat-anim-1 {
  animation: tbkChatMsg1 9s ease infinite;
}
.tbk-chat-anim-2 {
  animation: tbkChatMsg2 9s ease infinite;
}
.tbk-chat-anim-3 {
  animation: tbkChatMsg3 9s ease infinite;
}
.tbk-chat-typing {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 7px 11px;
  background: #fff;
  border-radius: 10px;
  border-bottom-left-radius: 2px;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  opacity: 0;
}
.tbk-chat-anim-4 {
  animation: tbkChatMsg4 9s ease infinite;
}
.tbk-chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94a3b8;
  display: block;
}
.tbk-chat-typing span:nth-child(1) {
  animation: tbkTypeDot 0.9s ease-in-out 0s infinite;
}
.tbk-chat-typing span:nth-child(2) {
  animation: tbkTypeDot 0.9s ease-in-out 0.2s infinite;
}
.tbk-chat-typing span:nth-child(3) {
  animation: tbkTypeDot 0.9s ease-in-out 0.4s infinite;
}

/* ── 5. Confirm mockup ────────────────────────────────────────── */
.vc-tbk-why__mockup--confirm {
  background: #f0f7ff;
  padding: 14px 16px;
  align-items: center;
}
.tbk-confirm-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.07);
}
.tbk-confirm-label {
  font-size: 9.5px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.tbk-confirm-bar {
  height: 7px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
.tbk-confirm-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 4px;
  animation: tbkBarFill 4s ease 0.4s infinite;
}
.tbk-confirm-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 6px;
  opacity: 0;
  animation: tbkConfirmText 4s ease 0.4s infinite;
}
.tbk-confirm-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.tbk-confirm-ref {
  font-size: 9px;
  color: #94a3b8;
  opacity: 0;
  animation: tbkConfirmText 4s ease 0.6s infinite;
}

/* ── 6. Free mockup ───────────────────────────────────────────── */
.vc-tbk-why__mockup--free {
  background: linear-gradient(135deg, #f0f7ff 0%, #eff6ff 100%);
  flex-direction: column;
  gap: 8px;
}
.tbk-free-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tbk-free-amount {
  font-size: 46px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.tbk-free-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-15deg);
  animation: tbkShine 3.2s linear 0.5s infinite;
}
.tbk-free-tag {
  font-size: 10px;
  color: #2563eb;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 20px;
  padding: 4px 14px;
  display: inline-block;
}

/* ==========================================================================
   ADVANTAGES — KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes tbkPinBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes tbkRingExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.8);
    opacity: 0;
  }
}
@keyframes tbkVerify1 {
  0%,
  5% {
    opacity: 0;
    transform: translateX(-7px);
  }
  14%,
  72% {
    opacity: 1;
    transform: translateX(0);
  }
  84%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}
@keyframes tbkVerify2 {
  0%,
  22% {
    opacity: 0;
    transform: translateX(-7px);
  }
  31%,
  72% {
    opacity: 1;
    transform: translateX(0);
  }
  84%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}
@keyframes tbkVerify3 {
  0%,
  38% {
    opacity: 0;
    transform: translateX(-7px);
  }
  47%,
  72% {
    opacity: 1;
    transform: translateX(0);
  }
  84%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}
@keyframes tbkVerify4 {
  0%,
  54% {
    opacity: 0;
    transform: translateX(-7px);
  }
  63%,
  72% {
    opacity: 1;
    transform: translateX(0);
  }
  84%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}
@keyframes tbkDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}
@keyframes tbkTeamMsgFade {
  0%,
  12% {
    opacity: 0;
    transform: translateY(5px);
  }
  28%,
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  92%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes tbkChatMsg1 {
  0%,
  6% {
    opacity: 0;
    transform: translateY(6px);
  }
  14%,
  64% {
    opacity: 1;
    transform: translateY(0);
  }
  72%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes tbkChatMsg2 {
  0%,
  22% {
    opacity: 0;
    transform: translateY(6px);
  }
  30%,
  64% {
    opacity: 1;
    transform: translateY(0);
  }
  72%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes tbkChatMsg3 {
  0%,
  38% {
    opacity: 0;
    transform: translateY(6px);
  }
  46%,
  64% {
    opacity: 1;
    transform: translateY(0);
  }
  72%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes tbkChatMsg4 {
  0%,
  52% {
    opacity: 0;
    transform: translateY(4px);
  }
  60%,
  64% {
    opacity: 1;
    transform: translateY(0);
  }
  72%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes tbkTypeDot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
@keyframes tbkBarFill {
  0%,
  5% {
    width: 0%;
  }
  55%,
  78% {
    width: 88%;
  }
  90%,
  100% {
    width: 0%;
  }
}
@keyframes tbkConfirmText {
  0%,
  52% {
    opacity: 0;
    transform: scale(0.85);
  }
  64% {
    opacity: 1;
    transform: scale(1.04);
  }
  74%,
  79% {
    opacity: 1;
    transform: scale(1);
  }
  90%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes tbkShine {
  0%,
  15% {
    left: -100%;
  }
  50%,
  100% {
    left: 200%;
  }
}

/* ==========================================================================
   TOUR TYPES — Physical vs Virtual (dark navy)
   ========================================================================== */
.vc-tbk-types {
  padding: 112px 0;
  background: var(--tbk-navy);
  position: relative;
  overflow: hidden;
}
.vc-tbk-types::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px circle at 15% 40%,
      rgba(37, 99, 235, 0.2),
      transparent 60%
    ),
    radial-gradient(
      500px circle at 85% 65%,
      rgba(96, 165, 250, 0.1),
      transparent 50%
    );
  pointer-events: none;
}
.vc-tbk-types .container {
  position: relative;
  z-index: 1;
}
.vc-tbk-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Type card */
.vc-tbk-type-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--tbk-radius);
  padding: 44px 40px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform var(--tbk-dur) var(--tbk-ease),
    background var(--tbk-dur) var(--tbk-ease),
    box-shadow var(--tbk-dur) var(--tbk-ease);
}
.vc-tbk-type-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.vc-tbk-type-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbk-accent-lt);
  margin-bottom: 22px;
}
.vc-tbk-type-card__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tbk-accent-lt);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.vc-tbk-type-card__badge--alt {
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.35);
}
.vc-tbk-type-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}
.vc-tbk-type-card > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0 0 28px;
}
.vc-tbk-type-card__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vc-tbk-type-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.vc-tbk-type-card__list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(96, 165, 250, 0.4);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393c5fd' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.vc-tbk-type-card__footer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.vc-tbk-type-card__footer span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.vc-tbk-type-card__footer svg {
  flex-shrink: 0;
}

/* ==========================================================================
   WHAT TO EXPECT — Timeline
   ========================================================================== */
.vc-tbk-expect {
  padding: 112px 0;
  background: var(--tbk-sky);
}
.vc-tbk-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vc-tbk-expect-card {
  background: var(--tbk-white);
  border-radius: var(--tbk-radius);
  border: 1px solid var(--tbk-sky-mid);
  overflow: hidden;
  transition:
    transform var(--tbk-dur) var(--tbk-ease),
    box-shadow var(--tbk-dur) var(--tbk-ease);
}
.vc-tbk-expect-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tbk-shadow-blue);
}
.vc-tbk-expect-card__head {
  background: linear-gradient(135deg, var(--tbk-navy) 0%, #1a3060 100%);
  padding: 18px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vc-tbk-expect-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vc-tbk-expect-card__num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  letter-spacing: -0.02em;
}
.vc-tbk-expect-card__time {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--tbk-accent-lt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(37, 99, 235, 0.3);
  padding: 3px 9px;
  border-radius: 12px;
  display: inline-block;
  white-space: nowrap;
}
.vc-tbk-expect-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}
.vc-tbk-expect-card__body {
  padding: 20px 22px 26px;
}
.vc-tbk-expect-card__body h4 {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--tbk-heading);
  margin: 0 0 10px;
  line-height: 1.3;
}
.vc-tbk-expect-card__body p {
  color: var(--tbk-text);
  font-size: 0.91rem;
  line-height: 1.68;
  margin: 0;
}
.vc-tbk-expect__note {
  text-align: center;
  color: var(--tbk-muted);
  font-size: 0.88rem;
  margin-top: 56px;
  font-style: italic;
}

/* ── Expect Timeline Track ───────────────────────────────────── */
.vc-tbk-expect-track {
  display: flex;
  align-items: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.vc-tbk-expect-track__node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.vc-tbk-expect-track__line {
  flex: 1;
  height: 3px;
  background: #dbeafe;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.vc-tbk-expect-track__line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--tbk-accent);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
}

/* ── Card header progress bar ────────────────────────────────── */
.vc-tbk-expect-card__head {
  position: relative;
  overflow: hidden;
}
.vc-tbk-expect-card__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 2px 0 0;
}

/* ── Timeline animation delays (18s cycle = 3s per step) ─────── */
.vc-tbk-expect-track__node--1 {
  animation: tbkExpNodeGlow 18s ease-in-out 0s infinite;
}
.vc-tbk-expect-track__node--2 {
  animation: tbkExpNodeGlow 18s ease-in-out -15s infinite;
}
.vc-tbk-expect-track__node--3 {
  animation: tbkExpNodeGlow 18s ease-in-out -12s infinite;
}
.vc-tbk-expect-track__node--4 {
  animation: tbkExpNodeGlow 18s ease-in-out -9s infinite;
}
.vc-tbk-expect-track__node--5 {
  animation: tbkExpNodeGlow 18s ease-in-out -6s infinite;
}
.vc-tbk-expect-track__node--6 {
  animation: tbkExpNodeGlow 18s ease-in-out -3s infinite;
}

.vc-tbk-expect-track__line--1::after {
  animation: tbkExpLine1 18s linear 0s infinite;
}
.vc-tbk-expect-track__line--2::after {
  animation: tbkExpLine2 18s linear 0s infinite;
}
.vc-tbk-expect-track__line--3::after {
  animation: tbkExpLine3 18s linear 0s infinite;
}
.vc-tbk-expect-track__line--4::after {
  animation: tbkExpLine4 18s linear 0s infinite;
}
.vc-tbk-expect-track__line--5::after {
  animation: tbkExpLine5 18s linear 0s infinite;
}

.vc-tbk-expect-card--1 {
  animation: tbkExpCardRing 18s ease-in-out 0s infinite;
}
.vc-tbk-expect-card--2 {
  animation: tbkExpCardRing 18s ease-in-out -15s infinite;
}
.vc-tbk-expect-card--3 {
  animation: tbkExpCardRing 18s ease-in-out -12s infinite;
}
.vc-tbk-expect-card--4 {
  animation: tbkExpCardRing 18s ease-in-out -9s infinite;
}
.vc-tbk-expect-card--5 {
  animation: tbkExpCardRing 18s ease-in-out -6s infinite;
}
.vc-tbk-expect-card--6 {
  animation: tbkExpCardRing 18s ease-in-out -3s infinite;
}

.vc-tbk-expect-card--1 .vc-tbk-expect-card__head::after {
  animation: tbkExpHeadBar 18s ease-in-out 0s infinite;
}
.vc-tbk-expect-card--2 .vc-tbk-expect-card__head::after {
  animation: tbkExpHeadBar 18s ease-in-out -15s infinite;
}
.vc-tbk-expect-card--3 .vc-tbk-expect-card__head::after {
  animation: tbkExpHeadBar 18s ease-in-out -12s infinite;
}
.vc-tbk-expect-card--4 .vc-tbk-expect-card__head::after {
  animation: tbkExpHeadBar 18s ease-in-out -9s infinite;
}
.vc-tbk-expect-card--5 .vc-tbk-expect-card__head::after {
  animation: tbkExpHeadBar 18s ease-in-out -6s infinite;
}
.vc-tbk-expect-card--6 .vc-tbk-expect-card__head::after {
  animation: tbkExpHeadBar 18s ease-in-out -3s infinite;
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes tbkExpNodeGlow {
  /* Active: 0–16.67% (3s), then fade and stay inactive */
  0% {
    background: var(--tbk-accent);
    color: #fff;
    transform: scale(1.18);
    box-shadow:
      0 0 0 5px rgba(37, 99, 235, 0.22),
      0 0 0 9px rgba(37, 99, 235, 0.09);
  }
  14% {
    background: var(--tbk-accent);
    color: #fff;
    transform: scale(1.18);
    box-shadow:
      0 0 0 5px rgba(37, 99, 235, 0.22),
      0 0 0 9px rgba(37, 99, 235, 0.09);
  }
  19% {
    background: #e2e8f0;
    color: #94a3b8;
    transform: scale(1);
    box-shadow: none;
  }
  100% {
    background: #e2e8f0;
    color: #94a3b8;
    transform: scale(1);
    box-shadow: none;
  }
}
@keyframes tbkExpCardRing {
  0% {
    box-shadow:
      0 0 0 3px rgba(37, 99, 235, 0.6),
      0 12px 40px rgba(37, 99, 235, 0.2);
  }
  14% {
    box-shadow:
      0 0 0 3px rgba(37, 99, 235, 0.6),
      0 12px 40px rgba(37, 99, 235, 0.2);
  }
  19% {
    box-shadow: none;
  }
  100% {
    box-shadow: none;
  }
}
@keyframes tbkExpHeadBar {
  0% {
    width: 0%;
    opacity: 1;
  }
  14% {
    width: 100%;
    opacity: 1;
  }
  16.67% {
    width: 100%;
    opacity: 1;
  }
  19% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 0%;
    opacity: 0;
  }
}
/* Lines fill progressively during their corresponding step, then stay filled */
@keyframes tbkExpLine1 {
  0% {
    transform: scaleX(0);
  }
  16.67% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes tbkExpLine2 {
  0%,
  16.67% {
    transform: scaleX(0);
  }
  33.33% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes tbkExpLine3 {
  0%,
  33.33% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes tbkExpLine4 {
  0%,
  50% {
    transform: scaleX(0);
  }
  66.67% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes tbkExpLine5 {
  0%,
  66.67% {
    transform: scaleX(0);
  }
  83.33% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}

/* ==========================================================================
   FAQ — 2-column grid
   ========================================================================== */
.vc-tbk-faq {
  padding: 112px 0;
  background: var(--tbk-white);
}
.vc-tbk-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.vc-tbk-faq__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--tbk-sky);
  border: 1px solid var(--tbk-sky-mid);
  border-radius: 16px;
  padding: 28px 28px 28px;
  transition:
    transform var(--tbk-dur) var(--tbk-ease),
    box-shadow var(--tbk-dur) var(--tbk-ease);
}
.vc-tbk-faq__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--tbk-shadow-blue);
  background: var(--tbk-white);
}
.vc-tbk-faq__q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tbk-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
  font-style: italic;
  margin-top: 2px;
}
.vc-tbk-faq__item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tbk-heading);
  margin: 0 0 8px;
  line-height: 1.3;
}
.vc-tbk-faq__item p {
  color: var(--tbk-text);
  font-size: 0.9rem;
  line-height: 1.68;
  margin: 0;
}

/* ==========================================================================
   CTA — book now
   ========================================================================== */
.vc-tbk-cta {
  padding: 112px 0;
  background: linear-gradient(
    160deg,
    var(--tbk-accent) 0%,
    var(--tbk-accent-dk) 50%,
    var(--tbk-navy) 100%
  );
  position: relative;
  overflow: hidden;
}
.vc-tbk-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px circle at 20% 50%,
      rgba(255, 255, 255, 0.08),
      transparent 50%
    ),
    radial-gradient(
      400px circle at 80% 80%,
      rgba(96, 165, 250, 0.12),
      transparent 40%
    );
  pointer-events: none;
}
.vc-tbk-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.vc-tbk-cta__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.vc-tbk-cta__inner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
}
.vc-tbk-cta__inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin: 0 0 40px;
}
.vc-tbk-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.tbk-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--tbk-ease),
    transform 0.65s var(--tbk-ease);
}
.tbk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tbk-reveal--delay-1 {
  transition-delay: 0.08s;
}
.tbk-reveal--delay-2 {
  transition-delay: 0.18s;
}
.tbk-reveal--delay-3 {
  transition-delay: 0.28s;
}
.tbk-reveal--delay-4 {
  transition-delay: 0.38s;
}
.tbk-reveal--delay-5 {
  transition-delay: 0.48s;
}
.tbk-reveal--delay-6 {
  transition-delay: 0.58s;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .vc-tbk-hero__left {
    flex: 0 0 56%;
  }
  .vc-tbk-hero__right {
    flex: 0 0 44%;
  }
  .vc-tbk-hero__left-inner {
    padding: 140px 40px 100px 6vw;
  }

  .vc-tbk-step__body {
    grid-template-columns: 1fr 240px;
    gap: 28px;
  }
  .vc-tbk-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vc-tbk-types__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .vc-tbk-faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vc-tbk-hero {
    flex-direction: column;
    min-height: auto;
  }
  .vc-tbk-hero__right {
    flex: 0 0 auto;
    height: 45vw;
    min-height: 260px;
    max-height: 400px;
    width: 100%;
  }
  .vc-tbk-hero__right .vc-tbk-hero__right-fade {
    background: linear-gradient(
      to top,
      rgba(6, 14, 28, 0.7) 0%,
      rgba(6, 14, 28, 0) 60%
    );
  }
  .vc-tbk-hero__left {
    flex: 1 1 auto;
    width: 100%;
  }
  .vc-tbk-hero__left-inner {
    padding: 120px 24px 60px;
    max-width: 100%;
  }
  .vc-tbk-hero__stats {
    max-width: 100%;
  }
  .vc-tbk-hero__lead {
    max-width: 100%;
  }

  .vc-tbk-steps,
  .vc-tbk-why,
  .vc-tbk-types,
  .vc-tbk-expect,
  .vc-tbk-faq,
  .vc-tbk-cta {
    padding: 72px 0;
  }

  .vc-tbk-step {
    flex-direction: column;
    gap: 16px;
  }
  .vc-tbk-step__aside {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 12px;
  }
  .vc-tbk-step__connector {
    width: 60px;
    height: 2px;
    min-height: auto;
    margin: 0;
    background: linear-gradient(
      to right,
      rgba(37, 99, 235, 0.35),
      rgba(37, 99, 235, 0)
    );
  }
  .vc-tbk-step__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .vc-tbk-step__visual {
    justify-content: flex-start;
  }
  .vc-tbk-card-mockup,
  .vc-tbk-prop-mockup,
  .vc-tbk-wa-mockup {
    max-width: 320px;
  }

  .vc-tbk-why__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .vc-tbk-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* ── Expect track (768px) ── */
  .vc-tbk-expect-track {
    max-width: 480px;
    margin-bottom: 40px;
  }
  .vc-tbk-expect-track__node {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .vc-tbk-type-card {
    padding: 32px 28px 28px;
  }
}

@media (max-width: 576px) {
  .vc-tbk-hero__right {
    height: 56vw;
    min-height: 220px;
  }
  .vc-tbk-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
  }
  .vc-tbk-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .vc-tbk-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vc-tbk-section-head {
    margin-bottom: 44px;
  }
  /* ── Expect track ── */
  .vc-tbk-expect-track {
    display: none;
  }

  .vc-tbk-expect-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  /* ── Container ── */
  .vc-tour-booking .container,
  .vc-tbk-steps .container,
  .vc-tbk-why .container,
  .vc-tbk-types .container,
  .vc-tbk-expect .container,
  .vc-tbk-faq .container,
  .vc-tbk-cta .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* ── Hero ── */
  .vc-tbk-hero__right {
    height: 60vw;
    min-height: 200px;
  }
  .vc-tbk-hero__left-inner {
    padding: 110px 14px 48px;
  }
  .vc-tbk-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    letter-spacing: -0.01em;
  }
  .vc-tbk-hero__lead {
    font-size: 0.9rem;
  }
  .vc-tbk-pill {
    font-size: 0.72rem;
    padding: 6px 14px;
  }
  .vc-tbk-hero__stats {
    gap: 16px;
  }
  .vc-tbk-hero__stat-val {
    font-size: 1.5rem;
  }
  .vc-tbk-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .vc-tbk-btn {
    font-size: 0.85rem;
    padding: 12px 18px;
    justify-content: center;
  }

  /* ── Section headings ── */
  .vc-tbk-section-head {
    margin-bottom: 32px;
  }
  .vc-tbk-section-head h2 {
    font-size: clamp(1.5rem, 8.5vw, 1.9rem);
  }
  .vc-tbk-section-head p {
    font-size: 0.9rem;
  }

  /* ── Steps section ── */
  .vc-tbk-steps,
  .vc-tbk-why,
  .vc-tbk-types,
  .vc-tbk-expect,
  .vc-tbk-faq,
  .vc-tbk-cta {
    padding: 56px 0;
  }
  .vc-tbk-step__num {
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
  }
  .vc-tbk-step__title {
    font-size: 1.1rem;
  }
  .vc-tbk-step__body {
    gap: 20px;
  }
  .vc-tbk-card-mockup,
  .vc-tbk-prop-mockup,
  .vc-tbk-wa-mockup {
    max-width: 100%;
  }

  /* ── Why choose us ── */
  .vc-tbk-why__mockup {
    height: 150px;
  }
  .vc-tbk-why__body {
    padding: 16px 16px 20px;
  }
  .vc-tbk-why__title {
    font-size: 1rem;
  }

  /* ── Tour types ── */
  .vc-tbk-type-card {
    padding: 24px 18px 20px;
  }
  .vc-tbk-type-card__title {
    font-size: 1.1rem;
  }
  .vc-tbk-type-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* ── What to expect ── */
  .vc-tbk-expect-card__head {
    padding: 14px 16px 12px;
  }
  .vc-tbk-expect-card__body {
    padding: 16px 16px 20px;
  }
  .vc-tbk-expect-card__body h4 {
    font-size: 0.9rem;
  }
  .vc-tbk-expect-card__body p {
    font-size: 0.83rem;
  }
  .vc-tbk-expect-card__num {
    font-size: 1.5rem;
  }

  /* ── FAQ ── */
  .vc-tbk-faq__q {
    font-size: 0.88rem;
    padding: 14px 16px;
  }
  .vc-tbk-faq__a {
    padding: 0 16px 14px;
    font-size: 0.85rem;
  }

  /* ── CTA ── */
  .vc-tbk-cta__title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .vc-tbk-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .vc-tbk-hero__left-inner .vc-tbk-pill,
  .vc-tbk-hero__title,
  .vc-tbk-hero__lead,
  .vc-tbk-hero__ctas,
  .vc-tbk-hero__stats {
    animation: none;
  }
  .vc-tbk-hero__img {
    animation: none;
  }
  .vc-tbk-prop-mockup__pulse {
    animation: none;
  }
  .vc-tbk-expect-track__node,
  .vc-tbk-expect-track__line::after,
  [class*="vc-tbk-expect-card--"],
  [class*="vc-tbk-expect-card--"] .vc-tbk-expect-card__head::after {
    animation: none !important;
  }
  .tbk-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
