:root {
  --bg: #f2f6f7;
  --panel: #ffffff;
  --ink: #10202f;
  --muted: #637487;
  --line: #d8e5eb;
  --navy: #0a2638;
  --teal: #027d85;
  --teal-2: #0b9aa3;
  --mint: #dff4ef;
  --coral: #ef6a45;
  --gold: #c9962d;
  --shadow: 0 22px 60px rgba(13, 36, 54, .14);
  --soft: 0 12px 34px rgba(13, 36, 54, .09);
  --radius: 8px;
}

@font-face {
  font-family: GilmerLocal;
  src: url("/fonts/Gilmer%20Regular.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfdfe 0, #eef7f8 360px, var(--bg) 100%);
  font-family: GilmerLocal, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,45,70,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11,45,70,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.tk-page {
  position: relative;
  min-height: 100vh;
  padding-bottom: 64px;
}

.tk-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.tk-topline {
  background: linear-gradient(90deg, var(--navy), #103f56);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.tk-topline .tk-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  gap: 16px;
  text-align: center;
}

.tk-topline span:first-child {
  max-width: 980px;
}

.tk-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(16,32,47,.08);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 10px 30px rgba(13,36,54,.06);
}

.tk-nav .tk-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.tk-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 900;
  color: var(--navy);
}

.tk-brand-text {
  gap: 0;
  color: #fff;
  font-family: var(--yacho-sans, var(--sans));
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.tk-brand-name {
  display: inline-block;
}

.tk-brand-name > span {
  font-weight: 800;
  opacity: .92;
}

.tk-brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  font-size: 15px;
}

.tk-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tk-nav-links a,
.tk-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
}

.tk-nav-links a:hover,
.tk-pill:hover {
  color: var(--teal);
  background: var(--mint);
}

.tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(2,125,133,.22);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tk-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(2,125,133,.26);
}

.tk-btn.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--soft);
}

.tk-hero {
  padding: 28px 0 30px;
}

.tk-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(120deg, rgba(10,38,56,.96), rgba(2,125,133,.68));
  box-shadow: var(--shadow);
}

.tk-hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  filter: saturate(1.05) contrast(1.02);
}

.tk-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,38,56,.9) 0%, rgba(10,38,56,.58) 42%, rgba(10,38,56,.18) 100%),
    linear-gradient(180deg, transparent 55%, rgba(10,38,56,.45) 100%);
}

.tk-hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  padding: 58px;
}

.tk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #e6fbf7;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.tk-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  max-width: 780px;
  line-height: 1;
  letter-spacing: 0;
}

.tk-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  line-height: 1.55;
}

.tk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tk-search-shell {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.2fr) auto;
  gap: 10px;
  margin-top: -26px;
  padding: 12px;
  border: 1px solid rgba(16,32,47,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 2;
}

.tk-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #f7fbfd;
}

.tk-field label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.tk-field strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tk-section {
  padding: 32px 0;
}

.tk-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.tk-section-head h2,
.tk-list-title h1,
.tk-detail-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.tk-section-head p,
.tk-list-title p,
.tk-detail-title p {
  margin: 8px 0 0;
  color: var(--muted);
}

.tk-detail-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.tk-detail-code span,
.tk-boat-code {
  color: var(--teal);
  border-color: rgba(7, 165, 168, .28) !important;
  background: rgba(7, 165, 168, .1) !important;
  font-weight: 950;
  letter-spacing: .08em;
}

.tk-detail-code span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(7, 165, 168, .28);
  border-radius: 999px;
}

.tk-detail-code small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.tk-filter-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 14px;
  cursor: grab;
  user-select: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tk-filter-row::-webkit-scrollbar {
  display: none;
}

.tk-filter-row.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.tk-filter-row a {
  -webkit-user-drag: none;
}

.tk-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--muted);
  font-weight: 850;
}

.tk-chip.active {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.tk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tk-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(16,32,47,.09);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--soft);
  min-width: 0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tk-card-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.tk-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8,124,131,.28);
  box-shadow: var(--shadow);
}

.tk-card-media {
  position: relative;
  z-index: 4;
  aspect-ratio: 4 / 3;
  background: #dce8ed;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.tk-card-media.is-dragging {
  cursor: grabbing;
}

.tk-card-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .28s ease;
  will-change: transform;
}

.tk-card-gallery-track img {
  flex: 0 0 100%;
  min-width: 100%;
}

.tk-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .18s ease, background .18s ease;
}

.tk-gallery-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.tk-gallery-btn::after {
  display: none;
}

.tk-gallery-prev {
  left: 10px;
}

.tk-gallery-prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.tk-gallery-next {
  right: 10px;
}

.tk-gallery-next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.tk-card:hover .tk-gallery-btn,
.tk-gallery-btn:focus-visible {
  opacity: 1;
}

.tk-gallery-btn:hover {
  background: #fff;
}

.tk-gallery-btn:active {
  transform: translateY(-50%);
}

.tk-gallery-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  pointer-events: none;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(4,18,32,.62);
  font-size: 12px;
  font-weight: 900;
}

.tk-image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(8,124,131,.16), rgba(11,45,70,.12)),
    #eef6f8;
  font-weight: 900;
}

.tk-card-media img,
.tk-detail-gallery img,
.tk-spot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .24s ease;
}

.tk-card:hover .tk-card-media img {
  transform: scale(1.035);
}

.tk-card:hover .tk-card-gallery-track img {
  transform: none;
}

.tk-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 4;
  pointer-events: none;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.tk-card-body {
  position: relative;
  z-index: 3;
  pointer-events: none;
  display: grid;
  min-height: 220px;
  padding: 16px;
}

.tk-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.tk-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fbfd;
}

.tk-card h3 {
  margin: 0;
  min-height: 48px;
  font-size: 18px;
  line-height: 1.25;
}

.tk-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tk-card-specs span {
  min-height: 30px;
  padding: 6px 9px;
  border-radius: var(--radius);
  color: #254158;
  background: #eef7f8;
  font-size: 12px;
  font-weight: 850;
}

.tk-card-desc {
  min-height: 48px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.tk-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.tk-card-actions {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 116px;
}

.tk-card-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(8,124,131,.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(33, 211, 102, .98), rgba(26, 184, 91, .98));
  color: #fff;
  box-shadow: 0 10px 20px rgba(33, 211, 102, .18);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: .6px;
  text-align: center;
  text-transform: uppercase;
}

.tk-card-call:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.tk-price {
  color: var(--coral);
  font-size: 21px;
  font-weight: 950;
}

.tk-price small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.tk-price .tk-card-hourly-price {
  margin-top: 4px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.tk-price .tk-card-hourly-note {
  margin-top: 2px;
  color: #7f8fa3;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.2;
}

.tk-list-hero {
  padding: 28px 0 16px;
}

.tk-list-panel {
  padding: 26px;
  border: 1px solid rgba(8,124,131,.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(223,244,239,.75));
  box-shadow: var(--soft);
}

.tk-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.tk-results-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.tk-filter-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
  border: 1px solid rgba(16,32,47,.09);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: var(--soft);
}

.tk-filter-panel h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.tk-filter-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.tk-results-main {
  min-width: 0;
}

.tk-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
}

.tk-results-head strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.tk-results-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.tk-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tk-stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
}

.tk-stat strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.tk-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.tk-detail-head {
  padding: 30px 0 20px;
}

.tk-detail-head-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(16,32,47,.09);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: var(--soft);
}

.tk-detail-actions {
  display: flex;
  gap: 10px;
  align-items: start;
}

.tk-detail-gallery {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr;
  gap: 12px;
  margin-top: 18px;
}

.tk-detail-gallery a {
  overflow: hidden;
  min-height: 230px;
  border-radius: var(--radius);
  background: #dce8ed;
}

.tk-detail-gallery a:first-child {
  grid-row: span 2;
  min-height: 472px;
}

.tk-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.tk-trust-strip div {
  padding: 14px;
  border: 1px solid rgba(16,32,47,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  box-shadow: var(--soft);
}

.tk-trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
}

.tk-trust-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.tk-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.tk-panel {
  padding: 22px;
  border: 1px solid rgba(16,32,47,.09);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: var(--soft);
}

.tk-panel + .tk-panel {
  margin-top: 16px;
}

.tk-panel h2,
.tk-panel h3 {
  margin: 0 0 14px;
}

.tk-props {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tk-prop {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.tk-prop span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.tk-prop strong {
  display: block;
  margin-top: 4px;
}

.tk-booking {
  position: sticky;
  top: 96px;
}

.tk-booking .tk-price {
  font-size: 30px;
}

.tk-booking-card {
  overflow: visible;
}

.tk-contact-booking {
  display: grid;
  gap: 16px;
}

.tk-contact-booking h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.tk-booking-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  background: #eef5f7;
}

.tk-booking-mode button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tk-booking-mode button.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(5, 38, 73, .18);
}

.tk-booking-mode-panel[hidden],
[data-mode-panel][hidden] {
  display: none !important;
}

.tk-contact-code {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f7fbfd;
}

.tk-contact-code span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tk-contact-code strong {
  color: var(--teal);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: .08em;
}

