/* ============================================================
   Layout — Header, Nav, Buttons, Footer (ht-*)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

.page-inner { padding-top: var(--header-sticky); background: var(--paper); transition: padding-top 0.3s var(--ease); }
.page-home { padding-top: var(--header-sticky); background: var(--paper); transition: padding-top 0.3s var(--ease); }

body.is-header-scrolled { --header-sticky: var(--header-main); }

.ht-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- İç sayfa üst başlık ---- */
.ht-page {
  padding: 28px 0 0;
}

.ht-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
}

.ht-page-head__copy {
  min-width: 0;
  flex: 1;
  padding-left: 14px;
  border-left: 3px solid var(--brand);
}

.ht-page-head__kicker {
  margin: 0 0 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ht-page-head__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ht-page-head__title-row h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

.ht-page-head__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-muted);
  opacity: 0.45;
  flex-shrink: 0;
}

.ht-page-head__title-row p {
  margin: 0 !important;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.35;
}

.ht-page-head__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 7px 11px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-shrink: 0;
}

.ht-page-head__stat strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.ht-page-head__stat span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .ht-page {
    padding-top: 20px;
  }

  .ht-page-head {
    padding: 12px 14px;
  }

  .ht-page-head__title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .ht-page-head__dot {
    display: none;
  }
}

/* ---- HEADER ---- */
.ht-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--paper);
}

.ht-header__util {
  background: var(--paper);
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  height: var(--header-util);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: height 0.3s var(--ease), opacity 0.25s var(--ease);
}

.ht-header__util--global {
  padding: 0;
  background: transparent;
  border-bottom: none;
}

.ht-header.is-scrolled .ht-header__util {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.ht-header__util-inner {
  height: var(--header-util);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ht-header__main {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  height: var(--header-main);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ht-header__main-inner {
  height: var(--header-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ht-header__brand img {
  height: 48px;
  width: auto;
}

.ht-header__quick {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.ht-header__quick a {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink) !important;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.ht-header__nav-item { position: relative; }

.ht-header__nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
}

.ht-header__nav-trigger svg {
  transition: transform 0.2s var(--ease);
}

.ht-header__nav-trigger:hover,
.ht-header__nav-trigger.is-open {
  color: var(--brand) !important;
  background: var(--brand-soft);
}

.ht-header__nav-trigger.is-open svg {
  transform: rotate(180deg);
}

.ht-header__quick a:hover {
  color: var(--brand) !important;
  background: var(--brand-soft);
}

/* Cruise Turları — ince deniz mavisi vurgu */
.ht-header__quick a.ht-header__nav-link--cruise {
  position: relative;
  color: #0a6ea8 !important;
  background: rgba(0, 119, 182, 0.06);
  border: 1px solid rgba(0, 119, 182, 0.16);
  box-shadow: none;
}

.ht-header__quick a.ht-header__nav-link--cruise::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.35), transparent);
  pointer-events: none;
}

.ht-header__quick a.ht-header__nav-link--cruise:hover {
  color: #085a8a !important;
  background: rgba(0, 119, 182, 0.1);
  border-color: rgba(0, 119, 182, 0.26);
  transform: none;
  box-shadow: none;
}

.ht-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---- Header tur ara butonu ---- */
.ht-header__search-btn {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--brand-hover);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.28);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ht-header__search-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.34);
}

.ht-header__search-btn svg {
  flex-shrink: 0;
}

/* ---- Tam ekran tur arama ---- */
.ht-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
}

.ht-search-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.ht-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.72);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.ht-search-overlay.is-open .ht-search-overlay__backdrop {
  opacity: 1;
}

.ht-search-overlay__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.ht-search-overlay.is-open .ht-search-overlay__panel {
  transform: translateY(0);
  opacity: 1;
}

.ht-search-overlay__top {
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.ht-search-overlay__top-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ht-search-overlay__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ht-search-overlay__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(10, 15, 26, 0.06);
}

.ht-search-overlay__bar:focus-within {
  border-color: rgba(232, 93, 4, 0.35);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.ht-search-overlay__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--ink-muted);
}

.ht-search-overlay__input {
  flex: 1;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
}

.ht-search-overlay__input::placeholder {
  color: var(--ink-muted);
  font-weight: 500;
}

.ht-search-overlay__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.ht-search-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--paper-warm);
  color: var(--ink-soft);
  cursor: pointer;
  flex-shrink: 0;
}

.ht-search-overlay__close:hover {
  background: var(--line);
  color: var(--ink);
}

.ht-search-overlay__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 0 28px;
}

.ht-search-overlay__results {
  width: 100%;
}

