:root {
  --oko-navy: #083b66;
  --oko-blue: #0b65a5;
  --oko-blue-dark: #064a7b;
  --oko-sand: #f8f4ed;
  --oko-text: #17324d;
  --oko-muted: #6b7d8f;
  --oko-border: #dfe8ef;
  --oko-white: #fff;
  --oko-whatsapp: #1fa855;
  --oko-shadow: 0 18px 45px rgba(9, 52, 86, .14);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 99999;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--oko-navy);
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

.oko-topbar {
  background: var(--oko-navy);
  color: #fff;
  font-size: 13px;
}
.oko-topbar__inner,
.oko-topbar__trust,
.oko-topbar__contact {
  display: flex;
  align-items: center;
}
.oko-topbar__inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 22px;
}
.oko-topbar__trust,
.oko-topbar__contact { gap: 22px; }
.oko-topbar span,
.oko-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.oko-topbar a { color: #fff; text-decoration: none; }
.oko-topbar a:hover { text-decoration: underline; }
.oko-topbar i { color: #80d8ff; }
.oko-topbar__contact .fa-whatsapp { color: #66ef96; }

.oko-header {
  position: relative;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--oko-border);
  box-shadow: 0 8px 25px rgba(8,59,102,.07);
}
.oko-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.oko-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}
.oko-brand img {
  display: block;
  width: auto;
  height: 60px;
  max-width: 205px;
  object-fit: contain;
}

.oko-nav { margin-left: auto; }
.oko-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.oko-nav__list > li { position: relative; }
.oko-nav__list > li > a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--oko-text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.oko-nav__list > li > a:hover,
.oko-nav__list > li > a.is-active {
  background: #eef7fc;
  color: var(--oko-blue);
}
.oko-nav__list > li > a .fa-chevron-down { font-size: 10px; }

.oko-destinations-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 390px;
  padding: 14px;
  border: 1px solid var(--oko-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--oko-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.oko-nav__dropdown:hover .oko-destinations-menu,
.oko-nav__dropdown:focus-within .oko-destinations-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.oko-destinations-menu__head {
  display: grid;
  gap: 3px;
  padding: 7px 8px 13px;
  border-bottom: 1px solid var(--oko-border);
}
.oko-destinations-menu__head strong { color: var(--oko-navy); font-size: 16px; }
.oko-destinations-menu__head span { color: var(--oko-muted); font-size: 13px; }
.oko-destinations-menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.oko-destinations-menu li a {
  display: grid;
  grid-template-columns: 18px 1fr 14px;
  align-items: center;
  gap: 8px;
  padding: 11px 10px;
  border-radius: 10px;
  color: var(--oko-text);
  font-weight: 650;
  text-decoration: none;
}
.oko-destinations-menu li a:hover { background: var(--oko-sand); color: var(--oko-blue); }
.oko-destinations-menu li a .fa-location-dot { color: #e2a63b; }
.oko-destinations-menu li a .fa-arrow-right { color: #9eb0bf; font-size: 11px; }

.oko-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 10px 15px;
  border-radius: 14px;
  background: var(--oko-whatsapp);
  color: #fff;
  box-shadow: 0 9px 23px rgba(31,168,85,.24);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.oko-header__cta:hover {
  transform: translateY(-1px);
  background: #178f48;
  box-shadow: 0 12px 27px rgba(31,168,85,.31);
}
.oko-header__cta > i { font-size: 24px; }
.oko-header__cta > span { display: grid; line-height: 1.12; font-weight: 800; font-size: 14px; }
.oko-header__cta small { font-size: 10px; font-weight: 600; opacity: .85; }

.oko-menu-toggle { display: none; }

@media (max-width: 1080px) {
  .oko-header__inner { gap: 16px; }
  .oko-nav__list > li > a { padding-inline: 9px; font-size: 14px; }
  .oko-header__cta span { display: none; }
  .oko-header__cta { width: 46px; height: 46px; justify-content: center; padding: 0; border-radius: 50%; }
}

@media (max-width: 820px) {
  .oko-topbar__trust span:nth-child(2),
  .oko-topbar__contact a:first-child { display: none; }
  .oko-topbar__inner { min-height: 34px; }
  .oko-header__inner { min-height: 72px; }
  .oko-brand img { height: 50px; max-width: 170px; }
  .oko-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--oko-border);
    border-radius: 12px;
    background: #fff;
  }
  .oko-menu-toggle span { width: 21px; height: 2px; background: var(--oko-navy); border-radius: 2px; }
  .oko-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 10px 16px 18px;
    border-top: 1px solid var(--oko-border);
    background: #fff;
    box-shadow: var(--oko-shadow);
  }
  .oko-nav.active,
  .oko-nav.open,
  .oko-nav.is-open { display: block; }
  .oko-nav__list { display: grid; gap: 3px; }
  .oko-nav__list > li > a { justify-content: space-between; padding: 13px 12px; }
  .oko-destinations-menu {
    position: static;
    width: auto;
    margin: 3px 0 10px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }
  .oko-nav__dropdown:hover .oko-destinations-menu,
  .oko-nav__dropdown:focus-within .oko-destinations-menu { display: block; transform: none; }
  .oko-destinations-menu ul { grid-template-columns: 1fr; }
  .oko-destinations-menu__head { display: none; }
  .oko-header__cta { margin-left: 0; }
}

@media (max-width: 520px) {
  .oko-topbar__trust { display: none; }
  .oko-topbar__inner { justify-content: center; }
  .oko-topbar__contact { width: 100%; justify-content: center; }
  .oko-brand img { max-width: 145px; height: 45px; }
}