.tk-hourly-min-note {
  padding: 12px 14px;
  border: 1px solid rgba(8, 124, 131, .22);
  background: rgba(8, 124, 131, .08);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.booking-card-prices {
  margin-bottom: 14px;
}

.current-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.current-prices > span {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
}

.select-menu {
  position: relative;
  display: block;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.select-menu select {
  width: 100%;
  min-height: 58px;
  padding: 0 44px 0 18px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.select-menu i {
  position: absolute;
  right: 18px;
  top: 23px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--navy);
  transform: rotate(45deg);
  pointer-events: none;
}

.booking-card-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.booking-card-dates-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 78px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 15px 42px 15px 18px;
  cursor: pointer;
}

.booking-card-dates-item + .booking-card-dates-item {
  border-left: 1px solid var(--line);
}

.booking-card-dates-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
}

.booking-card-dates-item input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
  cursor: pointer;
}

.booking-card-dates-item select {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
  cursor: pointer;
  appearance: none;
}

.tk-hourly-range {
  margin: 0;
}

.tk-hourly-total-line {
  margin-top: -4px;
}

.date-display,
.times-trigger {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  color: var(--navy);
  font: inherit;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.times-trigger {
  position: relative;
  z-index: 1;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
}

.tk-native-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.travel-details-item.hourly .top {
  display: block;
}

.times-picker,
.times-desc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
}

.times-picker {
  position: absolute;
  left: 10px;
  right: 10px;
  top: calc(100% + 8px);
  z-index: 30;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.travel-details-item.hourly.is-open .times-picker {
  display: grid;
}

.travel-details-item.hourly.is-open {
  z-index: 35;
}

.times-picker b,
.times-desc b {
  color: var(--muted);
  font-weight: 800;
}

.times-picker select,
.times-desc select {
  min-width: 0;
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  outline: 0;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
}

.booking-card-dates-item i {
  position: absolute;
  right: 18px;
  bottom: 21px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--navy);
  transform: rotate(45deg);
  pointer-events: none;
}

.tk-booking-control-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tk-booking-control-row .tk-field {
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.tk-booking-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.tk-booking-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.availability {
  margin: 2px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.tk-payment-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.booking-card-bottom {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.booking-card-bottom-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #334254;
  font-size: 14px;
  line-height: 1.4;
}

.booking-card-bottom-item:last-child {
  border-bottom: 0;
}

.booking-card-bottom-item p {
  margin: 0;
}

.booking-card-bottom-item p:last-child {
  color: var(--navy);
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.booking-card-bottom-item .bold {
  color: var(--navy);
  font-weight: 900;
}

.booking-card-bottom-item .bold span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.tk-richtext {
  color: #334254;
  line-height: 1.65;
}

.tk-richtext p {
  margin: 0 0 12px;
}

.tk-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tk-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.tk-spot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.tk-spot-card {
  overflow: hidden;
  min-height: 180px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  box-shadow: var(--soft);
}

.tk-spot-card figure {
  position: relative;
  height: 100%;
  min-height: 180px;
  margin: 0;
}

.tk-spot-card img {
  position: absolute;
  inset: 0;
  opacity: .68;
}

.tk-spot-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-weight: 900;
}

.tk-empty {
  padding: 44px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  color: var(--muted);
  text-align: center;
}

.tk-text-page {
  max-width: 920px;
  margin: 0 auto;
  color: #334254;
  font-size: 16px;
  line-height: 1.75;
}

.tk-text-page p {
  margin: 0 0 16px;
}

.tk-panel-admin {
  display: grid;
  gap: 22px;
}

.tk-panel-admin-head,
.tk-panel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tk-panel-admin-head h2 {
  margin: 4px 0 0;
}

.tk-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tk-panel-field {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.tk-panel-field-wide {
  grid-column: 1 / -1;
}

.tk-panel-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.tk-panel-field input,
.tk-panel-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0;
}

.tk-panel-field textarea[name="headCode"] {
  min-height: 210px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
}

.tk-panel-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.tk-panel-tabs-section {
  padding-bottom: 0;
}

.tk-panel-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.tk-panel-tabs button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-weight: 950;
  letter-spacing: .8px;
  cursor: pointer;
}

.tk-panel-tabs button.active {
  border-color: rgba(32,199,203,.42);
  background: linear-gradient(135deg, rgba(32,199,203,.92), rgba(8,124,131,.92));
  color: #fff;
}

.tk-panel-price-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.tk-price-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(16,32,47,.1);
}

.tk-price-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #fff;
}

.tk-price-table th,
.tk-price-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(16,32,47,.08);
  text-align: left;
  vertical-align: middle;
}

.tk-price-table th {
  color: #8797aa;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.tk-price-table td strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.tk-price-table td span {
  display: block;
  margin-top: 4px;
  color: #8293a7;
  font-size: 12px;
  font-weight: 800;
}

.tk-price-table code {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid rgba(8,124,131,.2);
  background: rgba(32,199,203,.1);
  color: var(--teal);
  font-weight: 950;
  letter-spacing: 1px;
}

.tk-price-table input {
  width: 150px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(16,32,47,.16);
  background: #f8fbfd;
  color: var(--navy);
  font-weight: 900;
}

.tk-link-grid,
.tk-faq-list {
  display: grid;
  gap: 14px;
}

.tk-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tk-link-grid .tk-panel {
  margin: 0;
  transition: transform .18s ease, box-shadow .18s ease;
}

.tk-link-grid .tk-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tk-link-grid h2 {
  margin: 0 0 8px;
}

.tk-link-grid p,
.tk-faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tk-faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.tk-faq-list details[open] summary {
  margin-bottom: 12px;
}

.tk-footer {
  margin-top: 42px;
  padding: 46px 0 28px;
  color: rgba(255,255,255,.82);
  background: var(--navy);
}

.tk-footer .tk-brand {
  color: #fff;
}

.tk-footer p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.tk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.tk-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.tk-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tk-footer a {
  color: rgba(255,255,255,.76);
  font-weight: 750;
}

.tk-footer a:hover {
  color: #fff;
}

.tk-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 750;
}

.tk-bottom-nav {
  display: none;
}

@media (max-width: 980px) {
  .tk-nav-links {
    display: none;
  }

  .tk-search-shell,
  .tk-detail-layout,
  .tk-detail-head-panel {
    grid-template-columns: 1fr;
  }

  .tk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tk-detail-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .tk-detail-gallery a:first-child {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .tk-props,
  .tk-stat-row,
  .tk-spot-grid,
  .tk-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tk-booking {
    position: static;
  }
}

@media (max-width: 640px) {
  .tk-container {
    width: min(100% - 24px, 1240px);
  }

  .tk-page {
    padding-bottom: 84px;
  }

  .tk-nav .tk-container {
    min-height: 64px;
  }

  .tk-brand {
    font-size: 20px;
  }

  .tk-hero-content {
    padding: 30px 22px;
  }

  .tk-hero-panel {
    min-height: 420px;
  }

  .tk-search-shell {
    margin-top: -18px;
  }

  .tk-grid,
  .tk-props,
  .tk-stat-row,
  .tk-spot-grid,
  .tk-detail-gallery,
  .tk-link-grid,
  .tk-footer-grid {
    grid-template-columns: 1fr;
  }

  .tk-detail-gallery a,
  .tk-detail-gallery a:first-child {
    min-height: 240px;
  }

  .tk-card h3 {
    min-height: 0;
  }

  .tk-card-desc {
    min-height: 0;
  }

  .tk-footer-bottom {
    display: grid;
  }

  .tk-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--navy);
    color: rgba(255,255,255,.72);
    box-shadow: 0 -12px 34px rgba(14,39,62,.2);
  }

  .tk-bottom-nav a {
    display: grid;
    place-items: center;
    min-height: 64px;
    font-size: 12px;
    font-weight: 850;
  }
}
/* ==========================================================================
   TekneKirala — Modern Enhancements (2025)
   Bu dosya offline-app.css'den SONRA yüklenmelidir.
   Mevcut tasarımı korur; üzerine animasyon, mikro-interaction,
   scroll efektleri, dark mode ve 3D perspektif ekler.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables — Dark Mode + Extended Palette
   -------------------------------------------------------------------------- */
:root {
  --tk-accent-glow: rgba(8, 124, 131, 0.35);
  --tk-coral-glow: rgba(242, 111, 77, 0.35);
  --tk-gold-glow: rgba(213, 163, 61, 0.35);
  --tk-anim-duration: 0.55s;
  --tk-anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tk-radius-lg: 16px;
  --tk-radius-xl: 24px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b141c;
    --panel: #111d28;
    --ink: #e8f0f5;
    --muted: #8a9db0;
    --line: #1e2f3d;
    --navy: #081520;
    --teal: #0a9ea5;
    --teal-2: #0dc5c7;
    --mint: #0a3a3a;
    --coral: #ff8a6b;
    --gold: #e8b84d;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
    --soft: 0 10px 28px rgba(0, 0, 0, 0.22);
    --tk-accent-glow: rgba(10, 158, 165, 0.45);
    --tk-coral-glow: rgba(255, 138, 107, 0.45);
  }

  html, body {
    background: linear-gradient(180deg, #0d1821 0, #0b141c 420px, var(--bg) 100%);
  }

  body::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  }

  .tk-image-placeholder {
    background:
      linear-gradient(135deg, rgba(10, 158, 165, 0.2), rgba(11, 45, 70, 0.25)),
      #0b141c !important;
  }
}