.ht-search-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ht-search-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(10, 15, 26, 0.04);
  text-decoration: none !important;
  color: var(--ink) !important;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.ht-search-all:hover {
  background: var(--paper-warm);
  border-color: rgba(232, 93, 4, 0.28);
  box-shadow: 0 8px 24px rgba(10, 15, 26, 0.06);
}

.ht-search-all__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ht-search-all__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ht-search-all__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.ht-search-all__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}

.ht-search-section {
  margin-top: 18px;
}

.ht-search-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.ht-search-section__kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ht-search-section__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.ht-search-empty {
  margin: 0;
  padding: 12px 4px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
}

.ht-search-grid {
  display: grid;
  gap: 8px;
}

.ht-search-grid--categories {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ht-search-grid--tours {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ht-search-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.ht-search-cat:hover {
  border-color: rgba(232, 93, 4, 0.3);
  background: var(--paper-warm);
  box-shadow: none;
}

.ht-search-cat__thumb {
  display: inline-flex;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
}

.ht-search-cat__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ht-search-cat__thumb--empty {
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, #1a2233, #0a0f1a);
}

.ht-search-cat__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ht-search-tour {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: stretch;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ht-search-tour:hover {
  border-color: rgba(232, 93, 4, 0.35);
  box-shadow: 0 8px 24px rgba(10, 15, 26, 0.06);
}

.ht-search-tour__media {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  background: var(--ink);
}

.ht-search-tour__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.ht-search-tour:hover .ht-search-tour__media img {
  transform: scale(1.05);
}

.ht-search-tour__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 14px 16px;
}

.ht-search-tour__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ht-search-tour__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ht-search-tour__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--paper-warm);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.ht-search-tour:hover .ht-search-tour__arrow {
  background: var(--brand-soft);
  color: var(--brand);
}

body.ht-search-open {
  overflow: hidden;
}

.ht-header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.ht-header__menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.2s;
}

.ht-header__regions {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.ht-region-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ht-region-scroll::-webkit-scrollbar { display: none; }

.ht-region-pill {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  text-decoration: none !important;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.ht-region-pill:hover,
.ht-region-pill.is-active {
  background: var(--ink);
  color: #fff !important;
  border-color: var(--ink);
}

.ht-header.is-scrolled .ht-header__main {
  box-shadow: var(--shadow-card);
}

/* ---- TOURS DROPDOWN PANEL ---- */
.ht-tours-panel {
  position: fixed;
  top: var(--header-sticky);
  left: 0;
  right: 0;
  z-index: 898;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s, top 0.3s var(--ease);
}

.page-home .ht-tours-panel {
  top: var(--header-sticky);
}

.ht-tours-panel.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.ht-tours-panel__backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-sticky);
  background: rgba(10, 15, 26, 0.35);
  opacity: 0;
  transition: opacity 0.25s var(--ease), top 0.3s var(--ease);
}

.page-home .ht-tours-panel__backdrop {
  top: var(--header-sticky);
}

.ht-tours-panel.is-open .ht-tours-panel__backdrop {
  opacity: 1;
}

.ht-tours-panel__inner {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  padding: 24px 24px 28px;
  max-height: min(72vh, 640px);
  overflow-y: auto;
}

.ht-tours-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.ht-tours-panel__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ht-tours-panel__all {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand) !important;
  text-decoration: none !important;
}

.ht-tours-panel__all:hover { color: var(--brand-hover) !important; }

.ht-tours-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px 32px;
}

.ht-tours-panel__parent {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink) !important;
  text-decoration: none !important;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.ht-tours-panel__parent:hover { color: var(--brand) !important; }

.ht-tours-panel__subs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ht-tours-panel__subs a {
  display: block;
  padding: 5px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.ht-tours-panel__subs a:hover { color: var(--brand) !important; }

.ht-tours-panel__subs--nested {
  margin: 2px 0 4px 12px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.ht-tours-panel__subs--nested a {
  font-size: 12px;
  padding: 3px 0;
}

/* ---- FULLSCREEN NAV ---- */
.ht-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s;
}

.ht-nav-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.ht-nav-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,15,26,0.6);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.ht-nav-overlay.is-open .ht-nav-overlay__backdrop { opacity: 1; }

.ht-nav-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(720px, 100vw);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  padding: 32px;
}

.ht-nav-overlay.is-open .ht-nav-overlay__panel { transform: translateX(0); }

.ht-nav-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  z-index: 2;
}

.ht-nav-overlay__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  padding-top: 48px;
}

.ht-nav-overlay__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.ht-nav-overlay__link {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink) !important;
  text-decoration: none !important;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.2s;
}

