/* =========================================================================
   The Blue Paradise — site styles
   Built on top of ../colors_and_type.css
   ========================================================================= */
@import url('../colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #fff; }
body { font-family: var(--font-sans); color: var(--fg); overflow-x: hidden; }

img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* =========================================================================
   UTILITY BAR — top thin language strip
   ========================================================================= */
.tbp-utility {
  background: var(--slate-950);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
}
.tbp-utility a { color: rgba(255,255,255,0.85); text-decoration: none; }
.tbp-lang { display: flex; gap: 4px; align-items: center; }
.tbp-lang button {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 0; padding: 4px 10px; font-size: 12px; font-weight: 600;
  cursor: pointer; border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tbp-lang button.is-active { color: #fff; background: rgba(255,255,255,0.10); }
.tbp-lang button:hover { color: #fff; }

/* =========================================================================
   HEADER — transparent over hero, solid on inner pages
   ========================================================================= */
.tbp-header {
  position: absolute;
  top: 32px;
  left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
  transition: background var(--dur-base) var(--ease-out);
}
.tbp-header--solid {
  position: sticky;
  top: 0;
  background: rgba(8, 17, 28, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 40px;
}
.tbp-header__logo { height: 60px; }
.tbp-header--solid .tbp-header__logo { height: 48px; }
.tbp-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.tbp-header__nav a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color var(--dur-fast) var(--ease-out);
}
.tbp-header__nav a:hover, .tbp-header__nav a.is-active { color: #fff; }
.tbp-header__nav a.is-active { text-shadow: 0 1px 0 rgba(0,0,0,0.3); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.tbp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 14px 30px;
  cursor: pointer;
  text-decoration: none;
  transition: filter var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  line-height: 1;
  white-space: nowrap;
}
.tbp-btn:hover { filter: brightness(1.06); }
.tbp-btn:active { transform: translateY(1px); filter: brightness(0.95); }
.tbp-btn--primary { background: var(--blue-700); color: #fff; box-shadow: var(--shadow-cta); }
.tbp-btn--accent  { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-cta-orange); }
.tbp-btn--whats   { background: #25D366; color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,0.38); }
.tbp-btn--light   { background: #fff; color: var(--blue-800); box-shadow: var(--shadow-sm); }
.tbp-btn--outline { background: transparent; color: #fff; border: 1.5px solid currentColor; padding: 12px 26px; }
.tbp-btn--outline-blue { background: transparent; color: var(--blue-800); border: 1.5px solid currentColor; padding: 12px 26px; }
.tbp-btn--lg      { font-size: 17px; padding: 18px 36px; }

/* =========================================================================
   HERO (homepage)
   ========================================================================= */
.tbp-hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.tbp-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.78);
}
.tbp-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(7,37,74,0.15) 0%, rgba(7,37,74,0.55) 100%);
}
.tbp-hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 1040px;
  padding: 0 32px;
}
.tbp-hero__step {
  font-family: var(--font-brush);
  color: var(--aqua-300);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.tbp-hero__step::before, .tbp-hero__step::after {
  content: '';
  display: inline-block;
  width: 64px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.tbp-hero__title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(7,37,74,0.55);
}
.tbp-hero__title em {
  font-style: normal;
  font-family: var(--font-brush);
  font-weight: 400;
  color: var(--aqua-300);
  display: inline-block;
  transform: rotate(-2deg);
}
.tbp-hero__lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
.tbp-hero__ctas { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.tbp-hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.tbp-hero__scroll::after {
  content: ''; width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
}

/* =========================================================================
   SECTIONS — generic
   ========================================================================= */
.tbp-section { padding: 96px 40px; }
.tbp-section--aqua  { background: var(--aqua-500); color: #fff; }
.tbp-section--dark  { background: var(--slate-900); color: #fff; }
.tbp-section--soft  { background: var(--slate-50); }
.tbp-section--white { background: #fff; }
.tbp-container { max-width: 1240px; margin: 0 auto; }
.tbp-section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}
.tbp-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.tbp-section__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 780px;
  text-wrap: balance;
}
.tbp-section__title em {
  font-style: normal;
  font-family: var(--font-brush);
  font-weight: 400;
  color: var(--orange-500);
  transform: rotate(-2deg);
  display: inline-block;
  padding: 0 4px;
}
.tbp-section--aqua .tbp-eyebrow { color: #fff; opacity: 0.8; }
.tbp-section--aqua .tbp-section__title em { color: #fff; }
.tbp-section--dark .tbp-section__title em { color: var(--aqua-300); }
.tbp-section__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0;
}
.tbp-section--aqua .tbp-section__lead,
.tbp-section--dark .tbp-section__lead { color: rgba(255,255,255,0.82); }

/* =========================================================================
   DOCUMENTATION TEASER
   ========================================================================= */
.tbp-doc {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-700) 100%);
  color: #fff;
  padding: 88px 40px;
  overflow: hidden;
}
.tbp-doc::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(123, 222, 246, 0.18), transparent 40%),
    radial-gradient(circle at 88% 90%, rgba(243, 154, 62, 0.16), transparent 40%);
  pointer-events: none;
}
.tbp-doc__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tbp-doc__title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.tbp-doc__lead { margin-top: 16px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.tbp-doc__cta { margin-top: 32px; }
.tbp-doc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tbp-doc__item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(4px);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tbp-doc__item svg { width: 24px; height: 24px; stroke: var(--aqua-300); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.tbp-doc__item-title { font-size: 15px; font-weight: 700; line-height: 1.2; }
.tbp-doc__item-body { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* =========================================================================
   BENEFITS — 7 colored cards
   ========================================================================= */
.tbp-benefits {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.tbp-benefit {
  grid-column: span 4;
  position: relative;
  border-radius: 24px;
  padding: 36px 30px 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.tbp-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tbp-benefit__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-brush);
  font-size: 56px;
  line-height: 1;
  opacity: 0.42;
}
.tbp-benefit__kw {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}
.tbp-benefit__title { font-size: 22px; font-weight: 800; line-height: 1.15; margin-top: 6px; }
.tbp-benefit__body { font-size: 14px; line-height: 1.6; margin-top: 14px; opacity: 0.88; }
.tbp-benefit__shape {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 110px; height: 110px;
  opacity: 0.12;
  pointer-events: none;
}
/* big "7" wide tile on the top */
.tbp-benefit--seven {
  grid-column: span 4;
  background: #fff;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tbp-benefit--seven .tbp-benefit__seven {
  font-family: var(--font-brush);
  font-size: 220px;
  line-height: 0.8;
  color: var(--blue-800);
  margin-bottom: 8px;
}
.tbp-benefit--seven .tbp-benefit__seven-body {
  font-size: 15px; line-height: 1.5; max-width: 220px;
  color: var(--fg-muted); font-weight: 500;
}

/* =========================================================================
   TOP 7 TOURS — horizontal band
   ========================================================================= */
.tbp-top7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  min-height: 340px;
}
.tbp-top7__tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--blue-900);
}
.tbp-top7__tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.tbp-top7__tile:hover img { transform: scale(1.08); }
.tbp-top7__tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,37,74,0.10) 30%, rgba(7,37,74,0.78) 100%);
}
.tbp-top7__rank {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.8;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.tbp-top7__label {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  z-index: 2;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

/* =========================================================================
   TOURS PAGE — listing
   ========================================================================= */
.tbp-tours-hero {
  position: relative;
  padding: 140px 40px 56px;
  background: linear-gradient(180deg, rgba(7,37,74,0.55), rgba(22,190,234,0.85)), center/cover;
  color: #fff;
  text-align: center;
}
.tbp-tours-hero__title { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.05; }
.tbp-tours-hero__lead { font-size: 16px; line-height: 1.65; opacity: 0.92; max-width: 580px; margin: 18px auto 0; }

.tbp-filters {
  background: #fff;
  padding: 24px 40px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
}
.tbp-filters__inner { max-width: 1240px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; padding-bottom: 16px; }
.tbp-filters__row { display: flex; gap: 8px; flex-wrap: wrap; }
.tbp-filters__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-subtle);
}
.tbp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--slate-100);
  color: var(--fg);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.tbp-chip:hover { background: var(--slate-200); }