/* --------------------------------------------------------------------------
   2. Reduced Motion (Accessibility)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   3. Noise Texture Overlay (film grain)
   -------------------------------------------------------------------------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --------------------------------------------------------------------------
   4. Hero — Mesh Gradient + Floating Badges
   -------------------------------------------------------------------------- */
.tk-hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--tk-radius-xl);
  box-shadow:
    var(--shadow),
    0 0 80px rgba(8, 124, 131, 0.15);
}

.tk-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(8, 124, 131, 0.55), transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(11, 45, 70, 0.65), transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(213, 163, 61, 0.18), transparent 50%),
    linear-gradient(135deg, rgba(11, 45, 70, 0.92), rgba(8, 124, 131, 0.75));
  animation: mesh-shift 12s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%;
  }
  100% {
    background-position: 100% 100%, 0% 100%, 100% 0%, 0% 0%;
  }
}

.tk-hero-panel img {
  opacity: 0.35;
  transition: transform 8s ease, opacity 0.6s ease;
  will-change: transform;
}

.tk-hero-panel:hover img {
  transform: scale(1.05);
}

.tk-hero-content {
  z-index: 2;
  padding: 64px 56px;
}

.tk-eyebrow {
  position: relative;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.08em;
  font-size: 12px;
}

.tk-title {
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* Floating badge in hero */
.tk-hero-panel .tk-badge-float {
  position: absolute;
  z-index: 3;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: float-y 6s ease-in-out infinite;
}

.tk-badge-float:nth-child(1) { top: 18%; right: 12%; animation-delay: 0s; }
.tk-badge-float:nth-child(2) { bottom: 22%; right: 18%; animation-delay: -2s; }
.tk-badge-float:nth-child(3) { top: 32%; right: 28%; animation-delay: -4s; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --------------------------------------------------------------------------
   5. Search Bar — Floating + Focus Glow
   -------------------------------------------------------------------------- */
.tk-search-shell {
  border-radius: var(--tk-radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    var(--shadow),
    0 0 0 0 rgba(8, 124, 131, 0);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  will-change: box-shadow, transform;
}

.tk-search-shell:focus-within,
.tk-search-shell:hover {
  box-shadow:
    var(--shadow),
    0 0 0 4px var(--tk-accent-glow);
  transform: translateY(-2px);
}

.tk-field {
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.tk-field:hover {
  background: #fff;
  border-color: rgba(8, 124, 131, 0.35);
}

.tk-field:focus-within {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--tk-accent-glow);
}

/* --------------------------------------------------------------------------
   6. Scroll-Triggered Animations
   -------------------------------------------------------------------------- */
.tk-animate-in {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity var(--tk-anim-duration) var(--tk-anim-ease),
    transform var(--tk-anim-duration) var(--tk-anim-ease);
  will-change: opacity, transform;
}

.tk-animate-in.tk-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tk-animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity calc(var(--tk-anim-duration) * 1.2) var(--tk-anim-ease),
    transform calc(var(--tk-anim-duration) * 1.2) var(--tk-anim-ease);
  will-change: opacity, transform;
}

.tk-animate-up.tk-visible {
  opacity: 1;
  transform: translateY(0);
}

.tk-animate-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity var(--tk-anim-duration) var(--tk-anim-ease),
    transform var(--tk-anim-duration) var(--tk-anim-ease);
  will-change: opacity, transform;
}

.tk-animate-scale.tk-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grids */
.tk-grid .tk-animate-in:nth-child(1) { transition-delay: 0s; }
.tk-grid .tk-animate-in:nth-child(2) { transition-delay: 0.06s; }
.tk-grid .tk-animate-in:nth-child(3) { transition-delay: 0.12s; }
.tk-grid .tk-animate-in:nth-child(4) { transition-delay: 0.18s; }
.tk-grid .tk-animate-in:nth-child(5) { transition-delay: 0.24s; }
.tk-grid .tk-animate-in:nth-child(6) { transition-delay: 0.30s; }

.tk-spot-grid .tk-animate-scale:nth-child(1) { transition-delay: 0s; }
.tk-spot-grid .tk-animate-scale:nth-child(2) { transition-delay: 0.07s; }
.tk-spot-grid .tk-animate-scale:nth-child(3) { transition-delay: 0.14s; }
.tk-spot-grid .tk-animate-scale:nth-child(4) { transition-delay: 0.21s; }
.tk-spot-grid .tk-animate-scale:nth-child(5) { transition-delay: 0.28s; }

/* --------------------------------------------------------------------------
   7. Cards — 3D Tilt + Glow Border + Stagger
   -------------------------------------------------------------------------- */
.tk-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition:
    transform 0.35s var(--tk-anim-ease),
    box-shadow 0.35s var(--tk-anim-ease),
    border-color 0.35s var(--tk-anim-ease);
}

.tk-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(8, 124, 131, 0.45);
  box-shadow:
    var(--shadow),
    0 0 40px var(--tk-accent-glow);
}

.tk-card-media {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.tk-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tk-card:hover .tk-card-media::after {
  opacity: 1;
}

.tk-card-media img {
  transition: transform 0.6s var(--tk-anim-ease);
  will-change: transform;
}

.tk-card:hover .tk-card-media img {
  transform: scale(1.08);
}

.tk-card:hover .tk-card-gallery-track img {
  transform: none;
}

.tk-badge {
  backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tk-card:hover .tk-badge {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* Price pulse on card hover */
.tk-card:hover .tk-price {
  animation: price-bump 0.4s var(--tk-anim-ease);
}

@keyframes price-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* --------------------------------------------------------------------------
   8. Buttons — Ripple + Micro-interactions
   -------------------------------------------------------------------------- */
.tk-btn,
button {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s var(--tk-anim-ease),
    box-shadow 0.18s var(--tk-anim-ease),
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.tk-btn::after,
button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255, 255, 255, 0.35) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.tk-btn:active::after,
button:active::after {
  opacity: 1;
  transform: scale(2.5);
  transition: opacity 0.15s ease, transform 0.3s ease;
}

.tk-btn:active,
button:active {
  transform: scale(0.96);
}

.tk-btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--tk-accent-glow);
  border-radius: var(--radius);
}

.tk-btn.secondary:hover {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal);
}

/* --------------------------------------------------------------------------
   9. Navigation — Underline Slide + Scroll Compact Mode
   -------------------------------------------------------------------------- */
.tk-nav {
  transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.tk-nav.scrolled {
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 12px 40px rgba(14, 39, 62, 0.12);
}

.tk-nav-links a {
  position: relative;
  overflow: hidden;
}

.tk-nav-links a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s var(--tk-anim-ease), left 0.3s var(--tk-anim-ease);
}

.tk-nav-links a:hover::after,
.tk-nav-links a.active::after {
  width: 60%;
  left: 20%;
}

.tk-brand {
  transition: transform 0.3s ease;
}

.tk-brand:hover {
  transform: scale(1.03);
}

.tk-brand-mark {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tk-brand:hover .tk-brand-mark {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 20px var(--tk-accent-glow);
}

/* --------------------------------------------------------------------------
   10. Chips / Filter — Active glow + Press
   -------------------------------------------------------------------------- */
.tk-chip {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
  cursor: pointer;
}

.tk-chip:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  color: var(--teal);
  background: var(--mint);
}

.tk-chip.active {
  box-shadow: 0 8px 24px var(--tk-accent-glow);
}

.tk-chip:active {
  transform: scale(0.95);
}

/* --------------------------------------------------------------------------
   11. Spot Cards — Overlay + Zoom
   -------------------------------------------------------------------------- */
.tk-spot-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--tk-radius-lg);
  transition: transform 0.4s var(--tk-anim-ease), box-shadow 0.4s ease;
}

.tk-spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.tk-spot-card:hover::after {
  opacity: 0.85;
}

.tk-spot-card img {
  transition: transform 0.7s var(--tk-anim-ease), opacity 0.4s ease;
  will-change: transform;
}

.tk-spot-card:hover img {
  transform: scale(1.1);
  opacity: 0.85;
}

.tk-spot-card figcaption {
  z-index: 2;
  transition: transform 0.4s var(--tk-anim-ease);
}