.ht-nav-overlay__link:hover {
  color: var(--brand) !important;
  padding-left: 8px;
}

.ht-nav-overlay__link--accent {
  color: var(--brand) !important;
  border: none;
  margin-top: 16px;
}

.ht-nav-overlay__link--cruise {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 4px 0 8px;
  padding: 8px 14px !important;
  border: 1px solid rgba(0, 119, 182, 0.16) !important;
  border-radius: var(--radius-pill);
  background: rgba(0, 119, 182, 0.06);
  color: #0a6ea8 !important;
  box-shadow: none;
}

.ht-nav-overlay__link--cruise:hover {
  color: #085a8a !important;
  padding-left: 14px !important;
  background: rgba(0, 119, 182, 0.1);
  border-color: rgba(0, 119, 182, 0.26) !important;
}

.ht-nav-overlay__dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ht-nav-dest {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  text-decoration: none !important;
}

.ht-nav-dest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.ht-nav-dest:hover img { transform: scale(1.05); }

.ht-nav-dest::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.ht-nav-dest span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

/* ---- BUTTONS ---- */
.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.ht-btn--primary {
  background: var(--brand-hover);
  color: #fff !important;
}

.ht-btn--primary:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.35);
}

.ht-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.ht-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff !important;
}

.ht-btn--outline {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--line-strong);
}

.ht-btn--outline:hover {
  border-color: var(--ink);
  background: var(--paper-warm);
}

.ht-btn--lg { padding: 16px 32px; font-size: 15px; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  margin-top: 0;
}

.footer-top-section {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  max-width: none;
  aspect-ratio: 130 / 79;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.social-media ul {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-media ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85) !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
}

.social-media ul li a:hover {
  background: var(--brand);
  color: #fff !important;
}

.social-media ul li .ht-footer-fx {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  cursor: default;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 48px 0;
}

.footer-menu span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-menu ul li a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55) !important;
  padding: 5px 0;
  text-decoration: none !important;
  transition: color 0.2s;
}

.footer-menu ul li a:hover { color: var(--brand) !important; }

.footer-bottom-section {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom .info {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom .info strong { color: rgba(255,255,255,0.75); }
.footer-bottom .bank img {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  aspect-ratio: 406 / 40;
  opacity: 0.6;
}

/* ---- GLOBAL OFFICES ---- */
.ht-global-strip {
  position: relative;
  overflow: hidden;
  padding: 11px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 24px 100%,
    linear-gradient(180deg, #0f2838 0%, #123f47 52%, #0f2838 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(232, 93, 4, 0.22);
}

.ht-global-strip--in-header {
  padding: 0;
  border-top: none;
  min-height: var(--header-util);
}

.ht-global-strip--in-header .ht-global-strip__inner {
  min-height: var(--header-util);
}

.ht-global-strip--in-header .ht-container {
  padding-top: 0;
  padding-bottom: 0;
}

.ht-global-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 180% at 50% 120%, rgba(0, 119, 182, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

.ht-global-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 34px;
}

.ht-global-strip__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ht-global-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--brand);
  background: rgba(232, 93, 4, 0.14);
  border: 1px solid rgba(232, 93, 4, 0.28);
  border-radius: 50%;
}

.ht-global-strip__titles {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}

.ht-global-strip__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  white-space: nowrap;
}

.ht-global-strip__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.ht-global-strip__rule {
  flex-shrink: 0;
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, transparent, rgba(232, 93, 4, 0.55), transparent);
}

.ht-global-strip__mobile-trigger {
  display: none;
}