.tbp-chip.is-active { background: var(--blue-800); color: #fff; }
.tbp-chip__dot { width: 8px; height: 8px; border-radius: 999px; background: currentColor; opacity: 0.8; }

.tbp-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 56px 40px 96px;
  max-width: 1240px;
  margin: 0 auto;
}
.tbp-tour-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(7,37,74,0.08);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.tbp-tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tbp-tour-card__photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tbp-tour-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.tbp-tour-card:hover .tbp-tour-card__photo img { transform: scale(1.05); }
.tbp-tour-card__seal {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: 4px;
}
.tbp-seal {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  color: var(--blue-900);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}
.tbp-seal__dot { width: 6px; height: 6px; border-radius: 999px; margin-right: 6px; }
.tbp-tour-card__dur {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(7,37,74,0.75);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.tbp-tour-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tbp-tour-card__name { font-size: 19px; font-weight: 800; line-height: 1.2; letter-spacing: -0.005em; }
.tbp-tour-card__impact { font-size: 13px; line-height: 1.5; color: var(--fg-muted); flex: 1; }
.tbp-tour-card__cta { color: var(--blue-700); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.06em; }

/* =========================================================================
   TOUR DETAIL
   ========================================================================= */
.tbp-tour-detail__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  padding-top: 100px; /* clear of header */
}
.tbp-tour-detail__gallery > div { background-size: cover; background-position: center; }
.tbp-tour-detail__gallery > div:nth-child(1) { grid-row: span 2; }

