:root {
  --nsl-navy-950: #06182a;
  --nsl-navy-900: #0b1f33;
  --nsl-navy-700: #344458;
  --nsl-green-700: #468f10;
  --nsl-green-600: #55a817;
  --nsl-green-100: #eff8e7;
  --nsl-paper: #ffffff;
  --nsl-line: #dfe4e6;
  --nsl-muted: #697586;
  --nsl-shell: min(1352px, calc(100% - 96px));
  --nsl-shadow: 0 18px 50px rgba(8, 29, 48, 0.12);
  color: var(--nsl-navy-900);
  background: var(--nsl-paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--nsl-paper);
  color: var(--nsl-navy-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
svg { flex: 0 0 auto; }

.nsl-sr-only,
.nsl-skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nsl-skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--nsl-navy-950);
  color: white;
  font-weight: 750;
}
:focus-visible {
  outline: 3px solid rgba(85, 168, 23, 0.5);
  outline-offset: 3px;
}

.nsl-site-header {
  position: relative;
  z-index: 30;
  height: 84px;
  border-bottom: 1px solid #edf0f0;
  background: rgba(255, 255, 255, 0.98);
}
.nsl-header-inner {
  width: min(1390px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.nsl-brand { width: 188px; flex: 0 0 auto; }
.nsl-brand img,
.nsl-brand .custom-logo { width: 188px; height: auto; }
.nsl-primary-navigation { height: 100%; margin-left: 0; justify-self: center; }
.nsl-primary-menu {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 32px;
  list-style: none;
}
.nsl-primary-menu > li { position: relative; display: flex; align-items: stretch; }
.nsl-primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--nsl-navy-900);
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.nsl-primary-menu > li > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
}
.nsl-primary-menu a:hover,
.nsl-primary-menu .current-menu-item > a,
.nsl-primary-menu .current_page_item > a { color: var(--nsl-green-600); }
.nsl-primary-menu .current-menu-item > a::after,
.nsl-primary-menu .current_page_item > a::after { background: var(--nsl-green-600); }
.nsl-primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -18px;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(5px);
  list-style: none;
  border: 1px solid var(--nsl-line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--nsl-shadow);
}
.nsl-primary-menu .menu-item-has-children:hover > .sub-menu,
.nsl-primary-menu .menu-item-has-children:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.nsl-primary-menu .sub-menu a { min-height: 42px; padding: 0 10px; }
.nsl-expert-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nsl-green-600);
  font-size: 16px;
  font-weight: 780;
  white-space: nowrap;
}
.nsl-expert-link .nsl-icon { width: 19px; height: 19px; }
.nsl-site-header .nsl-expert-link { color: #347a0b; }
.nsl-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--nsl-navy-900);
}
.nsl-menu-close { display: none; }
.nsl-menu-button[aria-expanded="true"] .nsl-menu-open { display: none; }
.nsl-menu-button[aria-expanded="true"] .nsl-menu-close { display: block; }