.tk-spot-card:hover figcaption {
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   13. Detail Page — Gallery + Sticky Booking
   -------------------------------------------------------------------------- */
.tk-detail-gallery a {
  overflow: hidden;
  transition: transform 0.4s var(--tk-anim-ease), box-shadow 0.4s ease;
}

.tk-detail-gallery a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.tk-detail-gallery a img {
  transition: transform 0.6s var(--tk-anim-ease);
}

.tk-detail-gallery a:hover img {
  transform: scale(1.05);
}

.tk-panel {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tk-panel:hover {
  box-shadow: var(--shadow);
}

.tk-booking {
  transition: transform 0.3s ease;
}

.tk-booking.scrolled {
  transform: translateY(-8px);
}

/* --------------------------------------------------------------------------
   14. Footer — Modern Layered Design
   -------------------------------------------------------------------------- */
.tk-footer {
  position: relative;
  overflow: hidden;
  border-radius: var(--tk-radius-xl) var(--tk-radius-xl) 0 0;
  margin-top: 64px;
}

.tk-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.tk-footer a {
  position: relative;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.tk-footer a:hover {
  color: #fff;
  transform: translateX(4px);
}

.tk-footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-2);
  transition: width 0.3s ease;
}

.tk-footer a:hover::after {
  width: 100%;
}

.tk-footer-grid {
  gap: 36px;
}

/* --------------------------------------------------------------------------
   15. Mobile Bottom Nav — Modern Icons + Active Indicator
   -------------------------------------------------------------------------- */
.tk-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.3);
  border-top: 1px solid rgba(16, 32, 47, 0.08);
  box-shadow: 0 -8px 32px rgba(14, 39, 62, 0.08);
  transition: transform 0.3s ease;
}

.tk-bottom-nav.hidden {
  transform: translateY(100%);
}

.tk-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 16px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tk-bottom-nav a.active,
.tk-bottom-nav a:hover {
  color: var(--teal);
  background: var(--mint);
  transform: translateY(-2px);
}

.tk-bottom-nav a::before {
  content: "•";
  font-size: 20px;
  line-height: 0.4;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(4px);
}

.tk-bottom-nav a.active::before {
  opacity: 1;
  transform: translateY(0);
}

/* Dark mode bottom nav */
@media (prefers-color-scheme: dark) {
  .tk-bottom-nav {
    background: rgba(17, 29, 40, 0.92);
    border-top-color: rgba(255, 255, 255, 0.06);
  }
}

/* --------------------------------------------------------------------------
   16. Text Reveal — Hero Title
   -------------------------------------------------------------------------- */
.tk-text-reveal {
  overflow: hidden;
}

.tk-text-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: text-reveal 0.6s var(--tk-anim-ease) forwards;
}

.tk-text-reveal span:nth-child(1) { animation-delay: 0.1s; }
.tk-text-reveal span:nth-child(2) { animation-delay: 0.18s; }
.tk-text-reveal span:nth-child(3) { animation-delay: 0.26s; }
.tk-text-reveal span:nth-child(4) { animation-delay: 0.34s; }
.tk-text-reveal span:nth-child(5) { animation-delay: 0.42s; }
.tk-text-reveal span:nth-child(6) { animation-delay: 0.50s; }

@keyframes text-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   17. Section Headers — Line accent
   -------------------------------------------------------------------------- */
.tk-section-head h2 {
  position: relative;
  display: inline-block;
}

.tk-section-head h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-2));
  transition: width 0.4s var(--tk-anim-ease);
}

.tk-section-head:hover h2::after {
  width: 80px;
}

/* --------------------------------------------------------------------------
   18. Empty States — Better illustration
   -------------------------------------------------------------------------- */
.tk-empty {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tk-empty:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft);
}

.tk-empty::before {
  content: "🚢";
  display: block;
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
  animation: boat-bob 3s ease-in-out infinite;
}

@keyframes boat-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

/* --------------------------------------------------------------------------
   19. Listing Page — Toolbar + Filters
   -------------------------------------------------------------------------- */