.tbp-tour-detail__main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 40px 96px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
}
.tbp-tour-detail__breadcrumb { font-size: 12px; color: var(--fg-subtle); margin-bottom: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.tbp-tour-detail__breadcrumb a { color: var(--fg-subtle); text-decoration: none; }
.tbp-tour-detail__breadcrumb a:hover { color: var(--blue-700); }
.tbp-tour-detail__seals { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.tbp-tour-detail__title { font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.05; margin: 0 0 24px; letter-spacing: -0.015em; }
.tbp-tour-detail__impact {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  background: linear-gradient(120deg, var(--blue-400) 0%, var(--blue-900) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 36px;
  text-wrap: balance;
}

.tbp-tour-detail h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 36px 0 18px;
  letter-spacing: -0.005em;
}
.tbp-wavelist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tbp-wavelist li {
  position: relative;
  padding-left: 38px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
}
.tbp-wavelist li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 24px; height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 8'><path d='M1 4 Q4 0, 7 4 T13 4 T19 4 T25 4' fill='none' stroke='%231C63B8' stroke-width='1.6' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
}
.tbp-wavelist--exclude li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 8'><path d='M1 4 Q4 0, 7 4 T13 4 T19 4 T25 4' fill='none' stroke='%23DD5C49' stroke-width='1.6' stroke-linecap='round'/></svg>");
}

.tbp-callout {
  background: var(--aqua-100);
  border-radius: 20px;
  padding: 28px 30px;
  margin-top: 28px;
  position: relative;
}
.tbp-callout--gold {
  background: linear-gradient(135deg, rgba(243,154,62,0.10) 0%, rgba(243,154,62,0.04) 100%);
  border: 1px solid rgba(243,154,62,0.30);
}
.tbp-callout__icon {
  position: absolute; top: -18px; left: 24px;
  width: 44px; height: 44px;
  background: var(--aqua-500);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  box-shadow: var(--shadow-md);
}
.tbp-callout--gold .tbp-callout__icon { background: var(--orange-500); }
.tbp-callout__title { font-size: 16px; font-weight: 800; margin: 0 0 12px; color: var(--blue-900); letter-spacing: -0.005em; }
.tbp-callout--gold .tbp-callout__title { color: var(--orange-600); }
.tbp-callout ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tbp-callout li { font-size: 14px; line-height: 1.55; color: var(--fg-muted); padding-left: 22px; position: relative; }
.tbp-callout li::before { content: '·'; position: absolute; left: 4px; top: -6px; font-size: 28px; line-height: 1; color: var(--blue-700); }
.tbp-callout--gold li::before { color: var(--orange-500); }

