/* ═══════════════════════════════════════════════════════════════
   NOVA SELECT — Ana Stil Dosyası
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --burgundy: #7a1f2b;
  --burgundy-deep: #5a141d;
  --gold: #c9a86a;
  --ink: #16151a;
  --ink-soft: #3a3741;
  --muted: #7a7682;
  --line: #ece8e2;
  --cream: #faf7f2;
  --paper: #ffffff;
  --shadow: 0 10px 40px -12px rgba(20,15,15,.18);
  --shadow-lg: 0 20px 60px -16px rgba(20,15,15,.22);
  --radius: 18px;
  --header-h: 80px;
}

/* ─── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ─── TOPBAR ──────────────────────────────────────────────────── */
.topbar {
  background: var(--burgundy-deep);
  color: #f4e6d8;
  font-size: 13px;
}
.topbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 28px;
}
.topbar a { opacity: .85; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  display: inline-block; margin: 0 10px;
  vertical-align: middle; opacity: .6;
}
.topbar__socials a { margin-left: 14px; }

/* ─── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px -8px rgba(0,0,0,.12); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; gap: 24px;
}
.logo img {
  height: 46px; width: auto;
  filter: brightness(0) saturate(100%) invert(13%) sepia(60%) saturate(2400%) hue-rotate(330deg) brightness(90%) contrast(95%);
}
.nav__main { display: flex; gap: 32px; align-items: center; }
.nav__main a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 6px 0; letter-spacing: .02em;
  transition: color .2s;
}
.nav__main a:hover, .nav__main a.active { color: var(--burgundy); }
.nav__main a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--burgundy); border-radius: 2px;
}
.nav__main .has-arrow::after {
  content: '▾'; margin-left: 4px;
  display: inline-block;
  opacity: .5; font-size: 10px;
  vertical-align: middle;
}
/* Dropdown */
.nav__dropdown-wrap { position: relative; }
.nav__dropdown {
  position: absolute; top: calc(100% + 14px); left: -20px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 10px; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; transition: background .15s;
}
.nav__dropdown a:hover { background: var(--cream); color: var(--burgundy); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--burgundy); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--burgundy-deep); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px; padding: 8px;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--burgundy); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 20px 40px -8px rgba(0,0,0,.15);
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  z-index: 99;
}
.mobile-menu.is-open { max-height: 100vh; }
.mobile-menu__nav { padding: 20px 28px 28px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__nav > a, .mobile-menu__group-title {
  display: block; padding: 12px 0;
  font-size: 16px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.mobile-menu__nav > a:hover { color: var(--burgundy); }
.mobile-menu__group { margin-top: 4px; }
.mobile-menu__group-title {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-family: 'Outfit', sans-serif;
  font-weight: 600; border-bottom: none; padding-bottom: 8px;
}
.mobile-menu__sub {
  display: block; padding: 9px 0 9px 14px;
  font-size: 14px; color: var(--ink-soft);
  border-bottom: 1px solid rgba(236,232,226,.5);
  transition: color .2s;
}
.mobile-menu__sub:hover { color: var(--burgundy); }
.mobile-menu__cta {
  margin-top: 16px; display: inline-block;
  background: var(--burgundy); color: #fff;
  padding: 14px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  text-align: center;
}

/* ─── HERO SLIDER ─────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: #0c0a0d;
  min-height: 660px;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: background-image 0.8s ease;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.58) 100%),
              rgba(0,0,0,.30);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 140px 28px 160px;
  color: #fff;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow .line { width: 36px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  color: #fff; font-weight: 400; max-width: 820px;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lede {
  font-size: 18px; max-width: 540px;
  color: rgba(255,255,255,.85); margin-bottom: 42px;
  font-weight: 300;
}

/* Slider Dots */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none; padding: 0; cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }

/* Search Card */
.search-card {
  background: #fff; border-radius: 22px; padding: 14px;
  display: flex; gap: 6px; align-items: stretch;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
  max-width: 880px;
}
.search-card .field {
  flex: 1; padding: 12px 18px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  justify-content: center; gap: 2px; min-width: 0;
}
.search-card .field:last-of-type { border-right: 0; }
.search-card label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.search-card input, .search-card select {
  border: 0; outline: 0; font: inherit;
  font-size: 15px; color: var(--ink);
  background: transparent; padding: 2px 0; width: 100%;
}
.search-card .go {
  background: var(--burgundy); color: #fff; border: 0;
  font: inherit; font-weight: 500;
  padding: 0 28px; border-radius: 14px;
  letter-spacing: .02em; transition: background .2s;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.search-card .go:hover { background: var(--burgundy-deep); }

/* ─── FEATURED STRIP ──────────────────────────────────────────── */
.featured-strip {
  position: relative; margin-top: -90px; z-index: 5;
}
.featured {
  position: relative;
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.1fr 1fr; overflow: hidden;
  border: 1px solid var(--line);
  min-height: 440px;
  transition: opacity .6s ease;
}
.featured-img {
  background-size: cover; background-position: center;
  height: 100%; min-height: 440px; position: relative;
  transition: opacity .35s ease; /* background-image animate edilemez; opacity ile crossfade */
}
/* Slaytlar arası yükseklik sabit kalsın diye metinleri sınırla */
.featured-title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-desc {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Featured slider kontrolleri: kartın DIŞINDA sol/sağ ok + noktalar */
.featured-shell { position: relative; }
.featured-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--burgundy);
  box-shadow: 0 16px 36px -12px rgba(0,0,0,.4);
  font-size: 26px; line-height: 0; padding: 0 0 3px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, transform .15s;
}
.featured-arrow:hover { background: var(--burgundy); color: #fff; transform: translateY(-50%) scale(1.07); }
.featured-arrow:active { transform: translateY(-50%) scale(.94); }
/* Geniş ekran: kartın tamamen dışında, yan boşlukta */
.featured-arrow--prev { right: 100%; margin-right: 24px; }
.featured-arrow--next { left: 100%;  margin-left: 24px; }
/* Orta ekranlarda yan boşluk yetmez → kart kenarına yasla (yarısı dışarıda) */
@media (max-width: 1380px) {
  .featured-arrow--prev { right: auto; left: -25px;  margin: 0; }
  .featured-arrow--next { left: auto;  right: -25px; margin: 0; }
}
.featured-dots {
  position: absolute; bottom: 18px; left: 24px; z-index: 6;
  display: flex; gap: 9px;
}
.featured-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.55); box-shadow: 0 1px 3px rgba(0,0,0,.35);
  transition: background .3s, transform .3s;
}
.featured-dot.active { background: #fff; transform: scale(1.35); }

/* Eski hero noktaları featured kartla çakışıyordu — gizle */
.hero-dots { display: none; }
.featured-img .badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  color: var(--burgundy); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
.featured-body {
  padding: 48px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-body .tag {
  color: var(--burgundy); font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px;
}
.featured-body h2 { font-size: 38px; margin-bottom: 16px; }
.featured-body p { color: var(--muted); margin-bottom: 28px; font-size: 15px; }
.stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
  margin-bottom: 30px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.stat .n {
  font-family: 'Fraunces', serif; font-size: 30px;
  color: var(--burgundy); line-height: 1;
}
.stat .l {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em; margin-top: 6px;
}
.featured-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: var(--burgundy); color: #fff;
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--burgundy-deep); transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink); padding: 14px 4px;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--ink);
}

/* ─── SECTION ORTAK ───────────────────────────────────────────── */
section.block { padding-top: 110px; padding-bottom: 110px; }
.section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 54px;
  gap: 30px; flex-wrap: wrap;
}
.section-head .lead { max-width: 640px; }
.section-head h2 { font-size: 44px; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 16px; }
.section-head .all {
  color: var(--burgundy); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; border-bottom: 1px solid var(--burgundy);
  padding-bottom: 4px; white-space: nowrap;
}

/* ─── SEASON CARDS ────────────────────────────────────────────── */
.seasons { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.season-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 3/4;
  color: #fff; display: flex; align-items: flex-end;
  padding: 28px; transition: transform .35s ease;
}
.season-card:hover { transform: translateY(-6px); }
.season-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.75) 100%);
  z-index: 1;
}
.season-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.season-card:hover .img { transform: scale(1.06); }
.season-card .content { position: relative; z-index: 2; }
.season-card .tag {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px; display: block;
}
.season-card h3 { font-size: 22px; color: #fff; margin-bottom: 14px; }
.season-card .arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .2s;
}
.season-card:hover .arrow { background: var(--burgundy); }