.tk-list-toolbar {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tk-list-toolbar:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.tk-list-panel {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tk-list-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   20. Scroll Progress Bar (top of page)
   -------------------------------------------------------------------------- */
.tk-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 100;
  background: linear-gradient(90deg, var(--teal), var(--teal-2), var(--gold));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   21. Responsive Tweaks
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .tk-results-layout {
    grid-template-columns: 1fr;
  }

  .tk-filter-panel {
    position: static;
  }

  .tk-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tk-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tk-hero-content {
    padding: 36px 24px;
  }

  .tk-title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .tk-hero-panel .tk-badge-float {
    display: none;
  }

  .tk-search-shell {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: -16px;
  }

  .tk-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tk-spot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tk-detail-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .tk-detail-gallery a:first-child {
    grid-row: span 1;
    min-height: 180px;
  }

  .tk-detail-layout {
    grid-template-columns: 1fr;
  }

  .tk-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .tk-stat-row,
  .tk-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .tk-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .tk-trust-strip {
    grid-template-columns: 1fr;
  }

  .tk-card-body {
    min-height: 0;
  }

  .tk-card-foot {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .tk-card-actions {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
    align-items: stretch;
    gap: 10px;
  }

  .tk-card-actions .tk-pill,
  .tk-card-call {
    width: 100%;
    min-height: 42px;
    padding-inline: 10px;
  }

  .tk-card-call {
    font-size: 10px;
  }

  .tk-footer-grid {
    grid-template-columns: 1fr;
  }

  .tk-spot-grid {
    grid-template-columns: 1fr;
  }

  .tk-stat-row,
  .tk-props {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   22. Print styles
   -------------------------------------------------------------------------- */
@media print {
  .tk-nav,
  .tk-bottom-nav,
  .tk-scroll-progress,
  .tk-badge-float,
  .tk-search-shell,
  .tk-btn {
    display: none !important;
  }

  .tk-hero-panel {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .tk-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* --------------------------------------------------------------------------
   Yacho Figma implementation overrides
   Source: Figma file jn4pHlXxr4uyxZBtJjmJGm, node 1:2 and page templates.
   -------------------------------------------------------------------------- */
:root {
  --yacho-navy: #0a2b50;
  --yacho-gold: #bfa888;
  --yacho-gold-soft: #cab58f;
  --yacho-line: rgba(255,255,255,.28);
  --yacho-paper: #ffffff;
  --yacho-ink: #0a2b50;
  --yacho-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --yacho-sans: Montserrat, GilmerLocal, Arial, sans-serif;
}

body {
  background: var(--yacho-navy);
  color: var(--yacho-ink);
  font-family: var(--yacho-sans);
}

body::before {
  display: none;
}

.tk-page {
  background: #f8f7f3;
}

.tk-topline {
  background: var(--yacho-navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tk-nav {
  top: 0;
  background: var(--yacho-navy);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
}

.tk-nav .tk-container {
  min-height: 86px;
}

.tk-brand {
  color: #fff;
  font-family: var(--yacho-sans);
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.tk-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--yacho-serif);
  font-size: 34px;
  transform: skew(-15deg);
}

.tk-nav-links {
  min-height: 50px;
  padding: 0 36px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.tk-nav-links a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 0;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: capitalize;
}

.tk-nav-links a:hover,
.tk-pill:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.tk-btn {
  min-height: 50px;
  border-radius: 0;
  background: var(--yacho-navy);
  color: #fff;
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tk-btn.secondary {
  color: var(--yacho-navy);
  border-color: #fff;
  background: #fff;
}

.tk-btn.gold {
  background: var(--yacho-gold);
}

.tk-hero {
  padding: 0 0 90px;
  background: var(--yacho-navy);
}

.tk-hero-panel {
  overflow: visible;
  min-height: 690px;
  border-radius: 0;
  background: var(--yacho-navy);
  box-shadow: none;
}

.tk-hero-panel::before {
  content: "";
  position: absolute;
  left: 8%;
  top: 12%;
  width: 78%;
  height: 52%;
  border: 1px dashed rgba(255,255,255,.32);
  border-radius: 50%;
  transform: rotate(-16deg);
  pointer-events: none;
}

.tk-hero-panel::after {
  display: none;
}

.tk-hero-panel > img {
  opacity: .18;
  mix-blend-mode: luminosity;
}

.tk-hero-content {
  display: grid;
  place-items: center;
  width: min(950px, 100%);
  margin: 0 auto;
  padding: 130px 20px 0;
  text-align: center;
}

.tk-eyebrow,
.tk-kicker {
  border: 0;
  background: transparent;
  color: var(--yacho-gold);
  font-family: var(--yacho-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.tk-title {
  color: #fff;
  font-family: var(--yacho-serif);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.18;
}

.tk-title em {
  display: block;
  color: #fff;
  font-style: italic;
}

.tk-subtitle {
  max-width: 760px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 2;
}

.tk-search-shell {
  width: min(1080px, calc(100% - 48px));
  margin: -64px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 150px;
  gap: 0;
  padding: 30px 40px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.tk-search-shell .tk-field {
  min-height: 70px;
  padding: 10px 22px;
  border-right: 1px solid rgba(10,43,80,.28);
  border-radius: 0;
  background: #fff;
}

.tk-field label {
  color: var(--yacho-navy);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
}

.tk-field strong {
  color: var(--yacho-navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.tk-yacho-services,
.tk-section,
.tk-list-hero,
.tk-detail-head {
  background: var(--yacho-navy);
  color: #fff;
}

.tk-section-head h2,
.tk-list-title h1,
.tk-detail-title h1,
.tk-panel h2,
.tk-panel h3 {
  color: inherit;
  font-family: var(--yacho-serif);
  font-weight: 400;
}

.tk-section-head p,
.tk-list-title p,
.tk-detail-title p {
  color: rgba(255,255,255,.72);
  letter-spacing: 1.4px;
}

.tk-yacho-services {
  padding: 150px 0 80px;
}

.tk-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  margin-top: 46px;
}

.tk-service-tile {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
}

.tk-service-tile figure {
  position: absolute;
  inset: 0;
  margin: 0;
  background: #fff;
}

.tk-service-tile figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.tk-service-copy {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 72px;
  color: #fff;
}

.tk-service-copy h3 {
  margin: 0 0 28px;
  font-family: var(--yacho-serif);
  font-size: 34px;
  font-weight: 400;
}

.tk-service-copy p {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  letter-spacing: 1.8px;
  line-height: 2;
}

.tk-service-copy a {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tk-service-price {
  position: absolute;
  left: 40px;
  bottom: 34px;
  z-index: 2;
  padding: 20px 28px;
  background: #fff;
  color: var(--yacho-navy);
}

.tk-service-price span {
  display: block;
  font-family: var(--yacho-serif);
  font-size: 16px;
}

.tk-service-price strong {
  color: var(--yacho-gold);
  font-family: var(--yacho-serif);
  font-size: 36px;
  font-weight: 400;
}

.tk-card {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.tk-card-media {
  border-radius: 0;
}

.tk-card-body {
  color: var(--yacho-navy);
}

.tk-card-meta span,
.tk-card-specs span,
.tk-chip,
.tk-results-head,
.tk-filter-panel,
.tk-panel,
.tk-stat,
.tk-trust-strip div {
  border-radius: 0;
}

.tk-price {
  color: var(--yacho-gold);
  font-family: var(--yacho-serif);
  font-weight: 400;
}

.tk-list-panel,
.tk-detail-head-panel {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tk-results-layout,
.tk-detail-layout {
  color: var(--yacho-navy);
}

.tk-footer {
  margin-top: 0;
  background: var(--yacho-navy);
  border-top: 1px solid rgba(255,255,255,.22);
}

.tk-footer-cta {
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 70px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: #fff;
  text-align: center;
}

.tk-footer-cta h2 {
  margin: 0;
  font-family: var(--yacho-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}

.tk-footer-cta p {
  max-width: 820px;
}

.tk-footer-cta div {
  display: flex;
  gap: 40px;
}

.tk-subscribe {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 22px;
  background: #fff;
}

.tk-subscribe input {
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border: 0;
  color: var(--yacho-navy);
}

.tk-subscribe button {
  border: 0;
  padding: 0 18px;
  background: var(--yacho-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .tk-nav-links {
    display: none;
  }

  .tk-search-shell,
  .tk-service-grid {
    grid-template-columns: 1fr;
  }

  .tk-search-shell .tk-field {
    border-right: 0;
    border-bottom: 1px solid rgba(10,43,80,.18);
  }
}

@media (max-width: 640px) {
  .tk-hero-panel {
    min-height: 620px;
  }

  .tk-hero-content {
    padding-top: 80px;
  }

  .tk-search-shell {
    width: min(100% - 24px, 1080px);
    padding: 18px;
  }

  .tk-service-copy {
    padding: 44px 28px 110px;
  }

  .tk-footer-cta div {
    display: grid;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   TekneKirala content cleanup: Turkish copy, real local assets, stronger hero.
   -------------------------------------------------------------------------- */
.tk-brand {
  gap: 14px;
  letter-spacing: 0;
}

.tk-brand img {
  display: block;
  width: 164px;
  max-width: 42vw;
  height: auto;
}

.tk-nav .tk-brand img {
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .16));
}

.tk-brand.tk-brand-text {
  color: #fff;
  font-family: var(--yacho-sans, var(--sans));
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.tk-topline {
  color: #ff3b30;
}

.tk-topline .tk-container {
  min-height: 38px;
}

.tk-nav-links a {
  text-transform: none;
}

.tk-hero {
  padding: 0 0 88px;
}

.tk-hero-panel {
  min-height: 560px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg, rgba(7,32,58,.92) 0%, rgba(7,32,58,.72) 42%, rgba(7,32,58,.32) 100%),
    var(--yacho-navy);
}

.tk-hero-panel::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

.tk-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(180deg, rgba(7,32,58,.1), rgba(7,32,58,.74)),
    radial-gradient(circle at 18% 18%, rgba(191,168,136,.18), transparent 34%);
  pointer-events: none;
}

.tk-hero-panel > img {
  z-index: 0;
  opacity: .72;
  mix-blend-mode: normal;
  object-position: center;
  filter: saturate(1.08) contrast(1.06);
}

.tk-hero-content {
  position: relative;
  z-index: 2;
  place-items: start;
  width: min(660px, 100%);
  margin: 0;
  padding: 88px 0 0 72px;
  text-align: left;
}

.tk-eyebrow {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--yacho-gold);
  font-family: var(--yacho-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.tk-title {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1.06;
}

.tk-title em {
  color: var(--yacho-gold-soft);
}

.tk-subtitle {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  letter-spacing: .4px;
  line-height: 1.9;
}

.tk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-bottom: 6px;
}

.tk-hero-actions .tk-btn {
  min-width: 160px;
  justify-content: center;
}

.tk-hero-feature {
  position: absolute;
  right: 54px;
  bottom: 72px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(360px, 32vw);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(7,32,58,.72);
  color: #fff;
  backdrop-filter: blur(16px);
}

.tk-hero-feature span {
  color: var(--yacho-gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tk-hero-feature strong {
  font-family: var(--yacho-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.12;
}

.tk-hero-feature small {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.5;
}

.tk-hero-feature em {
  margin-top: 10px;
  color: #fff;
  font-family: var(--yacho-serif);
  font-size: 28px;
  font-style: normal;
}

.tk-search-shell {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  border: 1px solid rgba(10,43,80,.08);
  box-shadow: 0 24px 70px rgba(7, 41, 71, .18);
}

.tk-search-shell .tk-btn {
  background: var(--yacho-gold);
  color: #fff;
}

.tk-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    var(--yacho-navy);
}

.tk-footer-grid {
  gap: 44px;
  padding-top: 72px;
}

.tk-footer-grid p {
  max-width: 330px;
  color: rgba(255,255,255,.7);
}

.tk-footer-help {
  display: grid;
  align-content: start;
  gap: 12px;
}

.tk-footer-help a {
  color: #fff;
  font-weight: 800;
}

.tk-footer-help a:last-child {
  color: var(--yacho-gold-soft);
}

.tk-footer-cta {
  margin-top: 54px;
  padding: 62px 36px;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(191,168,136,.18), rgba(255,255,255,.04));
}

.tk-footer-cta h2 {
  max-width: 920px;
}

.tk-footer-cta p {
  color: rgba(255,255,255,.74);
}

.tk-footer-cta .tk-btn {
  background: var(--yacho-gold);
}

.tk-footer-cta .tk-btn.secondary {
  background: #fff;
  color: var(--yacho-navy);
}

.tk-footer-bottom {
  color: rgba(255,255,255,.64);
}

.tk-footer {
  border-radius: 0 !important;
  overflow: hidden;
}

.tk-bottom-nav {
  display: none !important;
}

.tk-bottom-nav a::before,
.tk-bottom-nav a::after {
  content: none !important;
}

.tk-bottom-icon {
  display: grid;
  place-items: center;
}

.tk-bottom-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tk-form-hero .tk-hero-panel {
  min-height: 620px;
}

.tk-form-hero .tk-hero-content {
  width: min(640px, 100%);
  padding: 108px 0 88px 72px;
}

.tk-form-hero .tk-title {
  max-width: 610px;
  font-size: clamp(44px, 4.8vw, 68px);
}

.tk-form-hero .tk-subtitle {
  max-width: 610px;
}

.tk-form-hero .tk-hero-actions {
  margin-top: 38px;
  padding-bottom: 0;
}

.tk-seaplane-hero .tk-hero-panel > img {
  opacity: 1;
  object-position: left center;
  filter: saturate(1.12) contrast(1.05);
}

.tk-seaplane-hero .tk-hero-panel::after {
  background:
    linear-gradient(90deg, rgba(7,32,58,.78) 0%, rgba(7,32,58,.42) 48%, rgba(7,32,58,.08) 100%),
    linear-gradient(180deg, rgba(7,32,58,.02), rgba(7,32,58,.42));
}

.tk-seaplane-hero .tk-title,
.tk-seaplane-hero .tk-subtitle {
  text-shadow: 0 12px 36px rgba(0,0,0,.34);
}

.tk-split-band img[src="/seaplane-3.png"] {
  object-fit: contain;
  background: #fff;
  padding: 28px;
}

.tk-process-grid,
.tk-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tk-process-card,
.tk-benefit,
.tk-contact-card,
.tk-form-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.tk-process-card {
  min-height: 260px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.tk-process-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(203, 178, 140, .38);
  color: var(--yacho-gold-soft);
  font-family: var(--yacho-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
}

.tk-process-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(203, 178, 140, .28);
  border-radius: 999px;
}

.tk-process-card span,
.tk-contact-card span,
.tk-input span {
  color: var(--yacho-gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tk-process-card h3,
.tk-benefit h3,
.tk-contact-card h3,
.tk-form-card h2,
.tk-form-card h3,
.tk-split-band h2,
.tk-form-layout h2 {
  margin: 10px 0;
  color: #fff;
  font-family: var(--yacho-serif);
  font-weight: 400;
}

.tk-process-card p,
.tk-benefit p,
.tk-contact-card p,
.tk-split-band p,
.tk-form-layout p,
.tk-contact-mini span {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.tk-benefit {
  min-height: 220px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.tk-benefit::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(203, 178, 140, .28);
  border-radius: 999px;
}

.tk-benefit-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(203, 178, 140, .38);
  color: var(--yacho-gold-soft);
  font-family: var(--yacho-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
}

.tk-split-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 54px;
  align-items: center;
  padding: 46px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.tk-split-band figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
}

.tk-split-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.tk-form-layout,
.tk-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.tk-form-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
}

.tk-form-card h2,
.tk-form-card h3,
.tk-form-card .tk-kicker,
.tk-form-card .tk-check,
.tk-form-card .tk-btn {
  grid-column: 1 / -1;
}

.tk-input {
  display: grid;
  gap: 8px;
}

.tk-input input,
.tk-input select,
.tk-input textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 16px;
  font: inherit;
}

.tk-input textarea {
  min-height: 126px;
  padding: 16px;
  resize: vertical;
}

.tk-input input::placeholder,
.tk-input textarea::placeholder {
  color: rgba(255,255,255,.48);
}

.tk-input-wide {
  grid-column: 1 / -1;
}

.tk-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.tk-check input {
  margin-top: 5px;
}

.tk-contact-info {
  display: grid;
  gap: 18px;
}

.tk-contact-card {
  padding: 28px;
}

.tk-contact-card a,
.tk-contact-mini strong {
  color: var(--yacho-gold-soft);
}

.tk-contact-mini {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}

.tk-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .tk-hero-content {
    padding: 92px 34px 0;
  }

  .tk-form-hero .tk-hero-content {
    padding: 92px 34px 76px;
  }

  .tk-hero-feature {
    right: 34px;
    bottom: 58px;
    width: min(330px, 42vw);
  }

  .tk-process-grid,
  .tk-benefit-grid,
  .tk-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tk-split-band,
  .tk-form-layout,
  .tk-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .tk-page {
    padding-bottom: 104px;
  }

  .tk-bottom-nav {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    z-index: 80;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: min(420px, calc(100% - 28px));
    padding: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(18, 48, 78, .92), rgba(5, 18, 31, .94)),
      rgba(8, 21, 32, .92);
    color: rgba(255,255,255,.68);
    box-shadow: 0 18px 54px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(22px) saturate(1.28);
    -webkit-backdrop-filter: blur(22px) saturate(1.28);
    transform: translateX(-50%);
    transition: transform .24s ease, opacity .24s ease;
  }

  .tk-bottom-nav.hidden {
    opacity: 0;
    transform: translate(-50%, calc(100% + 28px));
  }

  .tk-bottom-nav a {
    position: relative;
    display: grid;
    grid-template-rows: 28px auto;
    place-items: center;
    gap: 4px;
    min-height: 62px;
    padding: 8px 6px 7px;
    border: 1px solid transparent;
    border-radius: 20px;
    color: inherit;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .2px;
    transform: none;
    -webkit-tap-highlight-color: transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  }

  .tk-bottom-nav a span:last-child {
    line-height: 1;
    white-space: nowrap;
  }

  .tk-bottom-nav .tk-bottom-icon {
    width: 30px;
    height: 28px;
    border-radius: 999px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.07);
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .tk-bottom-nav .tk-bottom-icon svg {
    width: 18px;
    height: 18px;
  }

  .tk-bottom-nav a.active,
  .tk-bottom-nav a:hover {
    color: #fff;
    border-color: rgba(26,190,197,.42);
    background:
      radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 58%),
      linear-gradient(135deg, rgba(8,124,131,.96), rgba(10,158,165,.78));
    box-shadow: 0 10px 26px rgba(7,165,168,.24);
    transform: none;
  }

  .tk-bottom-nav a.active .tk-bottom-icon,
  .tk-bottom-nav a:hover .tk-bottom-icon {
    color: #062334;
    background: #fff;
    transform: translateY(-1px);
  }
}

/* Header search */
.tk-header-search {
  flex: 0 1 320px;
  min-width: 230px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.tk-header-search:focus-within {
  border-color: rgba(32,199,203,.7);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(32,199,203,.12);
}

.tk-header-search-icon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.78);
  flex: 0 0 auto;
}

.tk-header-search-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.tk-header-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
  letter-spacing: .4px;
}

.tk-header-search input::placeholder {
  color: rgba(255,255,255,.54);
}

.tk-header-search button {
  flex: 0 0 auto;
  height: 32px;
  padding: 0 14px;
  border: 0;
  background: var(--teal);
  color: #06223c;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.tk-header-search button:hover {
  filter: brightness(1.08);
}

.tk-header-search-trigger {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.tk-header-search-trigger:hover {
  background: rgba(32,199,203,.18);
  border-color: rgba(32,199,203,.58);
  transform: translateY(-1px);
}

.tk-header-search-trigger .tk-header-search-icon {
  width: 22px;
  height: 22px;
  color: currentColor;
}

.tk-header-search-trigger > span:not(.tk-header-search-icon),
.tk-header-search-trigger > strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.tk-search-modal[hidden] {
  display: none;
}

.tk-search-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.tk-search-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 12, 24, .72);
  backdrop-filter: blur(12px);
  opacity: 0;
  cursor: pointer;
  transition: opacity .18s ease;
}

.tk-search-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(140deg, rgba(15,45,75,.98), rgba(4,25,47,.98));
  color: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.46);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}

.tk-search-modal.is-open .tk-search-modal-backdrop {
  opacity: 1;
}

.tk-search-modal.is-open .tk-search-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tk-search-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.tk-search-kicker {
  margin: 0 0 10px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.tk-search-dialog h2 {
  margin: 0 0 22px;
  max-width: 560px;
  font-family: var(--yacho-serif);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.tk-search-modal-form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 70px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
}

.tk-search-modal-icon {
  width: 24px;
  height: 24px;
  margin-left: 22px;
  color: rgba(255,255,255,.78);
}

.tk-search-modal-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.tk-search-modal-form input {
  min-width: 0;
  height: 70px;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.tk-search-modal-form input::placeholder {
  color: rgba(255,255,255,.54);
}

.tk-search-modal-form button {
  align-self: stretch;
  min-width: 116px;
  border: 0;
  background: var(--teal);
  color: #06223c;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
}

.tk-search-help {
  margin: 14px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

body.tk-search-open {
  overflow: hidden;
}

@media (max-width: 1280px) {
  .tk-header-search {
    flex-basis: 260px;
    min-width: 210px;
  }
}

@media (max-width: 1080px) {
  .tk-nav .tk-container {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .tk-brand {
    margin-right: auto;
  }

  .tk-nav .tk-btn.secondary {
    margin-left: auto;
  }

  .tk-nav-links {
    order: 3;
    flex-basis: 100%;
  }

  .tk-header-search {
    order: 2;
    flex: 1 1 min(420px, 100%);
  }

  .tk-header-search-trigger {
    order: 2;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .tk-header-search {
    order: 4;
    flex-basis: 100%;
    width: 100%;
    min-width: 0;
  }

  .tk-header-search input {
    font-size: 14px;
  }

  .tk-header-search button {
    padding: 0 12px;
  }

  .tk-search-modal {
    align-items: center;
    padding: 14px;
  }

  .tk-search-dialog {
    padding: 24px 18px;
  }

  .tk-search-modal-form {
    grid-template-columns: auto 1fr;
  }

  .tk-search-modal-form button {
    grid-column: 1 / -1;
    height: 54px;
  }
}

/* Header search/layout final guard */
.tk-nav .tk-container {
  overflow: visible;
}

.tk-nav-links {
  justify-content: flex-start;
  padding: 0 14px;
  scroll-padding-left: 14px;
}

.tk-nav-links a {
  min-width: max-content;
}

.tk-header-search {
  flex-basis: clamp(230px, 18vw, 330px);
  min-width: 230px;
}

.tk-header-search-trigger {
  flex-basis: 54px;
  min-width: 54px;
}

@media (max-width: 1460px) {
  .tk-brand-text {
    font-size: clamp(20px, 1.7vw, 25px);
  }

  .tk-nav .tk-container {
    gap: 12px;
  }

  .tk-nav-links a {
    padding-inline: 12px;
  }

  .tk-header-search {
    flex-basis: 250px;
    min-width: 220px;
  }

  .tk-header-search-trigger {
    flex-basis: 52px;
    min-width: 52px;
    width: 52px;
    height: 52px;
  }

  .tk-nav .tk-btn.secondary {
    min-width: 132px;
  }
}

@media (max-width: 1240px) {
  .tk-nav .tk-container {
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .tk-brand {
    flex: 1 1 auto;
  }

  .tk-nav-links {
    order: 3;
    flex: 1 0 100%;
    max-width: 100%;
  }

  .tk-header-search {
    flex: 0 1 340px;
  }

  .tk-header-search-trigger {
    flex: 0 0 52px;
  }
}

@media (max-width: 640px) {
  .tk-brand img {
    width: 142px;
  }

  .tk-hero-panel {
    min-height: auto;
  }

  .tk-hero-content {
    padding: 72px 22px 0;
  }

  .tk-form-hero .tk-hero-content {
    padding: 72px 22px 56px;
  }

  .tk-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .tk-hero-actions {
    display: grid;
    width: 100%;
  }

  .tk-hero-actions .tk-btn {
    width: 100%;
  }

  .tk-hero-feature {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 22px;
    padding: 20px;
  }

  .tk-search-shell {
    margin-top: 22px;
  }

  .tk-process-grid,
  .tk-benefit-grid,
  .tk-trust-grid,
  .tk-form-card {
    grid-template-columns: 1fr;
  }

  .tk-split-band,
  .tk-form-card {
    padding: 24px;
  }

  .tk-split-band figure,
  .tk-split-band img {
    min-height: 240px;
  }
}

/* Footer polish: keep the dark canvas to the viewport edge and center CTA labels. */
html,
body {
  background: var(--yacho-navy);
}

.tk-page {
  min-height: 100dvh;
  padding-bottom: 0;
  background: var(--yacho-navy);
}

.tk-footer {
  padding-bottom: 34px;
}

.tk-footer-cta div {
  align-items: center;
  justify-content: center;
}

.tk-footer-cta .tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 62px;
  height: 62px;
  padding: 2px 34px 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.tk-footer-bottom {
  margin-bottom: 0;
}

.tk-whatsapp-btn {
  background: #25d366;
  color: #fff;
  text-decoration: none;
}

.tk-whatsapp-btn:hover {
  background: #1fb85a;
}

.tk-call-btn {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.tk-call-btn:hover {
  background: #082942;
}

.tk-floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tk-floating-call-label,
.tk-floating-call-button {
  position: relative;
  color: #fff;
  text-decoration: none;
}

.tk-floating-call-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(37, 211, 102, .42);
  border-radius: 999px;
  background: rgba(8, 12, 24, .94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22), 0 0 24px rgba(37, 211, 102, .18);
  backdrop-filter: blur(14px) saturate(1.2);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tk-floating-call-label:hover {
  border-color: rgba(37, 211, 102, .82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26), 0 0 32px rgba(37, 211, 102, .26);
  transform: translateY(-2px);
}

.tk-floating-call-label span:not(.tk-call-status) {
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tk-floating-call-label strong {
  color: #d5b782;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: tk-call-blink 1.7s ease-in-out infinite;
}

.tk-call-status {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.tk-call-status::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(34, 197, 94, .75);
  animation: tk-call-ping 1.6s cubic-bezier(0, 0, .2, 1) infinite;
}

.tk-floating-call-button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #25d366);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  transition: transform .18s ease, box-shadow .18s ease;
}

.tk-floating-call-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(37, 211, 102, .36);
  animation: tk-call-ring 2.4s ease-out infinite;
}

.tk-floating-call-button:hover {
  box-shadow: 0 12px 36px rgba(37, 211, 102, .62);
  transform: translateY(-2px) scale(1.04);
}

.tk-floating-call-button svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  animation: tk-call-shake 2.2s ease-in-out infinite;
}

@keyframes tk-call-ping {
  75%, 100% {
    opacity: 0;
    transform: scale(2.8);
  }
}

@keyframes tk-call-ring {
  70%, 100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes tk-call-shake {
  0%, 72%, 100% { transform: rotate(0deg); }
  76% { transform: rotate(-12deg); }
  80% { transform: rotate(12deg); }
  84% { transform: rotate(-9deg); }
  88% { transform: rotate(8deg); }
  92% { transform: rotate(0deg); }
}

@keyframes tk-call-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .56; }
}

@media (max-width: 760px) {
  .tk-topline .tk-container {
    align-items: center;
    justify-content: center;
    padding: 8px 0;
  }

  .tk-page {
    padding-bottom: 92px;
  }

  .tk-floating-call {
    right: 14px;
    bottom: 92px;
    gap: 8px;
  }

  .tk-floating-call-label {
    min-height: 38px;
    padding: 9px 11px;
  }

  .tk-floating-call-label span:not(.tk-call-status),
  .tk-floating-call-label strong {
    font-size: 9px;
  }

  .tk-floating-call-button {
    width: 50px;
    height: 50px;
  }

  .tk-floating-call-button svg {
    width: 22px;
    height: 22px;
  }
}

/* Detail gallery: show every local boat image in a proper swipeable rail. */
.tk-detail-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 10px;
  color: var(--navy);
}

.tk-detail-gallery-head span {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tk-detail-gallery-head small {
  color: rgba(16, 32, 47, .58);
  font-size: 13px;
  font-weight: 800;
}

.tk-detail-gallery {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 14px;
  margin-top: 0;
  padding: 0 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(11, 156, 164, .75) rgba(16, 32, 47, .12);
  scrollbar-width: thin;
}

.tk-detail-gallery::-webkit-scrollbar {
  height: 10px;
}

.tk-detail-gallery::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(16, 32, 47, .12);
}

.tk-detail-gallery::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #c6ad88);
}

.tk-detail-gallery a,
.tk-detail-gallery a:first-child {
  position: relative;
  flex: 0 0 min(74vw, 620px);
  display: block;
  min-height: 0 !important;
  height: clamp(320px, 42vw, 560px);
  border-radius: 0;
  background: #dce8ed;
  scroll-snap-align: start;
  box-shadow: 0 18px 42px rgba(8, 21, 32, .18);
}

.tk-detail-gallery a:not(:first-child) {
  flex-basis: min(62vw, 430px);
}

.tk-detail-gallery a img,
.tk-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) {
  .tk-detail-gallery-head {
    align-items: start;
    margin-top: 14px;
  }

  .tk-detail-gallery a,
  .tk-detail-gallery a:first-child,
  .tk-detail-gallery a:not(:first-child) {
    flex-basis: 84vw;
    height: 300px;
  }
}

/* Product detail owner block: mirrors the original detail content with local styling. */
.tk-owner-card {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,247,250,.94));
  box-shadow: 0 24px 70px rgba(4, 18, 32, .22);
}

.tk-owner-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(16, 32, 47, .1);
}

.tk-owner-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  font-size: 24px;
  font-weight: 900;
}

.tk-owner-top h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.15;
}

.tk-owner-top p {
  margin: 0;
  color: #728196;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .08em;
}

.tk-owner-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.tk-owner-feature {
  display: grid;
  place-items: center;
  min-height: 146px;
  padding: 18px 14px;
  border: 1px solid rgba(16, 32, 47, .08);
  background: rgba(255,255,255,.72);
  text-align: center;
}

.tk-owner-feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  color: #93a3b7;
}

.tk-owner-feature-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.tk-owner-feature p {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.2;
}

.tk-owner-feature small {
  display: block;
  margin-top: 6px;
  color: #7b8797;
  font-size: 13px;
  font-weight: 800;
}

.tk-richtext {
  font-size: 16px;
}

.tk-richtext ul,
.tk-richtext ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 16px 20px;
  padding: 0;
}

.tk-richtext li {
  padding-left: 4px;
}

.tk-richtext strong,
.tk-richtext b {
  color: var(--navy);
  font-weight: 900;
}

.tk-amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tk-amenity-grid li {
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 32, 47, .08);
  background: rgba(248, 251, 253, .92);
  color: var(--navy);
  font-weight: 850;
}

.tk-service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tk-service-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(16, 32, 47, .09);
  background: rgba(248, 251, 253, .94);
}

.tk-service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--teal);
  background: #fff;
}