.tbp-tour-detail__side {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--slate-50);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tbp-tour-detail__side h4 { font-size: 14px; font-weight: 800; margin: 0; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-subtle); }
.tbp-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tbp-meta { background: #fff; padding: 14px; border-radius: 12px; }
.tbp-meta__k { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-subtle); }
.tbp-meta__v { font-size: 15px; font-weight: 700; color: var(--blue-900); margin-top: 4px; }

/* =========================================================================
   FEEDBACK / TESTIMONIALS
   ========================================================================= */
.tbp-feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tbp-feedback {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tbp-feedback__video {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.tbp-feedback__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 36px rgba(0,0,0,0.32);
  transition: transform var(--dur-base) var(--ease-out);
}
.tbp-feedback__video:hover .tbp-feedback__play { transform: translate(-50%, -50%) scale(1.08); }
.tbp-feedback__play::after {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid var(--blue-800);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.tbp-feedback__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,37,74,0) 50%, rgba(7,37,74,0.55) 100%);
}
.tbp-feedback__tour {
  position: absolute; bottom: 16px; left: 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff;
}
.tbp-feedback__body { padding: 28px 30px 32px; }
.tbp-feedback__quote {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--fg);
}
.tbp-feedback__quote::before { content: '“'; font-family: var(--font-brush); color: var(--aqua-500); font-size: 50px; line-height: 0; vertical-align: -22px; margin-right: 6px; }
.tbp-feedback__attrib { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.tbp-feedback__avatar { width: 44px; height: 44px; border-radius: 999px; background-size: cover; background-position: center; }
.tbp-feedback__name { font-size: 14px; font-weight: 700; }
.tbp-feedback__trip { font-size: 12px; color: var(--fg-subtle); margin-top: 2px; }

/* =========================================================================
   PORTFOLIO CAPTURE
   ========================================================================= */
.tbp-portfolio {
  background:
    linear-gradient(135deg, rgba(11,53,115,0.92), rgba(7,37,74,0.92)),
    center/cover;
  color: #fff;
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
}
.tbp-portfolio__deco {
  position: absolute; top: -40px; right: -40px;
  font-family: var(--font-brush);
  font-size: 360px;
  line-height: 0.8;
  color: rgba(123,222,246,0.18);
  pointer-events: none;
}
.tbp-portfolio__inner { max-width: 1240px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.tbp-portfolio__discount {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-500); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
}
.tbp-portfolio h2 { font-size: clamp(32px, 3.4vw, 44px); line-height: 1.1; margin: 0; letter-spacing: -0.015em; font-weight: 800; }
.tbp-portfolio p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-top: 18px; }
.tbp-portfolio__form { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; padding: 32px; display: flex; flex-direction: column; gap: 14px; backdrop-filter: blur(6px); }
.tbp-input {
  display: flex; flex-direction: column; gap: 6px;
}
.tbp-input label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.tbp-input input, .tbp-input select, .tbp-input textarea {
  font-family: var(--font-sans); font-size: 15px;
  background: rgba(255,255,255,0.10); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 14px 18px;
  outline: none;
  transition: all var(--dur-fast) var(--ease-out);
}
.tbp-input input::placeholder, .tbp-input textarea::placeholder { color: rgba(255,255,255,0.45); }
.tbp-input input:focus, .tbp-input select:focus, .tbp-input textarea:focus { border-color: var(--aqua-300); background: rgba(255,255,255,0.15); }