/* ─── DESTINATIONS ────────────────────────────────────────────── */
.destinations-block { background: var(--cream); }
.destinations { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.dest {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; transition: transform .35s, box-shadow .35s;
  border: 1px solid var(--line); display: block;
}
.dest:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dest .ph {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  transition: transform .6s;
}
.dest:hover .ph { transform: scale(1.04); }
.dest .info {
  padding: 22px; display: flex;
  align-items: center; justify-content: space-between; gap: 10px;
}
.dest h4 { font-size: 19px; color: var(--ink); }
.dest .count { font-size: 13px; color: var(--muted); }
.dest .pin { color: var(--burgundy); font-size: 14px; }

/* ─── WHY US ──────────────────────────────────────────────────── */
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.why-img {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  overflow: visible;
  background: url('../img/bg-why.jpg') center/cover no-repeat;
  border-radius: var(--radius);
}
.why-img > div:first-child { border-radius: var(--radius); overflow: hidden; width: 100%; height: 100%; position: absolute; inset: 0; background: inherit; background-size: cover; }
.why-img .float {
  position: absolute; bottom: -24px; right: -24px;
  background: #fff; padding: 24px 28px; border-radius: 18px;
  box-shadow: var(--shadow-lg); width: 230px;
}
.why-img .float .n { font-family: 'Fraunces', serif; font-size: 42px; color: var(--burgundy); line-height: 1; }
.why-img .float .t { font-size: 13px; color: var(--muted); margin-top: 6px; }
.why h2 { font-size: 44px; margin-bottom: 20px; }
.why .lede { color: var(--muted); margin-bottom: 34px; font-size: 16px; max-width: 520px; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat .icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(122,31,43,.08); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.feat h4 { font-size: 16px; margin-bottom: 4px; font-family: 'Outfit', sans-serif; font-weight: 600; }
.feat p { font-size: 14px; color: var(--muted); }

/* ─── EXP STRIP ───────────────────────────────────────────────── */
.exp {
  background: var(--burgundy); color: #fff; padding: 90px 0;
  background-image: linear-gradient(135deg, rgba(90,20,29,.95), rgba(122,31,43,.88)),
    url('../img/bg-exp.jpg');
  background-size: cover; background-position: center;
}
.exp-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 50px; align-items: center; }
.exp-grid h3 { font-size: 30px; color: #fff; margin-bottom: 6px; }
.exp-grid p { color: rgba(255,255,255,.75); font-size: 14px; }
.exp-stat .n { font-family: 'Fraunces', serif; font-size: 54px; color: var(--gold); line-height: 1; }
.exp-stat .t { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.test { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote {
  background: var(--cream); border-radius: var(--radius);
  padding: 34px 32px; border: 1px solid var(--line);
}
.quote .stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 18px; }
.quote p { font-size: 15px; color: var(--ink-soft); margin-bottom: 24px; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .av { width: 46px; height: 46px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.quote .who .nm { font-weight: 600; font-size: 14px; }
.quote .who .rt { font-size: 12px; color: var(--muted); }

/* ─── PILLARS ─────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.pillar {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 34px;
}
.pillar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.78)); z-index: 1;
}
.pillar .ph { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s; }
.pillar:hover .ph { transform: scale(1.04); }
.pillar .c { position: relative; z-index: 2; }
.pillar h3 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.pillar p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 18px; }
.pillar a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 3px;
}

/* ─── NEWSLETTER ──────────────────────────────────────────────── */
.newsletter {
  background: var(--cream); border-radius: 28px; padding: 70px 60px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
  border: 1px solid var(--line);
}
.newsletter h2 { font-size: 40px; margin-bottom: 14px; }
.newsletter p { color: var(--muted); }
.news-form {
  display: flex; gap: 10px; background: #fff;
  border-radius: 999px; padding: 8px; border: 1px solid var(--line);
}
.news-form input {
  flex: 1; border: 0; outline: 0; padding: 14px 22px;
  font: inherit; font-size: 15px; background: transparent;
}
.news-form button {
  background: var(--burgundy); color: #fff; border: 0;
  border-radius: 999px; padding: 14px 26px;
  font: inherit; font-weight: 500; transition: background .2s;
}
.news-form button:hover { background: var(--burgundy-deep); }
.news-form button:disabled { opacity: .7; cursor: default; }
/* Honeypot — gizli tuzak alanı (kullanıcı görmez, bot doldurursa reddedilir) */
.ns-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.news-msg { margin-top: 14px; font-size: 14px; min-height: 1.2em; }
.news-msg.is-ok  { color: #1f7a4d; }
.news-msg.is-err { color: #b3261e; }

/* ─── KONTENJAN BADGE ─────────────────────────────────────────── */
.kontenjan-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  padding: 5px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  backdrop-filter: blur(8px);
}
.kontenjan-badge--normal {
  background: rgba(255,255,255,.88);
  color: var(--ink);
}
.kontenjan-badge--az {
  background: rgba(210,120,0,.9);
  color: #fff;
}
.kontenjan-badge--dolu {
  background: rgba(80,80,80,.85);
  color: #fff;
}

/* ─── TOUR CARDS (Listing) ────────────────────────────────────── */
.tours { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.tour-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.tour-ph {
  aspect-ratio: 5/3; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.tour-ph::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35));
  pointer-events: none;
}
.tour-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  color: var(--burgundy); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.tour-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tour-region {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.tour-region::before { content: '◆'; color: var(--burgundy); font-size: 8px; }
.tour-card h3 { font-size: 20px; margin-bottom: 14px; color: var(--ink); }
.tour-card h3 a { transition: color .2s; }
.tour-card h3 a:hover { color: var(--burgundy); }
.tour-meta {
  display: flex; gap: 16px; font-size: 13px;
  color: var(--muted); margin-bottom: 12px; flex-wrap: wrap;
}
.tour-meta span { display: inline-flex; align-items: center; gap: 5px; }
.tour-meta strong { color: var(--ink-soft); font-weight: 600; }
.tour-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
}
.tour-price { display: flex; flex-direction: column; }
.tour-price__from { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; }
.tour-price__amt { font-family: 'Fraunces', serif; font-size: 24px; color: var(--burgundy); line-height: 1.1; }
.tour-price__per { font-size: 12px; color: var(--muted); }
.tour-cta {
  background: var(--burgundy); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: background .2s; white-space: nowrap;
}
.tour-cta:hover { background: var(--burgundy-deep); }

/* ─── PAGE HERO (Tüm Turlar) ──────────────────────────────────── */
.page-hero {
  position: relative; color: #fff; padding: 90px 0 70px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12,8,12,.35) 0%, rgba(12,8,12,.7) 100%),
    url('../img/bg-page-hero.jpg') center/cover no-repeat;
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; letter-spacing: .02em; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 10px; opacity: .5; }
.page-hero h1 { font-size: clamp(36px,5vw,60px); font-weight: 400; max-width: 760px; color: #fff; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 560px; font-weight: 300; }
.page-hero__desc { max-width: 760px; margin-bottom: 18px; }
.page-hero__desc p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.88); max-width: 760px; margin-bottom: 12px; font-weight: 300; }
.page-hero__desc p:last-child { margin-bottom: 0; }
.page-hero__desc strong { color: #fff; font-weight: 600; }
.page-hero__count { font-size: 15px; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ─── FILTER BAR (üst) ────────────────────────────────────────── */
.filter-bar {
  position: relative; z-index: 5; margin-top: -30px;
  background: #fff; border-radius: 18px; padding: 14px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; gap: 6px; align-items: stretch;
}
.filter-bar .field {
  flex: 1; padding: 10px 18px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; gap: 2px; min-width: 0;
}
.filter-bar .field:last-of-type { border-right: 0; }
.filter-bar label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.filter-bar input, .filter-bar select {
  border: 0; outline: 0; font: inherit; font-size: 15px;
  color: var(--ink); background: transparent; padding: 2px 0; width: 100%;
}
.filter-bar .go {
  background: var(--burgundy); color: #fff; border: 0;
  font: inherit; font-weight: 500; padding: 0 24px; border-radius: 14px;
  letter-spacing: .02em; transition: background .2s;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.filter-bar .go:hover { background: var(--burgundy-deep); }

/* ─── LISTING LAYOUT ──────────────────────────────────────────── */
/* Yatay padding container'dan geliyor — yalnızca dikey tanımla */
.listing { padding-top: 60px; padding-bottom: 100px; }
.listing-grid { display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: flex-start; }

/* Sidebar — sticky değil */
aside.filters { position: static; }
aside h3 {
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px;
}
.filter-group { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: 0; }
.chk {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; cursor: pointer; font-size: 14px; color: var(--ink-soft);
  transition: color .2s;
}
.chk:hover { color: var(--burgundy); }
.chk .box {
  width: 18px; height: 18px; border: 1.5px solid var(--line);
  border-radius: 5px; display: inline-flex; align-items: center;
  justify-content: center; font-size: 11px; color: #fff;
  background: #fff; transition: background .2s, border-color .2s; flex-shrink: 0;
}
.chk.on .box { background: var(--burgundy); border-color: var(--burgundy); }
.chk.on .box::before { content: '✓'; }
.chk .lbl { flex: 1; margin-left: 12px; }
.chk .ct { font-size: 12px; color: var(--muted); }
.clear-btn {
  width: 100%; padding: 12px;
  background: transparent; border: 1px solid var(--line);
  color: var(--ink); border-radius: 10px;
  font: inherit; font-size: 14px; transition: background .2s, border-color .2s; margin-top: 8px;
}
.clear-btn:hover { background: var(--cream); border-color: var(--ink); }

/* Mobile filter trigger */
.filter-trigger {
  display: none;
  width: 100%; padding: 14px 20px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; font: inherit; font-size: 14px; font-weight: 500;
  color: var(--ink); align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 24px; transition: border-color .2s;
}
.filter-trigger:hover { border-color: var(--burgundy); }

/* Results bar */
.results-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; flex-wrap: wrap; gap: 14px;
}
.results-count { font-size: 14px; color: var(--muted); }
.results-count strong { color: var(--ink); font-weight: 600; }
.sort { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.sort select {
  border: 1px solid var(--line); padding: 10px 16px;
  border-radius: 10px; font: inherit; font-size: 14px;
  background: #fff; color: var(--ink);
}

/* Pagination */
.pag { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 60px; flex-wrap: wrap; }
.pag a {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink-soft); transition: border-color .2s, color .2s;
  font-weight: 500;
}
.pag a:hover { border-color: var(--burgundy); color: var(--burgundy); }
.pag a.on { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.pag a.nav { padding: 0 18px; width: auto; gap: 6px; }
.pag a.disabled { opacity: .4; pointer-events: none; }

/* ─── TUR DETAY ───────────────────────────────────────────────── */
.tour-hero { padding-top: 30px; }
.tour-title-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 28px; flex-wrap: wrap; }
.tour-title-row > div:first-child { flex: 1; min-width: 0; }
.tour-title-row .tag { color: var(--burgundy); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; display: block; }
.tour-title-row h1 { font-size: clamp(32px, 4.5vw, 52px); }
.tour-title-row h1 em { font-style: italic; color: var(--burgundy); }
.tour-quick { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; color: var(--muted); margin-top: 8px; }
.tour-quick span { display: inline-flex; align-items: center; gap: 8px; }
.tour-quick .ic { color: var(--burgundy); font-size: 16px; }
.actions { display: flex; gap: 10px; align-items: center; flex: 0 0 auto; }
.icon-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-soft); transition: border-color .2s, color .2s;
}
.icon-btn:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* Gallery */
.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 10px;
  border-radius: var(--radius); overflow: hidden; height: 520px;
}
.gallery .g {
  background-size: cover; background-position: center;
  position: relative; cursor: pointer; transition: filter .3s;
}
.gallery .g:hover { filter: brightness(.88); }
.gallery .g.main { grid-row: 1/3; }
.gallery .more {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  color: var(--ink); font-size: 13px; font-weight: 500;
  padding: 10px 18px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}

/* Tour body */
.tour-body-section { padding-top: 20px; padding-bottom: 100px; }
.tour-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: flex-start; }
.section { padding-bottom: 52px; margin-bottom: 52px; border-bottom: 1px solid var(--line); }
.section:last-child { border-bottom: 0; }
.section h2 { font-size: 32px; margin-bottom: 22px; }
.section p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.section p:last-child { margin-bottom: 0; }

/* Stats detail */
.stats-detail { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 36px; }
.stat-d { background: var(--cream); border-radius: 14px; padding: 22px 20px; border: 1px solid var(--line); }
.stat-d .ic { font-size: 22px; color: var(--burgundy); margin-bottom: 8px; display: block; }
.stat-d .n { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1; color: var(--ink); }
.stat-d .l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-top: 6px; }

/* Highlights */
.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.hl {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-soft); padding: 10px 0;
}
.hl .dot {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(122,31,43,.08); color: var(--burgundy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; margin-top: 2px;
}

/* Günlük program */
.day {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.day:last-child { border-bottom: 0; }
.day .label { font-family: 'Fraunces', serif; color: var(--burgundy); position: sticky; top: calc(var(--header-h) + 16px); align-self: flex-start; }
.day .label .day-date { font-size: 11px; color: var(--muted); font-family: 'Outfit', sans-serif; margin-top: 4px; }
.day .label .d { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-family: 'Outfit', sans-serif; font-weight: 600; margin-bottom: 4px; }
.day .label .n { font-size: 36px; line-height: 1; }
.day h3 { font-size: 20px; margin-bottom: 10px; font-family: 'Outfit', sans-serif; font-weight: 600; }
.day .loc {
  font-size: 13px; color: var(--burgundy); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.day .loc::before { content: '◆'; font-size: 8px; }
.day p { font-size: 15px; color: var(--ink-soft); }

/* Dahil/olmayan */
.lists { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lst h3 {
  font-size: 17px; font-family: 'Outfit', sans-serif; font-weight: 600;
  margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.lst h3 .ic { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.lst h3 .ic.ok { background: rgba(34,120,80,.12); color: #227850; }
.lst h3 .ic.no { background: rgba(177,42,42,.12); color: #b12a2a; }
.lst ul { display: flex; flex-direction: column; gap: 10px; }
.lst li { padding-left: 24px; position: relative; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.lst li::before { position: absolute; left: 0; top: 0; }
.lst.inc li::before { content: '✓'; color: #227850; font-weight: 700; }
.lst.exc li::before { content: '×'; color: #b12a2a; font-weight: 700; font-size: 18px; line-height: 1; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 16px; font-weight: 600; color: var(--ink); }
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: background .2s, transform .3s;
}
.faq-item.open .plus { background: var(--burgundy); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding-top: 14px; font-size: 15px; color: var(--ink-soft); }
.faq-item.open .faq-a { display: block; }

/* Booking sidebar */
aside.booking { position: sticky; top: calc(var(--header-h) + 24px); }
.book-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow); overflow: hidden;
}
.book-head { padding: 24px 26px 18px; border-bottom: 1px solid var(--line); }
.book-price { display: flex; flex-direction: column; gap: 4px; margin-bottom: 4px; }
.book-price .from { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.book-price__row { display: flex; align-items: baseline; gap: 8px; transition: opacity .3s ease; }
.book-price__row.fade { opacity: 0; }
.book-price .amt { font-family: 'Fraunces', serif; font-size: 34px; color: var(--burgundy); line-height: 1; }
.book-price .per { font-size: 13px; color: var(--muted); }
.book-rate { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); margin-top: 8px; }
.book-rate .stars { color: var(--gold); letter-spacing: 2px; }
.book-body { padding: 22px 26px 26px; }
.book-field { margin-bottom: 14px; }
.book-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.book-field input, .book-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line);
  border-radius: 11px; font: inherit; font-size: 15px; color: var(--ink);
  background: #fff; outline: 0; transition: border-color .2s;
}
.book-field input:focus, .book-field select:focus { border-color: var(--burgundy); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.book-cta {
  width: 100%; background: var(--burgundy); color: #fff; border: 0;
  padding: 16px; border-radius: 13px; font: inherit; font-size: 15px;
  font-weight: 600; transition: background .2s; margin-top: 8px; letter-spacing: .02em;
}
.book-cta:hover { background: var(--burgundy-deep); }
.book-cta--outline {
  background: transparent !important;
  color: var(--burgundy) !important;
  border: 2px solid var(--burgundy) !important;
  box-shadow: none !important;
}
.book-cta--outline:hover {
  background: var(--burgundy) !important;
  color: #fff !important;
}
.book-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.5; }
.trust {
  display: flex; justify-content: space-around; padding: 20px 26px;
  background: var(--cream); border-top: 1px solid var(--line);
}
.trust .t { text-align: center; font-size: 11px; color: var(--muted); letter-spacing: .06em; }
.trust .t .ic { font-size: 18px; color: var(--burgundy); display: block; margin-bottom: 4px; }
.help-card {
  margin-top: 20px; background: var(--cream); border: 1px solid var(--line);
  border-radius: 20px; padding: 24px 26px;
}
.help-card h4 { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.help-card p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.help-card .phone { font-family: 'Fraunces', serif; font-size: 22px; color: var(--burgundy); }

/* Related */
.related { padding-top: 80px; padding-bottom: 80px; background: var(--cream); margin-top: 60px; }
.related h2 { font-size: 32px; margin-bottom: 36px; }
.rel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rel-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: transform .35s, box-shadow .35s; display: block;
}
.rel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.rel-ph { aspect-ratio: 5/3; background-size: cover; background-position: center; }
.rel-body { padding: 22px; }
.rel-body .reg { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.rel-body h3 { font-size: 19px; margin-bottom: 12px; }
.rel-body .meta { font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; }
.rel-body .meta strong { font-family: 'Fraunces', serif; color: var(--burgundy); font-size: 18px; font-weight: 500; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #cfc8be; padding: 90px 0 30px; margin-top: 120px; }
.tour-body-section + .related + .site-footer,
.related + .site-footer { margin-top: 0; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer h5 {
  font-family: 'Outfit', sans-serif; color: #fff; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 22px; font-weight: 600;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { font-size: 14px; color: #cfc8be; opacity: .75; transition: opacity .2s, color .2s; }
.site-footer a:hover { opacity: 1; color: var(--gold); }
.foot-brand__logo { font-family: 'Fraunces', serif; font-size: 30px; color: #fff; margin-bottom: 14px; letter-spacing: .04em; }
.foot-brand__logo em { font-style: italic; color: var(--gold); font-weight: 400; }
.foot-brand__about { font-size: 14px; line-height: 1.7; opacity: .7; max-width: 340px; margin-bottom: 24px; }
.foot-brand__contact { font-size: 14px; line-height: 1.9; opacity: .8; }
.foot-copy {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; font-size: 13px; opacity: .55; flex-wrap: wrap; gap: 14px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .seasons { grid-template-columns: repeat(2,1fr); }
  .destinations { grid-template-columns: repeat(2,1fr); }
  .featured { grid-template-columns: 1fr; min-height: 0; }
  /* Featured görsel: 16:9 oranı */
  .featured-img { min-height: 0; height: auto; aspect-ratio: 16/9; }
  /* Tek kolonda oklar görselin ortasına/iç kenarlarına otursun */
  .featured-arrow { top: 150px; width: 42px; height: 42px; font-size: 23px; }
  .featured-arrow--prev { right: auto; left: 12px;  margin: 0; }
  .featured-arrow--next { left: auto;  right: 12px; margin: 0; }
  .why { grid-template-columns: 1fr; gap: 48px; }
  .why-img { aspect-ratio: 16/9; }
  .newsletter { grid-template-columns: 1fr; gap: 32px; }
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .test { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .listing-grid { grid-template-columns: 1fr; }
  aside.filters { position: static; }
  .tour-grid { grid-template-columns: 1fr; }
  aside.booking { position: static; }
  .gallery { height: 380px; }
  .stats-detail { grid-template-columns: repeat(2,1fr); }
  .rel-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__main { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero-inner { padding: 90px 28px 130px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .search-card { flex-direction: column; border-radius: 18px; }
  .search-card .field { border-right: 0; border-bottom: 1px solid var(--line); }
  .search-card .field:last-of-type { border-bottom: 0; }
  .featured-body { padding: 32px 28px; }
  .featured-body h2 { font-size: 28px; }
  .section-head h2 { font-size: 32px; }
  section.block { padding-top: 72px; padding-bottom: 72px; }
  .filter-trigger { display: flex; }
  .listing-grid { gap: 0; }
  aside.filters { display: none; }
  aside.filters.is-open { display: block; margin-bottom: 24px; background: var(--cream); border-radius: var(--radius); padding: 28px; }
  .tours { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .lists { grid-template-columns: 1fr; }
  .day { grid-template-columns: 1fr; gap: 8px; }
  .day .label { position: static; display: flex; align-items: baseline; gap: 10px; }
  .pillars { grid-template-columns: 1fr; }
  .newsletter { padding: 40px 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3,1fr); height: auto; }
  .gallery .g { aspect-ratio: 5/3; }
  .gallery .g.main { grid-row: auto; }
  .rel-grid { grid-template-columns: 1fr; }
  .test { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .topbar__row { padding: 8px 18px; }
  .featured-strip { margin-top: 12px; }
  .seasons { grid-template-columns: 1fr 1fr; }
  .destinations { grid-template-columns: 1fr 1fr; }
}

/* ─── FOOTER LOGO ──────────────────────────────────────────── */
.foot-brand__logo-link { display:inline-block; margin-bottom:18px; }
.foot-brand__logo-img  { height:44px; width:auto; filter:brightness(0) invert(1); opacity:.9; }
.foot-socials { display:flex; gap:10px; margin-top:20px; }
.foot-social-btn {
  padding:8px 16px; border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  font-size:13px; color:#cfc8be; opacity:.8;
  transition:opacity .2s, border-color .2s;
}
.foot-social-btn:hover { opacity:1; border-color:var(--gold); color:var(--gold); }

/* ─── HAKKIMIZDA ─────────────────────────────────────────── */
.about-hero {
  position:relative; min-height:520px;
  display:flex; align-items:flex-end;
  background:#0c0a0d; overflow:hidden;
}
.about-hero__media {
  position:absolute; inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.7) 100%),
    url('../img/bg-about-hero.jpg') center/cover no-repeat;
}
.about-hero__inner { position:relative; z-index:2; color:#fff; padding:90px 28px; }
.about-hero__inner h1 { font-size:clamp(36px,5vw,60px); max-width:700px; margin:16px 0; color:#fff; }
.about-hero__inner h1 em { color:var(--gold); font-style:italic; }
.about-hero__inner p { color:rgba(255,255,255,.85); font-size:17px; max-width:540px; font-weight:300; }

/* DİKKAT: .about-story .container olduğu için yatay padding'i container'a
   bırakıyoruz (shorthand 'padding:100px 0' gutter'ı sıfırlıyordu). */
.about-story { padding-top:100px; padding-bottom:100px; }
.about-story__grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-story__text h2 { font-size:44px; margin:16px 0 24px; }
.about-story__text p { color:var(--ink-soft); font-size:16px; margin-bottom:16px; }
.about-story__text p em { font-style:italic; color:var(--burgundy); }
.about-story__text p:last-child { margin-bottom:0; }
.about-story__visual { position:relative; }
.about-story__img {
  aspect-ratio:4/5; border-radius:var(--radius); overflow:hidden;
  background:url('../img/bg-why.jpg') center/cover no-repeat;
}
.about-story__float {
  position:absolute; bottom:-20px; right:-20px;
  background:#fff; border-radius:18px; box-shadow:var(--shadow-lg);
  padding:20px 24px; display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.about-story__float-item { display:flex; flex-direction:column; align-items:center; }
.about-story__float-item .n { font-family:'Fraunces',serif; font-size:28px; color:var(--burgundy); line-height:1; }
.about-story__float-item .l { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.12em; margin-top:4px; text-align:center; }

.about-values { background:var(--cream); padding:100px 0; }
.values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:0; }
.value-card {
  background:#fff; border-radius:var(--radius); padding:32px 26px;
  border:1px solid var(--line); transition:transform .3s, box-shadow .3s;
}
.value-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.value-card__icon { font-size:28px; color:var(--burgundy); margin-bottom:18px; display:block; }
.value-card h3 { font-size:18px; font-family:'Outfit',sans-serif; font-weight:600; margin-bottom:10px; }
.value-card p { font-size:14px; color:var(--muted); line-height:1.6; }

.about-team { padding-top:100px; padding-bottom:100px; } /* yatay gutter container'dan */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.team-card { background:#fff; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); transition:transform .3s, box-shadow .3s; }
.team-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.team-card__photo { aspect-ratio:3/4; background-size:cover; background-position:center top; }
.team-card__body { padding:26px; }
.team-card__unvan { font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--burgundy); font-weight:600; margin-bottom:6px; }
.team-card__ad { font-size:22px; margin-bottom:12px; }
.team-card__bio { font-size:14px; color:var(--muted); line-height:1.65; }

.about-cta { background:var(--burgundy); padding:80px 0; }
.about-cta__inner {
  display:flex; justify-content:space-between; align-items:center; gap:40px; flex-wrap:wrap;
}
.about-cta__inner h2 { font-size:36px; color:#fff; margin-bottom:10px; }
.about-cta__inner p { color:rgba(255,255,255,.8); font-size:16px; }
.about-cta__actions { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.btn-wp {
  background:#25d366; color:#fff;
  padding:14px 26px; border-radius:999px;
  font-size:14px; font-weight:500; transition:background .2s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-wp:hover { background:#1ebe5a; }

/* ─── İLETİŞİM ─────────────────────────────────────────────── */
.contact-hero {
  background:var(--cream); border-bottom:1px solid var(--line);
  padding:80px 0 60px;
}
.contact-hero__inner .breadcrumb a { color:var(--muted); }
.contact-hero__inner h1 { font-size:clamp(32px,4.5vw,52px); margin:14px 0 16px; }
.contact-hero__inner h1 em { font-style:italic; color:var(--burgundy); }
.contact-hero__inner p { color:var(--muted); font-size:17px; font-weight:300; }

.contact-body { padding:80px 0 100px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; }

.contact-cards { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:36px; }
.contact-card {
  display:flex; align-items:center; gap:14px;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:18px 20px; transition:border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color:var(--burgundy); box-shadow:var(--shadow); }
.contact-card--wp  { border-color:#25d366; }
.contact-card--wp:hover { border-color:#1ebe5a; box-shadow:0 8px 24px -8px rgba(37,211,102,.3); }
.contact-card--wp .contact-card__icon { color:#25d366; }
.contact-card--ig  { border-color:#e1306c; }
.contact-card--ig:hover { border-color:#c13584; }
.contact-card--ig .contact-card__icon { color:#e1306c; }
.contact-card__icon { font-size:22px; color:var(--burgundy); flex-shrink:0; width:36px; text-align:center; }
.contact-card__label { font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-bottom:2px; }
.contact-card__value { font-size:15px; font-weight:600; color:var(--ink); }

.contact-addresses { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:32px; }
.contact-address {
  background:var(--cream); border-radius:14px; padding:22px;
  border:1px solid var(--line);
}
.contact-address__badge {
  display:inline-block; font-size:10px; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  background:var(--burgundy); color:#fff;
  padding:4px 10px; border-radius:999px; margin-bottom:10px;
}
.contact-address h3 { font-size:17px; font-family:'Outfit',sans-serif; font-weight:600; margin-bottom:8px; }
.contact-address p { font-size:14px; color:var(--muted); line-height:1.6; margin-bottom:12px; }
.contact-address__map-link { font-size:13px; color:var(--burgundy); font-weight:600; border-bottom:1px solid var(--burgundy); padding-bottom:2px; }

.contact-hours { background:#fff; border:1px solid var(--line); border-radius:14px; padding:22px; }
.contact-hours h4 { font-family:'Outfit',sans-serif; font-size:13px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--ink); margin-bottom:14px; }
.contact-hours__grid { display:flex; flex-direction:column; gap:10px; }
.contact-hours__row { display:flex; justify-content:space-between; font-size:14px; color:var(--ink-soft); padding-bottom:10px; border-bottom:1px solid var(--line); }
.contact-hours__row:last-child { border-bottom:0; padding-bottom:0; }

.contact-map-wrap { display:flex; flex-direction:column; }
.contact-map-label { background:var(--cream); border:1px solid var(--line); border-bottom:0; border-radius:14px 14px 0 0; padding:16px 20px; }
.contact-map-label span { font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); display:block; margin-bottom:4px; }
.contact-map-label strong { font-size:16px; font-weight:600; color:var(--ink); }
.contact-map { flex:1; min-height:400px; border-radius:0 0 14px 14px; overflow:hidden; border:1px solid var(--line); }
.contact-map iframe { display:block; }

.contact-cta-strip { background:var(--burgundy); padding:70px 0; }
.contact-cta-strip__inner { display:flex; justify-content:space-between; align-items:center; gap:40px; flex-wrap:wrap; }
.contact-cta-strip__inner h2 { font-size:32px; color:#fff; margin-bottom:8px; }
.contact-cta-strip__inner p { color:rgba(255,255,255,.7); font-size:15px; }
.contact-cta-strip__btns { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

/* Responsive — Hakkımızda & İletişim */
@media (max-width:1100px) {
  .values-grid { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .contact-map { min-height:320px; }
  .about-story__grid { grid-template-columns:1fr; }
  .about-story__visual { display:none; }
  .about-cta__inner { flex-direction:column; text-align:center; }
  .about-cta__actions { justify-content:center; }
}
@media (max-width:768px) {
  .values-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .contact-cards { grid-template-columns:1fr; }
  .contact-addresses { grid-template-columns:1fr; }
  .contact-cta-strip__inner { flex-direction:column; text-align:center; }
  .contact-cta-strip__btns { justify-content:center; }
  .about-hero__inner { padding:60px 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   UX/UI İYİLEŞTİRMELER — v1.1
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. MİNİMUM FONT BOYUTU — 12px altındakileri yükselt ──── */
.topbar { font-size: 13px; }
.kontenjan-badge { font-size: 12px; }
.tour-tag { font-size: 12px; }
.tour-region { font-size: 12px; }
.tour-meta { font-size: 13px; }
.tour-price__from, .tour-price__per { font-size: 12px; }
.stat .l, .stat-d .l { font-size: 12px; letter-spacing: .1em; }
.section-head h2 + p { font-size: 16px; }
.chk { font-size: 14px; }
.chk .ct { font-size: 13px; }
.breadcrumb { font-size: 13px; }
.eyebrow { font-size: 13px; }
.day .label .d { font-size: 13px; }
.trust .t { font-size: 12px; }
.book-note { font-size: 13px; }
.foot-brand__about { font-size: 14px; }
.rel-body .reg { font-size: 13px; }
.contact-card__label { font-size: 12px; }
.contact-hours h4 { font-size: 13px; }
.contact-hours__row { font-size: 14px; }
aside h3 { font-size: 13px; }

/* ─── 2. HERO — Daha etkileyici ────────────────────────────── */
.hero { min-height: 700px; }
.hero-inner { padding: 160px 28px 180px; }
.hero h1 { font-size: clamp(40px, 5.5vw, 78px); margin-bottom: 24px; }
.hero .lede { font-size: 19px; max-width: 580px; margin-bottom: 48px; line-height: 1.65; }
.eyebrow { font-size: 13px; letter-spacing: .2em; margin-bottom: 28px; }

/* Hero dots — daha belirgin */
.hero-dots { bottom: 32px; gap: 12px; }
.hero-dot { width: 10px; height: 10px; }
.hero-dot.active { transform: scale(1.4); }

/* ─── 3. FEATURED STRIP — Daha temiz ───────────────────────── */
.featured-strip { margin-top: -100px; }
.featured { border-radius: 28px; }
.featured-img { min-height: 460px; }
.featured-body { padding: 52px 56px; }
.featured-body h2 { font-size: 36px; line-height: 1.2; margin-bottom: 18px; }
.featured-body p { font-size: 15px; line-height: 1.7; color: var(--muted); }
.stats { padding: 24px 0; gap: 24px; }
.stat .n { font-size: 34px; }

/* ─── 4. SECTION SPACING — Daha nefesli ────────────────────── */
section.block { padding-top: 120px; padding-bottom: 120px; }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-size: 48px; margin-bottom: 16px; }

/* ─── 5. SEASON CARDS — Daha büyük ve etkili ───────────────── */
.seasons { gap: 24px; }
.season-card { padding: 32px; }
.season-card h3 { font-size: 24px; margin-bottom: 16px; }
.season-card .tag { font-size: 12px; letter-spacing: .2em; margin-bottom: 10px; }
.season-card .arrow {
  width: 42px; height: 42px;
  font-size: 20px;
}

/* ─── 6. DESTINATION CARDS — Bilgi alanı daha iyi ──────────── */
.destinations { gap: 24px; }
.dest .info { padding: 18px 20px 22px; }
.dest h4 { font-size: 18px; font-weight: 600; }
.dest .count { font-size: 13px; margin-top: 2px; display: block; }
.dest .pin { font-size: 18px; font-weight: 300; }

/* ─── 7. TOUR CARDS — Kart içi boşluklar ───────────────────── */
.tours { gap: 28px; }
.tour-body { padding: 26px; }
.tour-card h3 { font-size: 20px; line-height: 1.3; margin-bottom: 12px; }
.tour-meta { gap: 14px; margin-bottom: 10px; }
.tour-foot { padding-top: 20px; }
.tour-price__amt { font-size: 26px; }
.tour-cta { padding: 12px 22px; font-size: 14px; }

/* Kontenjan badge — daha okunaklı */
.kontenjan-badge {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}

/* ─── 8. EMPTY STATE — Filtre sıfır sonuç ──────────────────── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px 100px;
  color: var(--muted);
}
.no-results__icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block;
  opacity: .5;
}
.no-results h3 {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: 'Fraunces', serif;
}
.no-results p { font-size: 16px; margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }
.no-results__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--burgundy); color: #fff;
  padding: 14px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background .2s;
}
.no-results__btn:hover { background: var(--burgundy-deep); }

/* ─── 9. FILTER BAR — Daha temiz ───────────────────────────── */
.filter-bar { border-radius: 20px; padding: 16px; gap: 8px; margin-top: -36px; }
.filter-bar .field { padding: 12px 20px; }
.filter-bar label { font-size: 11px; font-weight: 700; letter-spacing: .14em; margin-bottom: 4px; }
.filter-bar input, .filter-bar select { font-size: 15px; }
.filter-bar .go { padding: 0 32px; border-radius: 16px; font-size: 14px; font-weight: 600; }

/* ─── 10. SIDEBAR FİLTRE — Daha kullanışlı ─────────────────── */
.filter-group { padding-bottom: 26px; margin-bottom: 26px; }
aside h3 { font-size: 13px; font-weight: 700; letter-spacing: .16em; color: var(--ink); margin-bottom: 14px; }
.chk { padding: 9px 0; }
.chk .lbl { margin-left: 10px; font-size: 14px; }
.clear-btn { padding: 13px; font-size: 14px; font-weight: 500; border-radius: 12px; }

/* ─── 11. TUR DETAY — İyileştirmeler ───────────────────────── */
.tour-title-row { margin-bottom: 32px; }
.tour-title-row h1 { font-size: clamp(34px, 4vw, 54px); line-height: 1.1; }
.tour-quick { gap: 24px; font-size: 14px; margin-top: 12px; }
.tour-quick span { gap: 8px; }

/* Gallery */
.gallery { height: 540px; gap: 12px; border-radius: 20px; }

/* Stats detail */
.stats-detail { gap: 16px; margin-bottom: 40px; }
.stat-d { padding: 24px; border-radius: 16px; }
.stat-d .n { font-size: 28px; }

/* Günlük program */
.day { padding: 32px 0; gap: 28px; }
.day .label .n { font-size: 40px; }
.day h3 { font-size: 20px; margin-bottom: 8px; }
.day p { font-size: 15px; line-height: 1.7; }
.day .loc { font-size: 13px; letter-spacing: .12em; margin-bottom: 12px; }

/* Booking card */
.book-price .amt { font-size: 38px; }
.book-cta { padding: 18px; font-size: 16px; letter-spacing: .03em; }

/* ─── 12. ABOUT & CONTACT — Boşluklar ──────────────────────── */
.about-story { padding-top: 110px; padding-bottom: 110px; }
.about-story__text h2 { font-size: 46px; }
.about-story__text p { font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.team-card__ad { font-size: 22px; }
.team-card__bio { font-size: 14px; line-height: 1.7; }
.team-card__body { padding: 28px; }

.contact-hero { padding: 90px 0 70px; }
.contact-hero__inner h1 { font-size: clamp(34px, 4vw, 54px); }
.contact-card { padding: 20px 24px; gap: 16px; }
.contact-card__value { font-size: 15px; font-weight: 700; }

/* ─── 13. FOOTER — Daha dengeli ────────────────────────────── */
.site-footer { padding: 100px 0 36px; }
.foot-grid { gap: 64px; padding-bottom: 64px; }
.site-footer h5 { font-size: 12px; letter-spacing: .2em; margin-bottom: 20px; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer a { font-size: 14px; line-height: 1.5; }
.foot-brand__about { font-size: 14px; line-height: 1.75; opacity: .75; margin-bottom: 20px; }
.foot-brand__contact { font-size: 14px; line-height: 2; }
.foot-copy { padding-top: 28px; font-size: 13px; }
.foot-social-btn { padding: 9px 18px; font-size: 13px; font-weight: 500; }

/* ─── 14. FOCUS — Accessibility ────────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── 15. SCROLL PROGRESS — Hero ───────────────────────────── */
.hero-slide { transition: opacity .9s ease; }

/* ─── MOBİL İYİLEŞTİRMELER ─────────────────────────────────── */
@media (max-width: 768px) {
  section.block { padding-top: 80px; padding-bottom: 80px; }
  .hero { min-height: 0; }
  .hero-inner { padding: 96px 20px 48px; }
  .hero h1 { margin-bottom: 18px; }
  .hero .lede { font-size: 17px; margin-bottom: 32px; }
  .search-card { gap: 0; }
  .search-card .field { padding: 14px 18px; }

  /* Featured artık hero'nun üstüne BİNMEZ — temiz aralık */
  .featured-strip { margin-top: 16px; }
  .featured-body { padding: 32px 28px; }
  .featured-body h2 { font-size: 26px; }
  .stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .stat .n { font-size: 26px; }

  .seasons { grid-template-columns: 1fr 1fr; gap: 14px; }
  .season-card { padding: 22px; }
  .season-card h3 { font-size: 18px; }
  .destinations { grid-template-columns: 1fr 1fr; gap: 14px; }

  .tours { gap: 18px; }
  .gallery { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery .g { aspect-ratio: 4/3; }
  .gallery .g.main { grid-column: 1 / -1; aspect-ratio: 16/9; grid-row: auto; }
  .stats-detail { grid-template-columns: 1fr 1fr; }
  .tour-grid { gap: 40px; }
  /* Gün satırı: label çok dar kalıyor (tarih taşıyor) →
     Dikey stack yap, label kompakt yatay şerit olsun */
  .day {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .day .label {
    position: static;
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .day .label .d {
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .day .label .n { font-size: 22px; line-height: 1; }
  /* Tarih — label'ın içinde, numaranın yanında ufak */
  .day .label .day-date {
    font-size: 12px;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    margin-left: 4px;
    align-self: center;
  }
  /* wysiwyg içeriğindeki p/ul/ol sol boşluklarını sıfırla */
  .day > div > div p,
  .day > div > div ul,
  .day > div > div ol {
    margin-left: 0;
    padding-left: 0;
  }
  .day > div > div ul li,
  .day > div > div ol li {
    margin-left: 1.2em;
  }
  .book-price .amt { font-size: 32px; }

  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .values-grid { gap: 16px; }
  .value-card { padding: 26px 22px; }

  .contact-grid { gap: 40px; }
  .contact-cards { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 80px 18px 40px; }
  .container { padding: 0 18px; }
  .seasons { grid-template-columns: 1fr 1fr; gap: 14px; }
  .season-card { aspect-ratio: 3/4; }
  .tour-body { padding: 20px; }
  .tour-card h3 { font-size: 18px; }
  .featured-body h2 { font-size: 24px; }
  .section-head h2 { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBİL & İ DÜZELTME — v1.2
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. TOPBAR MOBİL — tüm iletişim bilgileri görünür ─────── */
/* Not: mobil yerleşim (ortalanmış) dosya sonundaki v1.3 bloğunda. */

/* ─── 2. TÜRKÇE İ SORUNU — text-transform:uppercase kaldır ── */
/* Küçük 'i' → 'I' (yanlış), → 'İ' (doğru).
   Çözüm: label'ları uppercase yazmıyoruz, font-weight ile vurguluyoruz. */
.search-card label,
.filter-bar label,
.book-field label {
  text-transform: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
}

/* ─── 3. SEZON & DESTINATION — eşit kenar boşluğu ──────────── */
/* Not: .seasons / .destinations KENDİ yatay padding'ini kullanmaz.
   Dış boşluk yalnızca .container'dan gelir → section-head ile
   kartlar aynı hizada, tüm bölümlerde eşit gutter. */

/* ─── 4. WHY US — yapışık durma ─────────────────────────────── */
@media (max-width: 768px) {
  .why h2 { font-size: 32px; }
  .why .lede { font-size: 15px; }
  .features { grid-template-columns: 1fr; gap: 22px; }
}

/* ─── 5. TURLAR — mobil düzeni ──────────────────────────────── */
@media (max-width: 768px) {
  /* Üst filtre çubuğu mobilde tamamen gizli — sidebar filtre var */
  .filter-bar { display: none !important; }

  /* Listing bölümü: container padding'i yeterli, ekstra sıfırlama yok */
  .listing { padding-top: 24px; padding-bottom: 72px; }

  /* Grid: 1 kolon, sıfır gap — container padding kenarlara yeter */
  .listing-grid { grid-template-columns: 1fr; gap: 0; }

  /* Tur sonuçları: container'ın içinde, boşluk yeterli */
  .results { min-width: 0; }
  .results-bar { margin-bottom: 14px; }

  /* Tur kartları: 1 kolon, eşit dikey aralık */
  .tours { grid-template-columns: 1fr; gap: 16px; }

  /* Filter trigger butonu margin */
  .filter-trigger { margin-bottom: 14px; }

  /* Sidebar açıkken yatay padding container'dan gelsin */
  aside.filters.is-open {
    margin: 0 0 20px;
    border-radius: var(--radius);
    padding: 24px;
    background: var(--cream);
  }
}

/* ─── 6. TUR DETAY GALERİ — MOBİLDE SLIDER ──────────────────── */
@media (max-width: 768px) {
  .gallery {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    height: auto !important;
    border-radius: var(--radius);
    padding: 0;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery .g,
  .gallery .g.main {
    flex: 0 0 88vw;
    aspect-ratio: 16/9 !important;
    min-width: 0;
    scroll-snap-align: start;
    border-radius: 12px;
    grid-row: auto !important;
    grid-column: auto !important;
  }
  /* Scroll indicator */
  .gallery::after {
    content: '';
    flex: 0 0 1px;
  }
}

/* ─── 7. HELP CARD — WhatsApp butonu ────────────────────────── */
.help-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.help-card__phone {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--burgundy);
  display: block;
}
.help-card__wp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
  text-decoration: none;
}
.help-card__wp:hover { background: #1ebe5a; }

/* ─── 8. GENEL MOBİL CONTAINER PADDING ──────────────────────── */
@media (max-width: 768px) {
  .block.container,
  section.block .container,
  .block > .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ─── HEADER DROPDOWN ACTIVE FIX ───────────────────────────── */
/* has-arrow + active birlikte olunca underline bar yerine
   sadece renk değişimi göster, ok karakteri korunsun */
.nav__dropdown-wrap .has-arrow.active::after {
  content: '▾';
  position: static;
  display: inline-block;
  height: auto; width: auto;
  background: transparent;
  border-radius: 0;
  color: var(--burgundy);
  opacity: .7;
  margin-left: 4px;
  font-size: 10px;
  vertical-align: middle;
}

/* ─── BOOKING KONTENJAN BANDI ───────────────────────────────── */
.book-kontenjan-band {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.book-kontenjan-band--ok {
  background: rgba(30,130,60,.11);
  border-color: rgba(30,130,60,.22);
  color: #1a6e35;
}
.book-kontenjan-band--az {
  background: rgba(210,90,0,.11);
  border-color: rgba(210,90,0,.25);
  color: #b84e00;
}
.book-kontenjan-band--dolu {
  background: rgba(80,80,80,.10);
  border-color: rgba(80,80,80,.2);
  color: #666;
}
.bkb-icon { font-size: 14px; }
.bkb-label { line-height: 1.4; }
.book-band-divider {
  border-bottom: 1px solid var(--line);
}

/* ─── LEGAL PAGES ────────────────────────────────────────────── */
.legal-section { padding: 110px 0 80px; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h1 { font-size: clamp(26px,3.5vw,40px); margin-bottom: 32px; }
.legal-body { font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.legal-body h2 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 34px 0 12px; line-height: 1.35; }
.legal-body h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.legal-body h2:first-child, .legal-body h3:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 14px; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--brand, #b8860b); text-decoration: underline; }
.legal-body ul.legal-list,
.legal-body ul, .legal-body ol { margin: 0 0 16px 1.25em; padding: 0; }
.legal-body li { margin-bottom: 8px; }
.legal-body .legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 14px; }
.legal-body .legal-table td,
.legal-body .legal-table th { border: 1px solid #e6e2da; padding: 10px 12px; vertical-align: top; text-align: left; }
.legal-body .legal-table td:first-child { font-weight: 600; color: var(--ink); }
@media (max-width: 600px) {
  .legal-body .legal-table { display: block; overflow-x: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   UI POLISH KATMANI — mikro-etkileşimler, scroll-reveal, erişilebilirlik
   (tamamı eklemeli; mevcut kuralları bozmaz)
   ═══════════════════════════════════════════════════════════════ */

/* Erişilebilir klavye odak halkası */
:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; border-radius: 6px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

/* Sayfa içi yumuşak kaydırma */
html { scroll-behavior: smooth; }

/* ── Tur kartı: görsel yakınlaşma ── */
.tour-ph__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.001);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: transform; z-index: 0;
}
.tour-card:hover .tour-ph__img,
.tour-card:focus-within .tour-ph__img { transform: scale(1.07); }
.tour-card { transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s; }

/* ── Buton mikro-etkileşimleri ── */
.tour-cta { transition: background .25s, transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s; }
.tour-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(122,31,43,.55); }
.book-cta { transition: background .25s, transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s; }
.book-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(122,31,43,.5); }
.btn-primary { transition: background .25s, transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s; }
.btn-primary:hover { box-shadow: 0 10px 26px -8px rgba(122,31,43,.5); }

/* ── Animasyonlu link altı çizgisi (footer + topbar sosyal) ── */
.site-footer ul a, .topbar__socials a { position: relative; }
.site-footer ul a::after, .topbar__socials a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.site-footer ul a:hover::after, .topbar__socials a:hover::after {
  transform: scaleX(1); transform-origin: left;
}

/* ── Sezon / arama kartı: yumuşak kalkış ── */
.season-card, .search-card { transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s; }
.season-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ── Scroll-reveal (JS .has-reveal ekler; JS yoksa hiçbir şey gizlenmez) ── */
.has-reveal .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.has-reveal .reveal.is-in { opacity: 1; transform: none; }

/* ── Sticky header: kaydırınca küçülme + güçlü blur ── */
.site-header { transition: box-shadow .3s, background .3s; }
.nav { transition: padding .3s cubic-bezier(.2,.7,.2,1); }
.logo img { transition: height .3s cubic-bezier(.2,.7,.2,1), filter .3s; }
.site-header.scrolled {
  background: rgba(255,255,255,.8);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
}
.site-header.scrolled .nav { padding-top: 10px; padding-bottom: 10px; }
.site-header.scrolled .logo img { height: 38px; }

/* ── Galeri tile'ları (buton reset) ── */
.gallery button.g {
  -webkit-appearance: none; appearance: none;
  border: 0; padding: 0; margin: 0; font: inherit;
  display: block; width: 100%; height: 100%;
}

/* ── Galeri Lightbox ── */
.ns-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,12,12,.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.ns-lightbox.is-open { opacity: 1; visibility: visible; }
.ns-lightbox__img {
  max-width: 88vw; max-height: 84vh; object-fit: contain;
  border-radius: 10px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
  transform: scale(.96); transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.ns-lightbox.is-open .ns-lightbox__img { transform: scale(1); }
.ns-lb-btn {
  position: absolute; color: #fff; cursor: pointer;
  width: 52px; height: 52px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.ns-lb-btn:hover { background: rgba(255,255,255,.26); }
.ns-lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.ns-lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.ns-lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.ns-lb-next:hover { transform: translateY(-50%) scale(1.08); }
.ns-lb-close { top: 3vh; right: 3vw; }
.ns-lb-count {
  position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85); font-size: 14px; letter-spacing: .05em;
}
@media (max-width: 700px) {
  .ns-lb-prev { left: 8px; } .ns-lb-next { right: 8px; }
  .ns-lb-btn { width: 44px; height: 44px; font-size: 18px; }
  .ns-lightbox__img { max-width: 94vw; }
}
body.ns-lb-open { overflow: hidden; }

/* ── Hareketi azalt tercihine saygı ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .has-reveal .reveal { opacity: 1 !important; transform: none !important; }
  .tour-card:hover .tour-ph__img { transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBİL DÜZELTME — v1.3
   Header sadeleştirme, topbar tek satır, eşit kenar boşluğu.
   Dosya sonunda → cascade'de bu kurallar kazanır.
   ═══════════════════════════════════════════════════════════════ */
/* Yatay taşmayı engelle — html'de olmalı, body'de olursa
   position:fixed lightbox iOS Safari'de kırılıyor */
html { overflow-x: hidden; }

@media (max-width: 1100px) {
  /* "Neden Nova Select" float kutusu görselin dışına taşmasın */
  .why-img .float { right: 0; }
}

@media (max-width: 768px) {
  /* ── Header: logo + Rezervasyon + hamburger ── */
  .nav { padding: 16px 20px; gap: 12px; flex-wrap: nowrap; }
  .logo { flex-shrink: 0; }
  .logo img { height: 36px; }
  .nav__actions { gap: 10px; flex-shrink: 0; }
  .nav-cta { display: inline-flex; padding: 10px 16px; font-size: 13px; }
  .site-header.scrolled .nav { padding-top: 10px; padding-bottom: 10px; }
  .site-header.scrolled .logo img { height: 32px; }

  /* Hero: yeterli üst boşluk — header yüksekliği ~68px + nefes */
  .hero-inner { padding-top: 72px; padding-bottom: 48px; }

  /* Topbar mobilden tamamen kaldır */
  .topbar { display: none; }
  /* Ara butonu hero'da gizle */
  .search-card .go { display: none; }
}

/* ── Tur detay mobil paddinglar ── */
@media (max-width: 768px) {
  .tour-hero { padding-top: 20px; }
  .tour-body-section { padding-top: 16px; padding-bottom: 60px; }
  .tour-grid { gap: 32px; }
  .related { padding-top: 48px; padding-bottom: 48px; margin-top: 0; }
}

/* ── Container mobil yatay padding ── */
@media (max-width: 480px) {
  .container { padding-left: 20px; padding-right: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   TUR DETAY + ÖONE ÇIKAN — MOBİL DÜZELTME (v1.3)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Tur başlığı — uzun isimler için küçült */
  .tour-title-row h1 { font-size: clamp(22px, 6vw, 32px); line-height: 1.2; }
  .tour-title-row { margin-bottom: 20px; gap: 16px; }

  /* Öne çıkan sol/sağ oklar — mobilde gizle, nokta navigasyon yeterli */
  .featured-arrow { display: none; }
  .featured-shell { padding: 0; }
}

@media (max-width: 480px) {
  .tour-title-row h1 { font-size: clamp(20px, 5.5vw, 28px); }
}

/* ═══════════════════════════════════════════════════════════════
   HAKKIMIZDA — MOBİL DÜZELTME (v1.3)
   - Dikey boşlukları azalt, hero'yu küçült
   - Gizlenen istatistikleri (15+ / 12K+ / 68 / 4.9) geri getir:
     büyük görseli gizle, float kartı statik bir grid yap.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Story görseli yerine istatistikleri TEMİZ bir kart olarak göster */
  .about-story__visual { display: block; margin-top: 4px; }
  .about-story__img { display: none; }
  .about-story__float {
    position: static; inset: auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px; padding: 22px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  /* Eşit dikey ritim + kenar boşluğu container'dan */
  .about-hero { min-height: 400px; }
  .about-hero__inner { padding: 56px 18px; }
  .about-story { padding-top: 60px; padding-bottom: 60px; }
  .about-values { padding-top: 60px; padding-bottom: 60px; }
  .about-team { padding-top: 60px; padding-bottom: 60px; }
  .about-cta { padding: 56px 0; }
  .about-story__grid { gap: 32px; }
  .about-story__text h2 { font-size: 30px; }
  .about-story__float-item .n { font-size: 24px; }
  .about-cta__inner h2 { font-size: 28px; }
}

@media (max-width: 560px) {
  /* İstatistik kartı dar ekranda 2x2 */
  .about-story__float { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ─── Fiyat Tablosu (Tur Detay) ─────────────────────────────── */
.fiyat-tablosu {
  display: flex; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 4px;
}
.fiyat-kol {
  flex: 1; padding: 18px 16px; text-align: center;
  border-right: 1px solid var(--line);
}
.fiyat-kol:last-child { border-right: 0; }
.fiyat-kol__baslik {
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: .06em; margin-bottom: 10px; line-height: 1.4;
}
.fiyat-kol__tl {
  font-size: 13px; color: var(--muted); margin-bottom: 4px;
}
.fiyat-kol__doviz {
  font-size: 20px; font-family: 'Fraunces', serif; color: var(--ink); font-weight: 500;
}
@media (max-width: 600px) {
  .fiyat-tablosu { flex-wrap: wrap; }
  .fiyat-kol { flex: 0 0 50%; border-bottom: 1px solid var(--line); }
  .fiyat-kol:nth-child(even) { border-right: 0; }
}

/* ─── Book-card: +/− katılımcı ve oda seçimi ────────────────── */
.bk-kisi-grid { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.bk-kisi-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.bk-kisi-row:last-child { border-bottom: 0; }
.bk-kisi-label { font-size: 14px; color: var(--ink-soft); }
.bk-kisi-label small { font-size: 11px; color: var(--muted); margin-left: 4px; }
.bk-kisi-ctrl { display: flex; align-items: center; gap: 10px; }
.bk-qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  font-size: 16px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
}
.bk-qty-btn:hover { border-color: var(--burgundy); background: var(--cream); }
.bk-qty-val { min-width: 20px; text-align: center; font-size: 15px; font-weight: 600; }

.bk-oda-sec { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.bk-oda-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.bk-oda-row:hover { border-color: var(--burgundy); background: #fdf7f7; }
.bk-oda-row.active { border-color: var(--burgundy); background: #fdf7f7; }
.bk-oda-isim { font-size: 14px; font-weight: 500; color: var(--ink); }
.bk-oda-fiyat { font-size: 14px; color: var(--burgundy); font-weight: 600; }
.bk-oda-fiyat small { font-weight: 400; color: var(--muted); font-size: 12px; }

.bk-toplam {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-top: 2px solid var(--line); margin-bottom: 14px;
}
.bk-toplam__label { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.bk-toplam__fiyat { font-size: 22px; font-family: 'Fraunces', serif; color: var(--burgundy); font-weight: 600; }

/* ─── Hero eyebrow — mobilde gizle ─────────────────────────── */
@media (max-width: 768px) {
  .hero-inner .eyebrow { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED KART — TAM MOBİL YENİDEN YAZIMI (v1.4)
   ≤1100px: tek kolon, 16:9 görsel, temiz body
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Görsel: kesinlikle 16:9, min-height override'ı sıfırla */
  .featured-img {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    width: 100%;
  }
  /* Body: rahat padding */
  .featured-body { padding: 28px 24px; }
  .featured-body h2 { font-size: 22px; line-height: 1.25; margin-bottom: 12px; }
  .featured-body p  { font-size: 14px; margin-bottom: 16px; -webkit-line-clamp: 3; }

  /* Stats: 3 kolon, daha kompakt */
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px 0;
    margin-bottom: 16px;
  }
  .stat .n { font-size: 20px; }
  .stat .l { font-size: 11px; margin-top: 3px; }

  /* Buton + tarih: dikey alt alta, tam genişlik */
  .featured-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .featured-link {
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }
  .featured-tarih {
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--ink);
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  /* Tag: üstte küçük */
  .featured-body .tag { font-size: 11px; margin-bottom: 8px; }

  /* Fiyat stat kutusunda font düzelt */
  .stat:last-child .n { font-size: 18px; }
}