.tk-service-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.tk-service-icon svg *,
.tk-service-icon svg path,
.tk-service-icon svg rect,
.tk-service-icon svg circle,
.tk-service-icon svg line,
.tk-service-icon svg polyline,
.tk-service-icon svg polygon {
  color: currentColor !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.tk-service-card strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.tk-service-card p {
  margin: 6px 0 8px;
  color: #526176;
  line-height: 1.55;
}

.tk-service-card small {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tk-cabin-list,
.tk-condition-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tk-cabin-list li,
.tk-condition-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 32, 47, .08);
  background: rgba(248, 251, 253, .94);
}

.tk-cabin-list strong,
.tk-condition-list strong {
  color: var(--navy);
  font-weight: 950;
}

.tk-cabin-list span,
.tk-condition-list span {
  color: #526176;
  text-align: right;
}

@media (max-width: 980px) {
  .tk-owner-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .tk-owner-card {
    padding: 18px;
  }

  .tk-owner-features {
    grid-template-columns: 1fr;
  }

  .tk-owner-feature {
    min-height: 118px;
  }

  .tk-amenity-grid {
    grid-template-columns: 1fr;
  }

  .tk-service-card {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .tk-service-icon {
    width: 44px;
    height: 44px;
  }

  .tk-cabin-list li,
  .tk-condition-list li {
    display: grid;
  }

  .tk-cabin-list span,
  .tk-condition-list span {
    text-align: left;
  }
}

/* Form controls */
.tk-search-form,
.tk-filter-form {
  align-items: stretch;
}

.tk-booking-form {
  display: block;
}

.tk-field span {
  color: var(--yacho-navy, var(--muted));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.tk-field select,
.tk-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
  padding: 0;
}

.tk-field select,
.tk-field input[type="date"] {
  cursor: pointer;
}

.tk-field select:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.tk-field input[type="date"]:invalid,
.tk-field input[type="date"]:placeholder-shown {
  color: var(--muted);
}

button.tk-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.tk-filter-form .tk-btn,
.tk-booking-form .tk-btn {
  justify-content: center;
}

.tk-filter-form .tk-btn.secondary {
  width: 100%;
}

@media (max-width: 768px) {
  .tk-field select,
  .tk-field input {
    font-size: 16px;
  }

  .tk-panel-admin-head {
    display: grid;
    align-items: start;
  }

  .tk-panel-grid {
    grid-template-columns: 1fr;
  }

  .tk-panel-price-toolbar {
    grid-template-columns: 1fr;
  }

  .tk-panel-tabs {
    width: 100%;
  }

  .tk-panel-tabs button {
    flex: 1 1 0;
    padding-inline: 10px;
  }

  .booking-card-dates {
    grid-template-columns: 1fr;
  }

  .booking-card-dates-item + .booking-card-dates-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .current-prices {
    font-size: 32px;
  }
}

/* Header polish: keep nav labels/buttons on one line and align active underline. */
.tk-nav .tk-container {
  gap: clamp(14px, 2vw, 28px);
}

.tk-nav-links {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
}

.tk-nav-links a {
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 clamp(12px, 1.25vw, 20px);
  overflow: visible;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.tk-nav-links a::after {
  bottom: 9px;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
}

.tk-nav-links a:hover::after,
.tk-nav-links a.active::after {
  left: 50%;
  width: min(56px, calc(100% - 24px));
}

.tk-nav .tk-btn {
  flex: 0 0 auto;
  min-width: 150px;
  white-space: nowrap;
}

.tk-search-shell {
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.2fr) auto;
}

@media (max-width: 980px) {
  .tk-search-shell {
    grid-template-columns: 1fr;
  }
}

/* Listing hero refresh */
.tk-list-hero {
  padding: clamp(24px, 4vw, 54px) 0 20px;
}

.tk-list-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    radial-gradient(circle at 85% 0%, rgba(26, 190, 197, .16), transparent 34%),
    rgba(10, 39, 70, .42);
  box-shadow: 0 26px 80px rgba(0,0,0,.18);
  overflow: hidden;
}