/* =========================================================================
   FAQ
   ========================================================================= */
.tbp-faq { display: flex; flex-direction: column; gap: 12px; max-width: 920px; margin: 0 auto; }
.tbp-faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.tbp-faq__item.is-open { box-shadow: var(--shadow-md); }
.tbp-faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  color: var(--fg);
}
.tbp-faq__num {
  font-family: var(--font-brush);
  color: var(--blue-700);
  font-size: 32px;
  line-height: 0.8;
  width: 28px;
  flex-shrink: 0;
}
.tbp-faq__plus {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--blue-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}
.tbp-faq__item.is-open .tbp-faq__plus { transform: rotate(45deg); }
.tbp-faq__a {
  padding: 0 28px 24px 74px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* =========================================================================
   CONTACT CARD / TAGGO
   ========================================================================= */
.tbp-contact-card {
  background: #0F1A2B;
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}
.tbp-contact-card__title { font-size: clamp(28px, 3vw, 38px); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.tbp-contact-card__lead { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.78); margin-top: 18px; }
.tbp-contact-card__actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.tbp-taggo {
  background:
    linear-gradient(135deg, #1A1A1A 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 24px;
  aspect-ratio: 5 / 7;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.tbp-taggo::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(123,222,246,0.18), transparent 60%);
  pointer-events: none;
}
.tbp-taggo__logo { height: 36px; opacity: 0.94; position: relative; }
.tbp-taggo__qr {
  background: #fff;
  border-radius: 12px;
  aspect-ratio: 1;
  width: 100%;
  position: relative;
}
.tbp-taggo__qr svg { width: 100%; height: 100%; }
.tbp-taggo__footer { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.7); position: relative; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.tbp-footer { background: #050C18; color: rgba(255,255,255,0.72); padding: 80px 40px 32px; }
.tbp-footer__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
.tbp-footer__logo { height: 92px; margin-bottom: 24px; }
.tbp-footer__intro { font-size: 14px; line-height: 1.7; max-width: 300px; }
.tbp-footer__heading { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.tbp-footer__list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.tbp-footer__list a { color: rgba(255,255,255,0.78); text-decoration: none; }
.tbp-footer__list a:hover { color: #fff; }
.tbp-footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.tbp-footer__socials { display: flex; gap: 10px; }
.tbp-footer__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--dur-fast) var(--ease-out);
}
.tbp-footer__socials a:hover { background: var(--blue-700); color: #fff; }
.tbp-footer__socials svg { width: 16px; height: 16px; }

/* =========================================================================
   WHATSAPP FLOATING WIDGET + FAKE CHAT
   ========================================================================= */
.tbp-wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37,211,102,0.42);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.tbp-wa-fab:hover { transform: scale(1.06); }
.tbp-wa-fab svg { width: 32px; height: 32px; }
.tbp-wa-fab__pulse {
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(37,211,102,0.45);
  animation: tbp-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes tbp-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.tbp-wa-chat {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 99;
  width: 360px;
  height: 540px;
  background: #ECE5DD;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-base) var(--ease-out);
}
.tbp-wa-chat.is-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.tbp-wa-chat__header {
  background: #075E54;
  color: #fff;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.tbp-wa-chat__avatar { width: 40px; height: 40px; border-radius: 999px; background: var(--blue-800); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tbp-wa-chat__avatar img { width: 100%; height: 100%; object-fit: cover; }
.tbp-wa-chat__title { font-size: 15px; font-weight: 600; }
.tbp-wa-chat__status { font-size: 11px; opacity: 0.85; }
.tbp-wa-chat__close { margin-left: auto; background: transparent; border: 0; color: #fff; font-size: 20px; cursor: pointer; padding: 4px 8px; }
.tbp-wa-chat__body {
  flex: 1;
  padding: 16px 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.04)),
    repeating-radial-gradient(circle at 10% 20%, rgba(0,0,0,0.015) 0 2px, transparent 2px 60px);
}
.tbp-wa-msg {
  max-width: 78%;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 12px 18px;
  border-radius: 8px;
  position: relative;
  word-wrap: break-word;
}
.tbp-wa-msg__time { position: absolute; bottom: 4px; right: 10px; font-size: 10px; color: rgba(0,0,0,0.45); }
.tbp-wa-msg--in  { background: #fff; align-self: flex-start; border-top-left-radius: 0; box-shadow: 0 1px 1px rgba(0,0,0,0.08); }
.tbp-wa-msg--out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 0; box-shadow: 0 1px 1px rgba(0,0,0,0.08); }
.tbp-wa-typing {
  align-self: flex-start;
  background: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  border-top-left-radius: 0;
  display: flex; gap: 4px;
}
.tbp-wa-typing span { width: 6px; height: 6px; border-radius: 999px; background: rgba(0,0,0,0.3); animation: tbp-bounce 1.2s ease-in-out infinite; }
.tbp-wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.tbp-wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tbp-bounce { 0%,80%,100% { opacity: 0.3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
.tbp-wa-chat__footer {
  background: #F0F0F0;
  padding: 10px 12px;
  display: flex; gap: 8px;
  align-items: center;
}
.tbp-wa-chat__footer input {
  flex: 1; border: 0; padding: 10px 16px; border-radius: 999px;
  background: #fff; font-size: 14px;
  font-family: inherit;
}
.tbp-wa-chat__send {
  width: 40px; height: 40px; border-radius: 999px; border: 0; background: #25D366;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* =========================================================================
   DOCUMENTATION PAGE
   ========================================================================= */
.tbp-doc-page__hero {
  position: relative;
  padding: 160px 40px 80px;
  background:
    linear-gradient(180deg, rgba(7,37,74,0.45), rgba(11,53,115,0.85)),
    center/cover;
  color: #fff;
  text-align: center;
}
.tbp-doc-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.tbp-doc-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(7,37,74,0.06);
  border: 1px solid var(--border);
}
.tbp-doc-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--blue-50, var(--aqua-100));
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-800);
  flex-shrink: 0;
}
.tbp-doc-card__icon svg { width: 28px; height: 28px; stroke-width: 2; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.tbp-doc-card h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; letter-spacing: -0.005em; }
.tbp-doc-card p { font-size: 14px; line-height: 1.6; color: var(--fg-muted); margin: 0; }
.tbp-doc-card__note { font-size: 12px; color: var(--orange-600); font-weight: 700; margin-top: 10px; }

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */
.tbp-about-hero {
  position: relative;
  padding: 160px 40px 80px;
  background:
    linear-gradient(180deg, rgba(7,37,74,0.45), rgba(22,190,234,0.75)),
    center/cover;
  color: #fff;
  text-align: center;
}
.tbp-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.tbp-team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.tbp-team-card__photo {
  width: 180px; height: 180px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
  box-shadow: 0 10px 30px rgba(7,37,74,0.16);
}
.tbp-team-card__name { font-size: 17px; font-weight: 800; line-height: 1.2; }
.tbp-team-card__role { font-size: 13px; color: var(--fg-muted); }

/* =========================================================================
   BLOG
   ========================================================================= */
.tbp-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tbp-blog-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(7,37,74,0.08);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-base) var(--ease-out);
}
.tbp-blog-card:hover { transform: translateY(-4px); }
.tbp-blog-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.tbp-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.tbp-blog-card:hover .tbp-blog-card__img img { transform: scale(1.05); }
.tbp-blog-card__body { padding: 22px 24px 26px; }
.tbp-blog-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-500); }
.tbp-blog-card__title { font-size: 18px; font-weight: 800; line-height: 1.25; margin: 8px 0 10px; letter-spacing: -0.005em; }
.tbp-blog-card__excerpt { font-size: 13px; line-height: 1.55; color: var(--fg-muted); }
.tbp-blog-card__meta { font-size: 11px; color: var(--fg-subtle); margin-top: 16px; display: flex; gap: 16px; }