.nsl-content-shell {
  width: min(1100px, calc(100% - 40px));
  min-height: 60vh;
  margin: 0 auto;
  padding: 72px 0 96px;
}
.nsl-content-card h1 {
  margin: 0 0 28px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.nsl-entry-content { font-size: 17px; line-height: 1.75; }
.nsl-entry-content > * { max-width: 820px; margin-right: auto; margin-left: auto; }
.nsl-entry-content > .alignwide { max-width: 1352px; }
.nsl-entry-content > .alignfull { max-width: none; }
.nsl-not-found { max-width: 760px; padding: 90px 0; }

.nsl-site-footer {
  padding: 68px 0 24px;
  background: var(--nsl-navy-950);
  color: white;
}
.nsl-footer-inner,
.nsl-footer-bottom {
  width: var(--nsl-shell);
  margin: 0 auto;
}
.nsl-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-start;
}
.nsl-footer-brand img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}
.nsl-site-footer h2 { margin: 0 0 16px; font-size: 15px; color: #fff; }
.nsl-footer-brand { flex: 1.2; min-width: 0; }
.nsl-footer-network { flex: 1; max-width: 290px; }
.nsl-footer-network p { margin: 10px 0 20px; color: #c9d3dc; font-size: 14px; }
.nsl-footer-tatil { font-size: 20px; font-weight: 760; }
.nsl-footer-tursab { display: grid; gap: 10px; max-width: 220px; font-size: 13px; }
.nsl-footer-tursab img { display: block; width: 100%; height: auto; border-radius: 8px; }
.nsl-card-logo { display: flex; align-items: center; justify-content: flex-start; min-width: 0; height: 126px; margin-bottom: 20px; background: #fff; border-radius: 8px; }
.nsl-card-logo img { display: block; width: 220px; max-width: 100%; height: 126px; object-fit: contain; }
.nsl-card-logo--compact { width: 92px; max-width: 100%; height: 62px; margin: 0; }
.nsl-card-logo--compact img { width: 92px; height: 62px; }
.nsl-home-fair .nsl-fair-name h3 a:hover { color: var(--nsl-green-700); text-decoration: underline; text-underline-offset: 3px; }
.nsl-footer-brand p { max-width: 440px; margin: 20px 0 0; color: #c9d3dc; }
.nsl-footer-links { display: grid; gap: 12px; }
.nsl-footer-links a { color: #dce4eb; font-weight: 650; }
.nsl-footer-links a:hover { color: #91d45e; }
.nsl-footer-bottom {
  margin-top: 54px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebbc7;
  font-size: 12px;
}

@media (max-width: 1180px) {
  :root { --nsl-shell: min(1080px, calc(100% - 40px)); }
  .nsl-header-inner { width: min(1080px, calc(100% - 32px)); gap: 16px; }
  .nsl-primary-menu { gap: 18px; }
  .nsl-primary-menu a { font-size: 16px; }
  .nsl-expert-link { display: none; }
}

@media (max-width: 860px) {
  :root { --nsl-shell: calc(100% - 32px); }
  .nsl-site-header { height: 68px; }
  .nsl-header-inner { width: calc(100% - 28px); display: flex; }
  .nsl-brand, .nsl-brand img, .nsl-brand .custom-logo { width: 152px; }
  .nsl-menu-button { display: inline-grid; }
  .nsl-primary-navigation {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    height: auto;
    padding: 14px 22px 22px;
    border-bottom: 1px solid var(--nsl-line);
    background: white;
    box-shadow: 0 15px 35px rgba(6, 24, 42, 0.12);
  }
  .nsl-primary-navigation.is-open { display: block; }
  .nsl-primary-menu { height: auto; flex-direction: column; align-items: stretch; gap: 0; }
  .nsl-primary-menu > li { display: block; }
  .nsl-primary-menu a {
    min-height: 46px;
    width: 100%;
    border-bottom: 1px solid var(--nsl-line);
    font-size: 16px;
  }
  .nsl-primary-menu .sub-menu {
    position: static;
    visibility: visible;
    display: grid;
    opacity: 1;
    transform: none;
    margin: 0;
    padding: 0 0 0 16px;
    border: 0;
    box-shadow: none;
  }
  .nsl-primary-menu .sub-menu a { font-size: 13px; }
}

.nsl-back-to-top {
  position: fixed;
  right: calc(20px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: #0b2133;
  color: #fff;
  box-shadow: 0 4px 16px rgba(11,33,51,.18);
  cursor: pointer;
}
.nsl-back-to-top[hidden] { display: none; }
.nsl-back-to-top:hover { background: #426f22; }
.nsl-back-to-top:focus-visible { outline: 3px solid #579b25; outline-offset: 4px; }

@media (max-width: 600px) {
  .nsl-footer-inner, .nsl-footer-bottom { display: grid; }
  .nsl-footer-bottom { gap: 8px; }
}

.nsl-country-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.nsl-country-card {
  position: relative;
  min-height: 170px;
  aspect-ratio: 2.3 / 1;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  overflow: hidden;
  background: var(--nsl-navy-950);
  color: white;
}
.nsl-country-card::after { content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,rgba(5,24,40,.70) 0%,rgba(5,24,40,.62) 55%,rgba(5,24,40,.10) 100%); transition:opacity .2s ease; pointer-events:none; }
.nsl-country-card__flag { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .25s ease; }
.nsl-country-card:hover { border-color:rgba(255,255,255,.7); color:white; box-shadow:0 15px 36px rgba(8,29,48,.18); }
.nsl-country-card:hover .nsl-country-card__flag { transform:scale(1.035); }
.nsl-country-card span,.nsl-country-card small,.nsl-country-card .nsl-icon { position:relative; z-index:2; }
.nsl-country-card span { font-size:21px; font-weight:800; text-shadow:0 1px 12px rgba(0,0,0,.32); }
.nsl-country-card small { color:rgba(255,255,255,.88); }
.nsl-country-card .nsl-icon { grid-column:2; grid-row:1 / span 2; color:white; }

@media (max-width: 860px) {
  .nsl-country-grid { grid-template-columns:1fr 1fr; }
  .nsl-country-card { min-width:0; aspect-ratio:auto; }
}
@media (max-width: 600px) {
  .nsl-country-grid { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .nsl-country-card__flag { transition:none; }
}

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

/* Brighter imagery; restrained hover and matching keyboard feedback. */
@media (hover:hover) { .nsl-country-card:hover::after { opacity:.92; } }
.nsl-country-card:focus-visible::after { opacity:.92; }
.nsl-country-card:focus-visible { outline:3px solid var(--nsl-green-600); outline-offset:4px; }
.nsl-country-card small { color:#fff; text-shadow:0 1px 3px rgba(0,0,0,.8); }
@media (prefers-reduced-motion:reduce) { .nsl-country-card:hover .nsl-country-card__flag { transform:none; } }