.tk-list-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(203,178,140,.22);
  border-radius: 999px;
  pointer-events: none;
}

.tk-list-title {
  position: relative;
  z-index: 1;
}

.tk-list-title > p:first-child {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(203,178,140,.28);
  color: var(--yacho-gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tk-list-title h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 68px);
  line-height: .98;
}

.tk-list-title h1::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 14px;
  background: var(--yacho-teal);
}

.tk-list-title > p:last-child {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.55;
}

.tk-stat-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.tk-stat {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.tk-stat strong {
  display: block;
  color: #fff;
  font-family: var(--yacho-serif);
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.tk-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.tk-list-toolbar {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(3,18,34,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.tk-list-toolbar .tk-filter-row {
  padding: 0;
  gap: 8px;
  scroll-padding-inline: 14px;
}

.tk-list-toolbar::before,
.tk-list-toolbar::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  z-index: 3;
  width: 42px;
  pointer-events: none;
}

.tk-list-toolbar::before {
  left: 12px;
  background: linear-gradient(90deg, rgba(12,42,73,.96), rgba(12,42,73,0));
}

.tk-list-toolbar::after {
  right: 12px;
  background: linear-gradient(270deg, rgba(12,42,73,.96), rgba(12,42,73,0));
}

.tk-list-toolbar .tk-filter-row::before {
  content: "Tekne tipi";
  position: sticky;
  left: 0;
  z-index: 4;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px 0 4px;
  color: rgba(255,255,255,.62);
  background: linear-gradient(90deg, rgba(12,42,73,.96) 72%, rgba(12,42,73,0));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tk-list-toolbar .tk-chip {
  min-height: 42px;
  padding: 0 16px;
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.065);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .6px;
  white-space: nowrap;
  box-shadow: none;
}

.tk-list-toolbar .tk-chip:hover {
  color: #fff;
  border-color: rgba(26,190,197,.55);
  background: rgba(26,190,197,.14);
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(26,190,197,.18), 0 10px 24px rgba(0,0,0,.12);
}

.tk-list-toolbar .tk-chip.active {
  color: #fff;
  border-color: rgba(26,190,197,.88);
  background: linear-gradient(135deg, rgba(26,190,197,.95), rgba(19,106,142,.82));
  box-shadow: 0 12px 28px rgba(26,190,197,.22);
}

.tk-list-toolbar .tk-chip.active::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.14);
}

.tk-home-types .tk-list-toolbar {
  margin-top: 0;
}

@media (max-width: 980px) {
  .tk-list-panel {
    grid-template-columns: 1fr;
  }

  .tk-stat-row {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tk-stat-row::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .tk-list-title h1 {
    font-size: 38px;
  }

  .tk-list-title > p:last-child {
    font-size: 15px;
  }

  .tk-list-toolbar {
    padding: 10px;
  }

  .tk-list-toolbar .tk-filter-row::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .tk-list-hero {
    padding: 18px 0 12px;
  }

  .tk-list-panel {
    display: block;
    padding: 18px;
    overflow: hidden;
  }

  .tk-list-panel::after {
    right: -170px;
    top: -170px;
  }

  .tk-list-title > p:first-child {
    max-width: 100%;
    padding: 7px 9px;
    font-size: 9px;
    letter-spacing: 1.2px;
    white-space: normal;
  }

  .tk-list-title h1 {
    max-width: 100%;
    font-size: clamp(32px, 11vw, 46px);
    line-height: 1.02;
  }

  .tk-list-title > p:last-child {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
  }

  .tk-stat-row {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tk-stat-row::-webkit-scrollbar {
    display: none;
  }

  .tk-stat {
    flex: 0 0 132px;
    min-height: 78px;
    padding: 13px;
    scroll-snap-align: start;
  }

  .tk-stat strong {
    font-size: 27px;
  }

  .tk-stat span {
    font-size: 9px;
    letter-spacing: 1.1px;
  }

  .tk-list-toolbar {
    margin-top: 14px;
    padding: 8px;
  }

  .tk-list-toolbar::before,
  .tk-list-toolbar::after,
  .tk-list-toolbar .tk-filter-row::before {
    display: none;
  }

  .tk-list-toolbar .tk-filter-row {
    gap: 7px;
    overflow-x: auto;
    padding: 0;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .tk-list-toolbar .tk-chip {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
    letter-spacing: .35px;
    scroll-snap-align: start;
  }
}

@keyframes tk-mobile-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 760px) {
  .tk-topline {
    overflow: hidden;
    font-size: 11px;
  }

  .tk-topline .tk-container {
    width: 100%;
    min-height: 28px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .tk-topline span {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: none !important;
    gap: 44px;
    padding-left: 0;
    color: #ff3b30;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: tk-mobile-marquee 18s linear infinite;
  }

  .tk-topline span::before,
  .tk-topline span::after {
    content: "Yaz fırsatları başladı: seçili teknelerde %30'a varan avantajlarla erken rezervasyon yap, istediğin tarih dolmadan yerini ayır.";
    flex: 0 0 auto;
    padding-left: 44px;
  }

  .tk-topline span {
    font-size: 0;
  }

  .tk-topline span::before,
  .tk-topline span::after {
    font-size: 11px;
    color: #ff3b30;
  }
}

/* High contrast overrides for panels to prevent invisible text in dark mode */
.tk-panel, 
.tk-panel h2, 
.tk-panel h3, 
.tk-panel h4, 
.tk-panel p, 
.tk-panel span, 
.tk-panel li, 
.tk-panel strong, 
.tk-panel summary, 
.tk-panel small,
.tk-panel div {
  color: #10202f !important;
}

.tk-panel p,
.tk-panel span,
.tk-panel li,
.tk-panel small {
  color: #4a5a6a !important;
}

.tk-panel strong,
.tk-panel h2,
.tk-panel h3 {
  color: #10202f !important;
}

.tk-panel input, 
.tk-panel textarea, 
.tk-panel select {
  color: #10202f !important;
  background-color: #ffffff !important;
}

.tk-faq-list details[open] summary {
  color: #087c83 !important;
}

/* Mobile header layout fixes */
@media (max-width: 768px) {
  .tk-nav .tk-container {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 60px !important;
    padding-block: 0 !important;
  }
  .tk-nav .tk-btn.secondary {
    display: none !important;
  }
  .tk-header-search-trigger {
    margin-left: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex-basis: 44px !important;
  }
  .tk-brand-text {
    font-size: 19px !important;
  }
  .tk-nav-links {
    display: none !important;
  }
}

/* Search modal input outline and alignment fixes */
.tk-search-modal-form input:focus,
.tk-search-modal-form input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.tk-search-modal-form:focus-within {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(10, 158, 165, 0.45) !important;
}