.tbp-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 40px 96px;
}
.tbp-post__cat { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-500); }
.tbp-post__title { font-size: clamp(34px, 4vw, 50px); font-weight: 800; line-height: 1.08; letter-spacing: -0.015em; margin: 12px 0 20px; }
.tbp-post__meta { font-size: 13px; color: var(--fg-subtle); display: flex; gap: 16px; margin-bottom: 36px; }
.tbp-post__hero { aspect-ratio: 16 / 9; border-radius: var(--radius-card); overflow: hidden; margin-bottom: 36px; }
.tbp-post__hero img { width: 100%; height: 100%; object-fit: cover; }
.tbp-post__body { font-size: 17px; line-height: 1.75; color: var(--fg); }
.tbp-post__body p { margin: 0 0 22px; }
.tbp-post__body h2 { font-size: 26px; font-weight: 800; margin: 36px 0 16px; line-height: 1.2; letter-spacing: -0.01em; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.tbp-contact-page {
  padding: 140px 40px 96px;
  background: var(--slate-50);
  min-height: 80vh;
}
.tbp-contact-page__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.tbp-contact-channels { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.tbp-channel {
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex; gap: 16px; align-items: center;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all var(--dur-fast) var(--ease-out);
}
.tbp-channel:hover { transform: translateX(4px); border-color: var(--blue-400); }
.tbp-channel__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--aqua-100); color: var(--blue-800); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tbp-channel__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tbp-channel__k { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-subtle); }
.tbp-channel__v { font-size: 15px; font-weight: 700; color: var(--blue-900); margin-top: 2px; }