.ht-global-strip__cities {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ht-global-strip__cities::-webkit-scrollbar {
  display: none;
}

.ht-global-strip__city {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.ht-global-strip__city:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 12px;
  vertical-align: middle;
  background: rgba(232, 93, 4, 0.45);
}

.ht-global-strip__meta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.ht-global-strip__meta span:not(:last-child)::after {
  content: "·";
  margin: 0 7px;
  color: rgba(232, 93, 4, 0.65);
  font-weight: 800;
}

@media (max-width: 991px) {
  .ht-global-strip:not(.ht-global-strip--in-header) {
    padding: 10px 0;
  }

  .ht-global-strip__inner {
    gap: 8px 12px;
  }

  .ht-global-strip--in-header .ht-global-strip__inner {
    flex-wrap: nowrap;
    min-height: var(--header-util);
    justify-content: space-between;
  }

  .ht-global-strip--in-header .ht-global-strip__rule,
  .ht-global-strip--in-header .ht-global-strip__rule--end,
  .ht-global-strip--in-header .ht-global-strip__meta,
  .ht-global-strip--in-header .ht-global-strip__tag,
  .ht-global-strip--in-header .ht-global-strip__cities {
    display: none !important;
  }

  .ht-global-strip--in-header .ht-global-strip__brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .ht-global-strip--in-header .ht-global-strip__title {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .ht-global-strip--in-header .ht-global-strip__icon {
    width: 26px;
    height: 26px;
  }

  .ht-global-strip__mobile-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
    padding: 5px 10px 5px 12px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(232, 93, 4, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(232, 93, 4, 0.45);
    border-radius: var(--radius-pill);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04) inset,
      0 4px 14px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
  }

  .ht-global-strip__mobile-trigger:active {
    transform: scale(0.98);
  }

  .ht-global-strip__mobile-trigger-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1.1;
    text-align: left;
  }

  .ht-global-strip__mobile-trigger-main strong {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
  }

  .ht-global-strip__mobile-trigger-main span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
  }

  .ht-global-strip__mobile-trigger-chevron {
    flex-shrink: 0;
    color: var(--brand);
    opacity: 0.95;
  }

  .ht-global-strip:not(.ht-global-strip--in-header) .ht-global-strip__inner {
    flex-wrap: wrap;
    min-height: 0;
  }

  .ht-global-strip:not(.ht-global-strip--in-header) .ht-global-strip__rule--end,
  .ht-global-strip:not(.ht-global-strip--in-header) .ht-global-strip__meta {
    display: none;
  }

  .ht-global-strip:not(.ht-global-strip--in-header) .ht-global-strip__cities {
    flex: 1 1 100%;
    order: 3;
    padding-top: 2px;
  }
}

/* Global offices — mobil panel */
.ht-global-panel {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}

.ht-global-panel.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.ht-global-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.62);
  backdrop-filter: blur(5px);
}

.ht-global-panel__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(88vh, 640px);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, #123f47 0%, #0f2838 38%, #0a1820 100%);
  border-radius: 22px 22px 0 0;
  border-top: 1px solid rgba(232, 93, 4, 0.35);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.ht-global-panel.is-open .ht-global-panel__sheet {
  transform: translateY(0);
}

.ht-global-panel__grab {
  flex-shrink: 0;
  width: 40px;
  height: 4px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.ht-global-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-global-panel__head-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brand);
  background: rgba(232, 93, 4, 0.14);
  border: 1px solid rgba(232, 93, 4, 0.32);
  border-radius: 50%;
}

.ht-global-panel__head-copy {
  flex: 1;
  min-width: 0;
}

