/* ─────────────────────────────────────────
   NBK Touristic — header.css
───────────────────────────────────────── */

:root {
  --blue:    #1a5fad;
  --blue-lt: #2e7dd1;
  --blue-bg: #eff5fc;
  --text:    #0f1c2e;
  --muted:   #7a8fa6;
  --border:  #e4ecf5;
  --white:   #ffffff;
}

/* ─────────────────────────
   TOP STRIP
───────────────────────── */
.top-strip {
  background: #f5f8fc;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.top-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Adres */
.strip-address {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.strip-addr-icon {
  width: 30px; height: 30px;
  background: var(--blue-bg);
  border: 1px solid rgba(26,95,173,0.15);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.strip-addr-icon svg {
  width: 14px; height: 14px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.strip-addr-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.strip-addr-main {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.strip-addr-sub {
  font-size: 10.5px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

/* Belge no */
.strip-badge {
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.strip-badge strong {
  color: var(--blue);
  font-weight: 600;
}

/* ─────────────────────────
   MAIN HEADER
───────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 52px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.lifted {
  box-shadow: 0 4px 32px rgba(26,95,173,0.08);
}

/* ── LOGO ── */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s, transform 0.2s;
}
.logo:hover img {
  opacity: 0.85;
  transform: scale(1.02);
}

/* ── CENTER NAV ── */
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.nav-link:hover {
  color: var(--text);
  background: var(--blue-bg);
}
.nav-link.active {
  color: var(--blue);
  background: var(--blue-bg);
  font-weight: 600;
}

/* ── RIGHT CLUSTER ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Dil seçici */
.lang {
  display: flex;
  align-items: center;
  background: var(--blue-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.lang-btn {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--muted);
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-right: 1px solid var(--border);
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.lang-btn:last-child { border-right: none; }
.lang-btn.active {
  color: var(--blue);
  background: var(--white);
}
.lang-btn:hover:not(.active) {
  color: var(--text);
  background: rgba(26,95,173,0.06);
}

/* İletişim butonu */
.contact-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 9px 22px;
  border-radius: 8px;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(26,95,173,0.22);
  font-family: 'Inter', sans-serif;
}
.contact-btn:hover {
  background: var(--blue-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,95,173,0.3);
}

/* ── HAMBURGER ── */
.ham {
  display: none;
  background: var(--blue-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4.5px;
  margin-left: 4px;
}
.ham span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─────────────────────────
   MOBILE DRAWER
───────────────────────── */
.drawer-wrap {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.drawer-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.drawer-wrap.open { pointer-events: all; }
.drawer-wrap.open .drawer-dim { background: rgba(15,28,46,0.25); }

.drawer {
  position: absolute;
  top: 0; right: 0;
  width: 270px; height: 100%;
  background: var(--white);
  border-left: 1px solid var(--border);
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -8px 0 40px rgba(26,95,173,0.08);
}
.drawer-wrap.open .drawer { transform: translateX(0); }

.drawer-x {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--blue-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px; height: 34px;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.drawer-x:hover { color: var(--text); }

.drawer-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.drawer-link:hover,
.drawer-link.active {
  color: var(--blue);
  background: var(--blue-bg);
}

.drawer-sep {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.drawer-langs {
  display: flex;
  gap: 6px;
  padding: 4px 14px;
}
.d-lang {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.d-lang.active {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-bg);
}

.drawer-addr {
  margin-top: auto;
  padding: 16px 14px;
  background: var(--blue-bg);
  border-radius: 10px;
  border: 1px solid rgba(26,95,173,0.12);
}
.drawer-addr-main {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.drawer-addr-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  font-family: 'Inter', sans-serif;
}
.drawer-badge {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}
.drawer-badge strong {
  color: var(--blue);
}

/* ─────────────────────────
   RESPONSIVE
───────────────────────── */
@media (max-width: 960px) {
  .strip-address { display: none; }
}
@media (max-width: 860px) {
  .header { padding: 0 28px; }
  .top-strip-inner { padding: 0 28px; }
  .nav { display: none; }
  .contact-btn { display: none; }
  .ham { display: flex; }
}
@media (max-width: 480px) {
  .header { padding: 0 20px; }
  .top-strip-inner { padding: 0 20px; }
}