.tbp-contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 14px;
}
.tbp-contact-form .tbp-input label { color: var(--fg-subtle); }
.tbp-contact-form .tbp-input input,
.tbp-contact-form .tbp-input select,
.tbp-contact-form .tbp-input textarea {
  background: var(--slate-50);
  color: var(--fg);
  border: 1px solid var(--border);
}
.tbp-contact-form .tbp-input input:focus,
.tbp-contact-form .tbp-input textarea:focus,
.tbp-contact-form .tbp-input select:focus {
  border-color: var(--blue-700);
  background: #fff;
}
.tbp-contact-form textarea { min-height: 110px; resize: vertical; font-family: inherit; }

/* =========================================================================
   RESPONSIVE — quick adjustments
   ========================================================================= */
@media (max-width: 1100px) {
  .tbp-benefits, .tbp-top7 { grid-template-columns: repeat(2, 1fr); }
  .tbp-benefit, .tbp-benefit--seven { grid-column: span 1; }
  .tbp-tour-grid, .tbp-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .tbp-doc__inner, .tbp-portfolio__inner { grid-template-columns: 1fr; }
  .tbp-team-grid { grid-template-columns: repeat(2, 1fr); }
  .tbp-tour-detail__main { grid-template-columns: 1fr; }
  .tbp-contact-card { grid-template-columns: 1fr; }
  .tbp-feedback-grid { grid-template-columns: 1fr; }
  .tbp-contact-page__grid { grid-template-columns: 1fr; }
  .tbp-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .tbp-section { padding: 64px 24px; }
  .tbp-tour-grid, .tbp-blog-grid, .tbp-tour-detail__gallery { grid-template-columns: 1fr; }
  .tbp-benefits, .tbp-top7, .tbp-team-grid { grid-template-columns: 1fr; }
  .tbp-tour-detail__gallery { grid-template-rows: 220px; }
  .tbp-tour-detail__gallery > div:nth-child(1) { grid-row: auto; }
  .tbp-header { padding: 8px 20px; }
  .tbp-header__nav { gap: 16px; }
  .tbp-footer { padding: 56px 20px 28px; }
  .tbp-footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