.ht-global-panel__kicker {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.ht-global-panel__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.ht-global-panel__lead {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.ht-global-panel__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
}

.ht-global-panel__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ht-global-panel__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.ht-global-panel__stat strong {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.ht-global-panel__stat span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.ht-global-panel__list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 12px 16px;
  -webkit-overflow-scrolling: touch;
}

.ht-global-panel__office {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.ht-global-panel__office + .ht-global-panel__office {
  margin-top: 8px;
}

.ht-global-panel__office-pin {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--brand);
  background: rgba(232, 93, 4, 0.12);
  border-radius: 50%;
}

.ht-global-panel__office-copy {
  flex: 1;
  min-width: 0;
}

.ht-global-panel__office-city {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.ht-global-panel__office-country {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.ht-global-panel__office-region {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.ht-global-panel__office-badge {
  flex-shrink: 0;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(232, 93, 4, 0.12);
  border: 1px solid rgba(232, 93, 4, 0.28);
  border-radius: 999px;
}

.ht-global-panel__foot {
  flex-shrink: 0;
  padding: 12px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.ht-global-panel__foot p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

body.ht-global-panel-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .ht-global-panel {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .ht-global-strip__tag {
    display: none;
  }

  .ht-global-strip__city {
    font-size: 11px;
  }

  .ht-global-strip__city:not(:last-child)::after {
    margin: 0 9px;
  }
}

/* ---- FOOTER UTIL (contact + FX — above footer) ---- */
.ht-footer-util {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 24px 100%,
    linear-gradient(180deg, #0f2838 0%, #123f47 52%, #0f2838 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(232, 93, 4, 0.22);
}

.ht-footer-util::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 180% at 50% 120%, rgba(0, 119, 182, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

.ht-footer-util__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ht-footer-util__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ht-footer-util__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.ht-footer-util__contact a:hover {
  color: #fff !important;
}

.ht-footer-util__contact svg {
  flex-shrink: 0;
  color: var(--brand);
}

.ht-footer-util__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ht-footer-util__fx {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
}

.ht-footer-util__acente {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand) !important;
  text-decoration: none !important;
  padding: 7px 14px;
  background: rgba(232, 93, 4, 0.12);
  border: 1px solid rgba(232, 93, 4, 0.35);
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}

.ht-footer-util__acente:hover {
  color: #fff !important;
  background: var(--brand);
}

@media (max-width: 767px) {
  .ht-footer-util {
    padding: 12px 0;
  }

  .ht-footer-util__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .ht-footer-util__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ht-footer-util__right {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 991px) {
  :root {
    --header-util: 42px;
    --header-total: calc(var(--header-util) + var(--header-main));
    --header-sticky: var(--header-total);
  }

  .ht-header__util--global {
    display: block !important;
    height: var(--header-util) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: hidden !important;
  }

  .ht-header.is-scrolled .ht-header__util--global {
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .ht-header__quick { display: none; }
  .ht-header__menu-btn { display: flex; }

  /* ---- Mobil menü ---- */
  .ht-nav-overlay__panel {
    display: flex;
    flex-direction: column;
    width: min(100vw, 400px);
    padding: 0;
    background: var(--paper);
  }

  .ht-nav-overlay__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    padding: 14px 16px;
    background: #0c1222;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ht-nav-overlay__head-brand img {
    display: block;
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .ht-nav-overlay__close {
    position: static;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
  }

  .ht-nav-overlay__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px 16px 20px;
  }

  .ht-nav-overlay__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 0;
  }

  .ht-nav-overlay__label {
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  .ht-nav-overlay__links {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    margin: 0;
  }

  .ht-nav-overlay__links .ht-nav-overlay__label {
    padding: 0 0 6px;
    margin-bottom: 0;
  }

  .ht-nav-overlay__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink) !important;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }

  .ht-nav-overlay__link:last-child {
    border-bottom: none;
  }

  .ht-nav-overlay__link svg {
    flex-shrink: 0;
    opacity: 0.35;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }

  .ht-nav-overlay__link:hover,
  .ht-nav-overlay__link:focus-visible {
    color: var(--brand) !important;
    background: rgba(232, 93, 4, 0.04);
  }

  .ht-nav-overlay__link:hover svg {
    opacity: 0.8;
    transform: translateX(2px);
  }

  .ht-nav-overlay__link--cruise {
    display: flex;
    width: calc(100% + 32px);
    margin: 0 -16px;
    padding: 12px 16px !important;
    border: none !important;
    border-top: 1px solid rgba(0, 119, 182, 0.14) !important;
    border-bottom: 1px solid rgba(0, 119, 182, 0.14) !important;
    border-radius: 0;
    background: rgba(0, 119, 182, 0.08);
    color: #0a6ea8 !important;
  }

  .ht-nav-overlay__link--cruise:hover,
  .ht-nav-overlay__link--cruise:focus-visible {
    background: rgba(0, 119, 182, 0.12);
    color: #085a8a !important;
    padding-left: 16px !important;
  }

  .ht-nav-overlay__link--cruise:last-child {
    margin-bottom: 0;
  }

  .ht-nav-overlay__link--accent {
    display: none;
  }

  .ht-nav-overlay__dest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ht-nav-dest {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .ht-nav-dest span {
    bottom: 8px;
    left: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    line-height: 1.3;
  }

  .ht-nav-overlay__foot {
    display: flex;
    align-items: stretch;
    gap: 8px;
    flex-shrink: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .ht-nav-overlay__foot-call {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink) !important;
    text-decoration: none !important;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .ht-nav-overlay__foot-call svg {
    flex-shrink: 0;
    color: var(--brand);
  }

  .ht-nav-overlay__foot-acente {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none !important;
    background: var(--brand);
    border-radius: 8px;
    white-space: nowrap;
  }

  .ht-header__menu-btn {
    border-radius: 8px;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  }

  .ht-header__menu-btn.is-active {
    background: var(--brand-soft);
    border-color: rgba(232, 93, 4, 0.25);
  }

  .ht-header__menu-btn.is-active span {
    background: var(--brand);
  }

  .ht-header__menu-btn.is-active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .ht-header__menu-btn.is-active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .ht-search-grid--categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ht-header__search-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .ht-search-overlay__top {
    padding: 16px 0 14px;
  }

  .ht-search-overlay__bar {
    min-height: 50px;
    padding: 0 12px 0 14px;
  }

  .ht-search-grid--categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ht-search-grid--tours {
    grid-template-columns: 1fr;
  }

  .ht-search-tour {
    grid-template-columns: 96px minmax(0, 1fr) auto;
  }

  .ht-search-tour__media {
    min-height: 76px;
  }

  .ht-search-tour__arrow {
    display: none;
  }

  .ht-container { padding: 0 16px; }
}
