@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap");

/* ===== VARIABLES ===== */
:root {
  --primary:       #16a99a;
  --primary-dark:  #0d8c7e;
  --primary-deep:  #0a6b5f;
  --accent:        #ff6b35;
  --accent-dark:   #e55a25;
  --text:          #1a1a2e;
  --text-soft:     #4a5568;
  --text-muted:    #8896a4;
  --bg:            #f4f6f8;
  --surface:       #ffffff;
  --border:        #e8ecf0;
  --border-light:  #f0f4f7;
  --shadow-xs:  0 1px 4px rgba(26,26,46,.06);
  --shadow-sm:  0 4px 16px rgba(26,26,46,.08);
  --shadow-md:  0 12px 40px rgba(26,26,46,.12);
  --shadow-lg:  0 24px 64px rgba(26,26,46,.14);
  --r:  10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --max: 1170px;
  --font-h: "Poppins", system-ui, sans-serif;
  --font-b: "DM Sans", system-ui, sans-serif;
  /* Üst çubuk + navbar: tüm sayfalarda aynı (anasayfa ölçeği) */
  --header-shell-max: var(--max);
  --header-shell-pad-x: 1.25rem;
  --header-shell-pad-y: 0.875rem;
  --header-offset-top: 1.45rem;
  --topbar-font-size: 0.75rem;
  --nav-link-font-size: 0.8125rem;
  --nav-link-gap-x: 0.85rem;
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== TOP INFO BAR ===== */
.top-bar {
  background: transparent;
  color: rgba(255,255,255,.88);
  font-family: var(--font-b);
  font-size: var(--topbar-font-size);
  padding: 0.4rem var(--header-shell-pad-x);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
  transition: background .3s;
}
.top-bar.scrolled { background: rgba(20,30,35,.7); }
.top-bar__inner {
  max-width: var(--header-shell-max);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .4rem .75rem;
}
.top-bar a { color: rgba(255,255,255,.88); }
.top-bar a:hover { color: #fff; text-decoration: none; }
.top-bar__items {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.top-bar__badge {
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  padding: .15rem .6rem;
  font-weight: 600;
  font-family: var(--font-h);
  font-size: .6875rem;
}
.top-bar__right { display: flex; align-items: center; gap: .75rem; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .6875rem;
  font-weight: 600;
  font-family: var(--font-h);
}
.lang-switch a {
  color: rgba(255,255,255,.5);
  padding: .15rem .4rem;
  border-radius: 3px;
  transition: color .15s, background .15s;
}
.lang-switch a:hover { color: #fff; text-decoration: none; }
.lang-switch a.active {
  color: #fff;
  background: rgba(255,255,255,.18);
}

/* ===== HEADER ===== */
.site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 199;
  border-bottom: none;
  box-shadow: none;
  padding-top: var(--header-offset-top);
  transition: background .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(20,30,35,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__inner {
  max-width: var(--header-shell-max);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: var(--header-shell-pad-y) var(--header-shell-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.site-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.site-logo:hover { text-decoration: none; }
.site-logo__slogan {
  font-size: 0.5625rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
  margin-top: -.1rem;
}
.nav-main {
  display: flex;
  align-items: center;
  font-family: var(--font-h);
  gap: 0.15rem var(--nav-link-gap-x);
}
.nav-main a {
  color: rgba(255,255,255,.8);
  font-family: var(--font-h);
  font-weight: 500;
  font-size: var(--nav-link-font-size);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-main a:hover { color: #fff; text-decoration: none; }
.nav-main a.is-active { color: #fff; border-bottom-color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  border: none !important;
  padding: 0.4rem 0.95rem !important;
  border-radius: var(--r) !important;
  font-family: var(--font-h) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
  transition: background .15s, transform .12s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: .5rem .9rem;
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font-b);
  font-size: .875rem;
}

/* Mobil menü perdesi (js/site-nav.js ekler) */
.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 30, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.3s;
  z-index: 196;
}
.nav-drawer-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 7rem 1.25rem 5.5rem;
  overflow: hidden;
  background: #0a4a44;
}
.hero--home {
  min-height: 100vh;
  padding: 8rem 1.25rem 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../deneme.jpg") center / cover no-repeat;
  opacity: .32;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--video .hero__bg { display: none; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,74,68,.93) 0%,
    rgba(13,140,126,.72) 50%,
    rgba(22,169,154,.45) 100%
  );
}
.hero__overlay--dark {
  background: rgba(0,0,0,.35);
}
.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-family: var(--font-h);
  border: 1px solid rgba(255,255,255,.25);
}
.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0 auto 1.25rem;
  max-width: 760px;
  letter-spacing: -.03em;
}
.hero__lead {
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--lg { padding: .85rem 2rem; font-size: 1rem; }
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-hint span::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: .3; }
}

/* ===== HERO SEARCH BAR ===== */
.hero__search {
  margin-top: 2rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.hero-search-form {
  display: flex;
  background: rgba(255,255,255,.95);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.hero-search-input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: var(--font-b);
  background: transparent;
  color: var(--text);
  outline: none;
}
.hero-search-input::placeholder { color: var(--text-muted); }
.hero-search-btn {
  background: var(--accent);
  border: none;
  padding: 0 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.hero-search-btn svg { stroke: #fff; }
.hero-search-btn:hover { background: #d35400; }
.hero-search-results {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}
.hero-search-results.active { display: block; }
.hero-search-results a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.hero-search-results a:last-child { border-bottom: none; }
.hero-search-results a:hover { background: var(--bg); text-decoration: none; }
.hero-search-results img {
  width: 50px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
}
.hero-search-results .sr-info { flex: 1; }
.hero-search-results .sr-name { font-weight: 600; font-size: .9rem; }
.hero-search-results .sr-type { font-size: .75rem; color: var(--text-muted); }
.hero-search-results .sr-empty {
  padding: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
}

/* ===== DESTINATION GRID ===== */
.dest-section { padding-bottom: 3rem; }
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 240px;
  display: block;
  text-decoration: none;
}
.dest-card--wide { grid-column: span 2; min-height: 320px; }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .45s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.08) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  transition: background .3s;
}
.dest-card:hover .dest-card__overlay { background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.15) 55%); }
.dest-card:hover { text-decoration: none; }
.dest-card__tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 999px;
  margin-bottom: .5rem;
  width: fit-content;
  font-family: var(--font-h);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dest-card h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 .25rem;
  line-height: 1.2;
}
.dest-card p {
  font-size: .875rem;
  opacity: .85;
  margin: 0;
}
@media (max-width: 768px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card--wide { grid-column: span 1; min-height: 240px; }
}

/* ===== DARK SECTION ===== */
.section--dark {
  background-color: #0f1e23;
  padding: 4rem 1.25rem;
}
.section--parallax {
  position: relative;
  background-color: #0f1e23;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.section--services-bg {
  background-image: url("../pexels-menderes-kahraman-639076294-17586287.jpg") !important;
}
.section--parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,30,35,.75);
  z-index: 0;
}
.section--parallax > * { position: relative; z-index: 1; }
@supports (-webkit-touch-callout: none) {
  .section--parallax { background-attachment: scroll !important; }
}
.section__head--light .section__eyebrow {
  color: var(--accent);
  border-color: rgba(255,107,53,.3);
  background: rgba(255,107,53,.1);
}
.section__head--light h2 { color: #fff; }

/* ===== ICON STRIP ===== */
.icon-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.icon-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s, transform .15s;
}
.icon-strip__item:hover { color: #fff; transform: translateY(-4px); text-decoration: none; }
.icon-strip__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.icon-strip__circle svg { stroke: rgba(255,255,255,.75); transition: stroke .2s; }
.icon-strip__item:hover .icon-strip__circle {
  background: var(--accent);
  border-color: var(--accent);
}
.icon-strip__item:hover .icon-strip__circle svg { stroke: #fff; }
@media (max-width: 768px) {
  .icon-strip { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (max-width: 480px) {
  .icon-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SERVICES DUAL COLUMN ===== */
.services-dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.services-dual__col {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2rem 2.5rem;
}
.services-dual__title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--accent);
}
.services-dual__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-dual__list li {
  color: rgba(255,255,255,.85);
  padding: .6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: .95rem;
}
.services-dual__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 768px) {
  .services-dual { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-dual__col { padding: 1.5rem; }
}

/* ===== FEATURED TOURS ===== */
.featured-tours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ft-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.ft-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ft-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.ft-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.ft-card:hover .ft-card__img img { transform: scale(1.05); }
.ft-card__duration {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: var(--r);
  font-family: var(--font-h);
  backdrop-filter: blur(4px);
}
.ft-card__body { padding: 1.25rem; }
.ft-card__region {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .35rem;
  font-family: var(--font-h);
}
.ft-card__body h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 .35rem;
  color: var(--text);
  line-height: 1.3;
}
.ft-card__body p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.ft-card__actions { display: flex; gap: .5rem; }
@media (max-width: 920px) { .featured-tours { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .featured-tours { grid-template-columns: 1fr; } }

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.why-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.why-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(22,169,154,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item strong { display: block; font-size: .9rem; color: var(--text); font-family: var(--font-h); margin-bottom: .15rem; }
.why-item span { font-size: .8rem; color: var(--text-muted); line-height: 1.45; }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== ADVENTURE CTA ===== */
.adv-cta {
  position: relative;
  padding: 6rem 1.25rem;
  text-align: center;
  overflow: hidden;
  background: url("../pexels-gaborbalazs97-27864571.jpg") center / cover no-repeat;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .adv-cta { background-attachment: scroll; }
}
.adv-cta__bg { display: none; }
.adv-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.adv-cta__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.adv-cta__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  font-family: var(--font-h);
}
.adv-cta h2 {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.adv-cta p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 2rem;
}
.adv-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .6rem;
  font-size: .9375rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ===== SPLIT ROUNDED IMG ===== */
.split__img--rounded img { border-radius: var(--r-xl); }

/* ===== SEARCH PANEL ===== */
.search-panel {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.9);
}
.search-panel__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: .85rem;
  align-items: end;
}
.search-panel label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: .3rem;
  font-family: var(--font-h);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.search-panel select,
.search-panel input {
  width: 100%;
  padding: .65rem .8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: .9375rem;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.search-panel select:focus,
.search-panel input:focus { border-color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--r);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .14s, box-shadow .14s, background .14s, filter .14s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,107,53,.38);
}
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 8px 28px rgba(255,107,53,.48); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,.12); }
.btn--outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--search {
  background: var(--primary-dark);
  color: #fff;
  white-space: nowrap;
  padding: .7rem 1.35rem;
  box-shadow: 0 4px 14px rgba(13,140,126,.35);
}
.btn--search:hover { background: var(--primary-deep); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.25rem;
}
.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.trust-icon {
  width: 38px;
  height: 38px;
  background: rgba(22,169,154,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== PROMO BANNERS ===== */
.promo-grid {
  max-width: var(--max);
  margin: 2.75rem auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.promo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.5rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.promo-card__bg {
  position: absolute;
  inset: 0;
  background: url("../deneme.jpg") center / cover no-repeat;
  opacity: .35;
  transition: opacity .3s, transform .3s;
}
.promo-card:hover .promo-card__bg { opacity: .42; transform: scale(1.03); }
.promo-card__overlay {
  position: absolute;
  inset: 0;
}
.promo-card--blue   .promo-card__overlay { background: linear-gradient(145deg,rgba(9,107,96,.9) 0%,rgba(13,140,126,.75) 100%); }
.promo-card--coral  .promo-card__overlay { background: linear-gradient(145deg,rgba(180,60,20,.88) 0%,rgba(220,90,40,.72) 100%); }
.promo-card--plum   .promo-card__overlay { background: linear-gradient(145deg,rgba(60,30,90,.88) 0%,rgba(100,50,140,.72) 100%); }
.promo-card__body { position: relative; z-index: 1; }
.promo-card__tag {
  display: inline-block;
  background: rgba(255,255,255,.22);
  color: rgba(255,255,255,.95);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .5rem;
  font-family: var(--font-h);
}
.promo-card h3 {
  font-family: var(--font-h);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .35rem;
  line-height: 1.25;
}
.promo-card p {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  margin: 0 0 .85rem;
  line-height: 1.45;
}
.promo-card .btn {
  font-size: .8rem;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  align-self: flex-start;
}
.promo-card .btn:hover { background: rgba(255,255,255,.35); }

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 1.25rem;
}
.section--alt { background: var(--surface); }
.section--dark {
  background: var(--primary-deep);
  color: #fff;
}
.section__head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin: 0 0 .6rem;
}
.section__head h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -.025em;
}
.section--dark .section__head h2 { color: #fff; }
.section--dark .section__eyebrow { color: rgba(255,255,255,.7); }
.section__intro {
  max-width: 600px;
  margin: .8rem auto 0;
  color: var(--text-soft);
  font-size: .975rem;
}
.section--dark .section__intro { color: rgba(255,255,255,.78); }
.container { max-width: var(--max); margin: 0 auto; }

/* ===== SERVICE ICONS GRID ===== */
.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 1.1rem;
}
.service-icon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.2rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: block;
}
.service-icon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary);
  text-decoration: none;
}
.service-icon-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(22,169,154,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: background .2s;
}
.service-icon-card:hover .service-icon-card__icon { background: rgba(22,169,154,.2); }
.service-icon-card h3 {
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 600;
  margin: 0 0 .35rem;
  color: var(--text);
}
.service-icon-card p {
  font-size: .8375rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.5;
}

/* ===== CARDS (image) ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ===== APPROACH CARDS ===== */
.approach-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
}
.approach-card__num {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .85rem;
  padding: .35rem .75rem;
  border-radius: 20px;
}
.approach-card h3 {
  font-size: 1.05rem;
  margin: .75rem 0 1rem;
  color: var(--heading);
}
.approach-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.approach-card__list li {
  font-size: .875rem;
  color: var(--text-soft);
  padding: .4rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.approach-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== EFFICIENCY CARDS ===== */
.efficiency-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.efficiency-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--heading);
  border-bottom: 2px solid var(--primary);
  padding-bottom: .6rem;
}
.efficiency-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.efficiency-card ul li {
  font-size: .875rem;
  color: var(--text-soft);
  padding: .45rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.efficiency-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card__body { padding: 1.1rem 1.25rem 1.35rem; }
.card__meta {
  font-size: .7375rem;
  font-family: var(--font-h);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--primary-dark);
  margin-bottom: .3rem;
}
.card h3 {
  font-family: var(--font-h);
  font-size: 1.025rem;
  font-weight: 600;
  margin: 0 0 .45rem;
  line-height: 1.3;
}
.card p { font-size: .9rem; color: var(--text-soft); margin: 0 0 .75rem; }
.card__link {
  font-family: var(--font-h);
  font-size: .8375rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.card__link:hover { color: var(--accent); text-decoration: none; }

/* ===== SPLIT SECTION ===== */
.split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split__img img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split__body h2 {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -.025em;
}
.split__body p { color: var(--text-soft); margin: 0 0 1.5rem; line-height: 1.7; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.feature-list li {
  display: flex;
  gap: .85rem;
  margin-bottom: .9rem;
  align-items: flex-start;
}
.feature-list__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(22,169,154,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-top: .1rem;
}
.feature-list__text strong {
  display: block;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9375rem;
  margin-bottom: .15rem;
}
.feature-list__text span { font-size: .875rem; color: var(--text-soft); }

/* ===== STATS ===== */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 1.25rem;
}
.stats-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat__label { font-size: .85rem; color: var(--text-soft); margin-top: .35rem; }

/* ===== REFERENCES ===== */
.ref-strip {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.ref-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .9rem 1.5rem;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  box-shadow: var(--shadow-xs);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
}
.faq-btn:hover { color: var(--primary-dark); }
.faq-btn__arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: transform .2s, background .2s;
  color: var(--primary-dark);
}
.faq-item.is-open .faq-btn__arrow { transform: rotate(45deg); background: var(--primary-dark); color: #fff; }
.faq-body {
  display: none;
  padding: 0 0 1.1rem;
  color: var(--text-soft);
  font-size: .9375rem;
  line-height: 1.7;
}
.faq-item.is-open .faq-body { display: block; }

/* ===== CTA BANNER ===== */
.cta-banner {
  max-width: var(--max);
  margin: 3.5rem auto;
  padding: 0 1.25rem;
}
.cta-banner__inner {
  background: linear-gradient(120deg, var(--primary-deep) 0%, var(--primary-dark) 55%, var(--primary) 100%);
  border-radius: var(--r-xl);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../deneme.jpg") center / cover no-repeat;
  opacity: .08;
}
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-h);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 .4rem;
  letter-spacing: -.02em;
}
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; font-size: .9375rem; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  /* Varsayılan görsel; sayfa içi style="background-image: url(...)" ile ezilir (url() içinde ')' güvenli) */
  background-color: var(--primary-deep);
  background-image: url("../img/tours/dest-turkey.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 7rem 1.25rem 3.75rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Daha hafif marka yeşili — fotoğraf daha görünür */
  background: linear-gradient(
    135deg,
    rgba(10, 107, 95, 0.48) 0%,
    rgba(13, 140, 126, 0.38) 45%,
    rgba(22, 169, 154, 0.32) 100%
  );
  z-index: 0;
  pointer-events: none;
}
/* Oteller ana liste (TR/EN): overlay daha şeffaf, foto daha okunur */
.page-hero.page-hero--oteller-main::after {
  background: linear-gradient(
    135deg,
    rgba(10, 107, 95, 0.3) 0%,
    rgba(13, 140, 126, 0.22) 45%,
    rgba(22, 169, 154, 0.16) 100%
  );
}
.page-hero__body { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 .6rem;
  letter-spacing: -.025em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}
.page-hero p { margin: 0; opacity: .95; max-width: 560px; font-size: 1rem; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22); }

/* ===== PROSE ===== */
.prose { max-width: 800px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.prose h2 {
  font-family: var(--font-h);
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.25rem 0 .7rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 1rem; color: var(--text-soft); }
.prose ul { padding-left: 1.25rem; margin: 0 0 1.25rem; }
.prose li { margin-bottom: .4rem; color: var(--text-soft); }

/* ===== TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}
.two-col__img img { border-radius: var(--r-xl); box-shadow: var(--shadow-md); width: 100%; }

/* ===== SERVICE TILES (hizmetlerimiz page) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.service-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
}
.service-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-tile h3 { font-family: var(--font-h); font-size: 1.025rem; font-weight: 600; margin: 0 0 .45rem; color: var(--primary-deep); }
.service-tile p { margin: 0; font-size: .9rem; color: var(--text-soft); }

/* ===== NUMBERED LIST (kurumsal page) ===== */
.numbered-list { counter-reset: item; list-style: none; padding: 0; margin: 0; }
.numbered-list li {
  position: relative;
  padding-left: 3.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: .05rem;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent);
}

/* ===== REF GRID ===== */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.ref-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  text-align: center;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}

/* ===== REFERENCE LOGO SLIDER ===== */
.ref-slider-wrap {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}
.ref-slider {
  width: 100%;
  overflow: hidden;
}
.ref-slider__track {
  display: flex;
  gap: 2.5rem;
  animation: refSlide 25s linear infinite;
  width: max-content;
}
.ref-slider__item {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: .7;
  transition: filter .3s, opacity .3s;
}
.ref-slider__item:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes refSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ref-slider:hover .ref-slider__track {
  animation-play-state: paused;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}
.contact-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-card h2 { font-family: var(--font-h); margin-top: 0; color: var(--primary-dark); font-weight: 700; font-size: 1.3rem; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 1rem; }
.contact-list strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .2rem; font-family: var(--font-h); }

/* ===== FOOTER ===== */
.site-footer {
  background: #0f1e23;
  color: rgba(255,255,255,.75);
  padding: 0;
  margin-top: auto;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 2.5rem 3rem;
  padding: 3.5rem 1.25rem 2.5rem;
}
.site-footer__col--brand .footer-logo img { max-height: 42px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; display: block; }
.site-footer h3 {
  font-family: var(--font-h);
  font-size: .875rem;
  font-weight: 700;
  margin: 0 0 .9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; font-size: .875rem; display: flex; align-items: flex-start; gap: .45rem; }
.site-footer a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.site-footer a:hover { color: var(--accent); }
.footer-desc { font-size: .875rem; line-height: 1.7; margin: 0 0 1.25rem; color: rgba(255,255,255,.6); }
.footer-contact-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .85rem; margin-bottom: .6rem; color: rgba(255,255,255,.6); }
.footer-contact-list svg { flex-shrink: 0; margin-top: .1rem; opacity: .8; color: var(--accent); }
.footer-contact-list a { color: rgba(255,255,255,.6); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-tursab { font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-social { display: flex; gap: .55rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-social__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background .15s, color .15s, border-color .15s;
}
.footer-social__icon:hover { color: #fff; border-color: transparent; }
.footer-social__icon--ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.footer-social__icon--fb:hover { background: #1877f2; }
.footer-social__icon--yt:hover { background: #ff0000; }
.footer-social__icon--wa:hover { background: #25d366; }
.footer-tursab-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .7rem 1rem;
  text-align: center;
}
.footer-tursab-badge__label { display: block; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .25rem; }
.footer-tursab-badge__no { display: block; font-size: .95rem; font-weight: 700; color: #fff; font-family: var(--font-h); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 1.25rem;
}
.site-footer__bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  gap: 1rem;
  flex-wrap: wrap;
}
/* Designer credit */
.site-footer__credit {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: .75rem 1.25rem;
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}
.site-footer__credit a {
  color: rgba(255,255,255,.4);
  transition: color .15s;
}
.site-footer__credit a:hover { color: var(--accent); }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(37,211,102,.55); text-decoration: none; }
.wa-float__logo {
  width: 50px;
  height: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.wa-float__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}
.wa-float__btn {
  background: #25d366;
  color: #fff;
  height: 50px;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1rem 0 .75rem;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
}
.wa-float__btn svg { flex-shrink: 0; }

/* ===== LAYOUT SHELL ===== */
.layout { min-height: 100vh; display: flex; flex-direction: column; }
.layout main { flex: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  body { overflow-x: hidden; }

  /* Top bar: tek satır — taşan içerik yatay kayar, iletişim satırı alta düşmez */
  .top-bar {
    padding: 0.28rem 0.65rem;
    box-sizing: border-box;
  }
  .top-bar__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
  }
  .top-bar__inner::-webkit-scrollbar {
    display: none;
  }
  .top-bar__items {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.45rem;
    font-size: clamp(0.5625rem, 2vw, 0.6875rem);
    flex: 1 1 auto;
    min-width: 0;
  }
  .top-bar__items a {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .top-bar__items a[href^="mailto:"] {
    flex: 1 1 4rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .top-bar__right {
    flex-shrink: 0;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
  }
  .top-bar__badge {
    font-size: clamp(0.5rem, 1.85vw, 0.625rem);
    padding: 0.1rem 0.4rem;
    white-space: nowrap;
  }
  .lang-switch {
    font-size: clamp(0.55rem, 1.9vw, 0.65rem);
    flex-shrink: 0;
  }

  /* Header: topbar ile çakışmayı önle (logo + slogan TR/EN/TÜRSAB hizasının üstüne binmesin) */
  .site-header {
    padding-top: calc(2.85rem + env(safe-area-inset-top, 0px));
  }

  body.nav-drawer-open {
    overflow: hidden;
  }

  .search-panel__row { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; max-width: 480px; }
  .split, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .nav-toggle {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
    align-self: center;
  }

  /* Yan panel menü — beyaz zemin, sağdan kayar */
  .nav-main {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, 300px);
    max-width: 88vw;
    margin: 0;
    padding: 0;
    padding-top: calc(2.85rem + env(safe-area-inset-top, 0px) + 3.35rem);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
    z-index: 200;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, visibility 0s linear 0.34s, box-shadow 0.32s ease;
    overflow: hidden;
    flex-basis: auto;
    order: 0;
  }
  .nav-main.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.32s ease, visibility 0s linear 0s, box-shadow 0.32s ease;
  }

  .nav-drawer-header {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.65rem 1rem 0.85rem;
    border-bottom: 1px solid var(--border);
    background: #fff;
  }
  .nav-drawer-header img {
    height: 42px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: none;
  }

  .nav-drawer-links {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.15rem 0 0.35rem;
    gap: 0;
  }
  .nav-drawer-links > a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    color: var(--text) !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.95rem 1.15rem !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
    text-decoration: none;
  }
  .nav-drawer-links > a:hover {
    color: var(--primary-dark) !important;
    background: rgba(22, 169, 154, 0.06);
    text-decoration: none;
  }
  .nav-drawer-links > a.is-active {
    color: var(--primary-dark) !important;
    border-bottom-color: var(--border) !important;
    border-left: 3px solid var(--accent);
    padding-left: calc(1.15rem - 3px) !important;
  }
  .nav-drawer-links > a.nav-cta {
    display: block !important;
    margin: 1rem 1rem 0.75rem;
    padding: 0.75rem 1rem !important;
    text-align: center;
    border-radius: var(--r) !important;
    border: none !important;
    background: var(--accent) !important;
    color: #fff !important;
  }
  .nav-drawer-links > a.nav-cta:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
  }

  .nav-drawer-footer {
    flex-shrink: 0;
    margin-top: auto;
    padding: 1rem 1rem 1.35rem;
    border-top: 1px solid var(--border);
    background: #f4f6f8;
  }
  .nav-drawer-footer__addr {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.45;
    color: var(--text-soft);
    text-align: center;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    row-gap: 0;
  }

  .site-logo {
    white-space: normal;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 7.5rem);
    gap: 0.12rem;
    align-self: center;
  }
  .site-logo__slogan {
    font-size: clamp(0.5rem, 1.85vw, 0.5625rem);
    line-height: 1.3;
    max-width: 100%;
    margin-top: 0;
    padding-top: 0.05rem;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .site-logo img { height: 38px; }

  .hero--home {
    min-height: min(100svh, 820px);
    padding: clamp(5.25rem, 14vw, 6.5rem) 1rem 4.25rem;
  }
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.45rem, 5.2vw, 2.15rem);
    padding: 0 0.15rem;
    margin-bottom: 1rem;
  }
  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    padding: 0 0.35rem;
  }
  .hero__search {
    max-width: 100%;
    margin-top: 1.35rem;
    padding: 0 0.15rem;
    box-sizing: border-box;
  }
  .hero-search-form { border-radius: 14px; }
  .hero-search-input {
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    min-width: 0;
  }
  .hero-search-btn {
    padding: 0 0.85rem;
    flex-shrink: 0;
  }

  .page-hero {
    padding: 5.75rem 1rem 2.75rem;
    box-sizing: border-box;
  }
  .page-hero h1 {
    font-size: clamp(1.35rem, 4.5vw, 2rem);
    overflow-wrap: anywhere;
  }

  .section__head h2 {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    padding: 0 0.25rem;
  }

  .dest-grid.container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .search-panel__row { grid-template-columns: 1fr; }
  .stats-strip__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; text-align: center; }
  .hero { min-height: 480px; padding-bottom: 4rem; }
  .hero--home {
    min-height: min(100svh, 760px);
    padding: 5rem 0.75rem 4.5rem;
  }
  .hero h1 { font-size: clamp(1.3rem, 6vw, 1.75rem); }
  .hero__eyebrow { font-size: 0.72rem; padding: 0.25rem 0.75rem; }
  .hero__actions { gap: 0.65rem; }
  .btn--lg { padding: 0.75rem 1.25rem; font-size: 0.9375rem; }
}
@media (min-width: 921px) {
  .nav-main {
    display: flex !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-direction: row !important;
    align-items: center !important;
    overflow: visible !important;
    flex-basis: auto !important;
    order: 0 !important;
    inset: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    transition: none !important;
  }
  .nav-drawer-links {
    display: contents;
  }
  .nav-drawer-footer {
    display: none !important;
  }
  .nav-drawer-header {
    display: none !important;
  }
}

/* ===== TOURS & HOTELS ===== */

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.filter-tab {
  padding: .45rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-family: var(--font-h);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.filter-tab:hover { color: var(--primary-dark); border-color: var(--primary); text-decoration: none; }
.filter-tab.active { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

.tour-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.tour-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tour-card__img-wrap { position: relative; }
.tour-card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; display: block; }
.tour-card__badges {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.tour-badge {
  padding: .25rem .7rem;
  border-radius: 999px;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.tour-badge--duration { background: rgba(15,23,42,.75); color: #fff; }
.tour-badge--cat { background: var(--accent); color: #fff; }
.tour-card__body { padding: 1.1rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.tour-card__date { font-size: .8rem; color: var(--text-muted); margin-bottom: .35rem; display: flex; align-items: center; gap: .3rem; }
.tour-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 600; margin: 0 0 .75rem; line-height: 1.35; flex: 1; }
.tour-card__price { font-family: var(--font-h); font-weight: 700; color: var(--accent); font-size: 1.05rem; margin-bottom: 1rem; }
.tour-card__price small { font-size: .75rem; font-weight: 500; color: var(--text-muted); }
.tour-card__actions { display: flex; gap: .5rem; }
.btn--sm { padding: .45rem .9rem; font-size: .8375rem; border-radius: 8px; }
.btn--teal { background: var(--primary-dark); color: #fff; }
.btn--teal:hover { background: var(--primary-deep); }
.btn--ghost { background: transparent; border: 1.5px solid var(--border); color: var(--text-soft); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-dark); }

.tour-detail-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tour-tab-btn {
  padding: .75rem 1.35rem;
  border: none;
  background: none;
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.tour-tab-btn.active, .tour-tab-btn:hover { color: var(--primary-dark); border-bottom-color: var(--accent); }
.tour-tab-panel { display: none; }
.tour-tab-panel.active { display: block; }

.program-day { margin-bottom: 2rem; }
.program-day__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.program-day__num {
  min-width: 36px;
  height: 36px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.program-day__title { font-family: var(--font-h); font-weight: 600; font-size: 1rem; color: var(--text); }
.program-day__body { padding-left: 3rem; color: var(--text-soft); font-size: .9375rem; line-height: 1.7; }

.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.inc-exc__block h3 { font-family: var(--font-h); font-size: .9375rem; font-weight: 600; margin: 0 0 .75rem; }
.inc-exc__block ul { list-style: none; padding: 0; margin: 0; }
.inc-exc__block li { display: flex; gap: .5rem; margin-bottom: .45rem; font-size: .9rem; color: var(--text-soft); }
.inc-exc__block li::before { content: "✓"; color: var(--primary-dark); font-weight: 700; flex-shrink: 0; }
.inc-exc--excl li::before { content: "✕"; color: #e53e3e; }

.departure-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.departure-item { background: var(--bg); border-radius: var(--r); padding: .85rem 1.1rem; display: flex; justify-content: space-between; align-items: center; }
.departure-item__name { font-family: var(--font-h); font-weight: 600; font-size: .9375rem; }
.departure-item__time { color: var(--accent); font-family: var(--font-h); font-weight: 700; font-size: .9rem; }

.price-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.price-box h3 { font-family: var(--font-h); margin: 0 0 1rem; font-size: 1rem; }
.price-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.price-table th { background: var(--bg); padding: .5rem .75rem; text-align: left; font-family: var(--font-h); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.price-table td { padding: .6rem .75rem; border-bottom: 1px solid var(--border-light); color: var(--text); }
.price-table tr:last-child td { border-bottom: none; }
.price-table .highlight { font-family: var(--font-h); font-weight: 700; color: var(--accent); }

.tour-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  padding: 1.1rem 1.35rem;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.tour-info-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.tour-info-item strong { font-family: var(--font-h); font-weight: 600; }

.hotel-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
}
.hotel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.hotel-card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.hotel-card__body { padding: 1.1rem 1.25rem 1.35rem; }
.hotel-card__stars { color: #f59e0b; font-size: .9rem; margin-bottom: .3rem; }
.hotel-card__name { font-family: var(--font-h); font-size: 1.025rem; font-weight: 600; margin: 0 0 .3rem; }
.hotel-card__loc { font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; }
.hotel-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .9rem; }
.hotel-tag { padding: .2rem .6rem; background: rgba(22,169,154,.1); color: var(--primary-deep); border-radius: 4px; font-size: .75rem; font-weight: 600; font-family: var(--font-h); }
.hotel-card__price { font-family: var(--font-h); font-weight: 700; color: var(--accent); font-size: .95rem; margin-bottom: .85rem; }
.hotel-card__actions { display: flex; gap: .5rem; }

/* Otel detay — önerilen diğer oteller (4 yan yana) */
.hotel-related-section {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
.hotel-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}
.hotel-related-grid .hotel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hotel-related-grid .hotel-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hotel-related-grid .hotel-card__actions {
  margin-top: auto;
  flex-wrap: wrap;
}
.hotel-related-all {
  text-align: center;
  margin: 1.75rem 0 0;
}
@media (max-width: 920px) {
  .hotel-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 520px) {
  .hotel-related-grid {
    grid-template-columns: 1fr;
  }
}

/* Hotel image carousel (listing cards + detail hero) */
.hotel-card__media { position: relative; border-radius: 0; overflow: hidden; }
.hotel-card .hotel-carousel__viewport { aspect-ratio: 16/10; }
.hotel-detail-carousel .hotel-carousel__viewport { aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; }
.hotel-carousel { position: relative; touch-action: pan-y; }
.hotel-carousel__viewport { position: relative; overflow: hidden; background: #0f1e23; }
.hotel-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.38s ease;
  will-change: transform;
}
.hotel-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.hotel-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.15s;
}
.hotel-carousel__btn:hover { background: #fff; }
.hotel-carousel__btn--prev { left: 0.5rem; }
.hotel-carousel__btn--next { right: 0.5rem; }
.hotel-carousel__dots {
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}
.hotel-carousel__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.hotel-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.25);
}
.hotel-carousel__counter {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 30, 35, 0.55);
  color: #fff;
  font-family: var(--font-h);
}

.hotel-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}
.hotel-feat-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem; }
.hotel-feat-block h4 { font-family: var(--font-h); font-size: .875rem; font-weight: 700; margin: 0 0 .75rem; color: var(--primary-dark); }
.hotel-feat-block ul { list-style: none; padding: 0; margin: 0; }
.hotel-feat-block li { font-size: .875rem; color: var(--text-soft); padding: .2rem 0; padding-left: 1rem; position: relative; }
.hotel-feat-block li::before { content: "·"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

.hotel-info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem 3rem; }
.hotel-info-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; }
.hotel-info-block h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin: 0 0 .85rem; color: var(--primary-dark); }
.hotel-info-block p { font-size: .9375rem; color: var(--text-soft); margin: 0; line-height: 1.7; }

@media (max-width: 700px) {
  .inc-exc { grid-template-columns: 1fr; }
  .hotel-info-row { grid-template-columns: 1fr; }
}

/* ===== TOURS SIDEBAR LAYOUT ===== */
.tours-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
.tours-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  position: sticky;
  top: 1rem;
}
.tours-sidebar__title {
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--accent);
}
.tours-sidebar__filters {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.filter-region-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: .55rem .75rem;
  border: none;
  border-radius: var(--r-md);
  background: transparent;
  font-size: .875rem;
  color: var(--text-soft);
  cursor: pointer;
  transition: background .15s, color .15s;
  font-family: var(--font-b);
}
.filter-region-btn:hover {
  background: rgba(0,128,128,.06);
  color: var(--primary);
}
.filter-region-btn.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.tours-main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.tours-main__count {
  font-size: .875rem;
  color: var(--text-muted);
  font-family: var(--font-h);
}
.filter-toggle-btn {
  display: none;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  font-size: .875rem;
  cursor: pointer;
  font-family: var(--font-h);
}
.tour-card__desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin: .25rem 0 .75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 920px) {
  .tours-layout { grid-template-columns: 1fr; }
  .tours-sidebar {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    border-radius: 0;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
  }
  .tours-sidebar.open { display: block; }
  .filter-toggle-btn { display: block; }
}

/* ===== TOUR HUB PAGE ===== */
.tour-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.tour-hub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  border-radius: var(--r-xl);
  text-decoration: none;
  color: #fff;
  transition: transform .2s, box-shadow .2s;
}
.tour-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  text-decoration: none;
  color: #fff;
}
.tour-hub-card__icon { font-size: 3rem; margin-bottom: 1rem; }
.tour-hub-card h2 { font-family: var(--font-h); font-size: 1.5rem; margin: 0 0 .75rem; }
.tour-hub-card p { font-size: .9375rem; opacity: .85; margin: 0 0 1.5rem; line-height: 1.5; }
.tour-hub-card--yurtici { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.tour-hub-card--yurtdisi { background: linear-gradient(135deg, #1e40af, #3b82f6); }
@media (max-width: 600px) {
  .tour-hub-grid { grid-template-columns: 1fr; }
}

/* ===== TOUR DETAIL ===== */
.tour-detail-cover {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-xl);
  margin-bottom: 2rem;
}
.tour-detail-content h2 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin: 2rem 0 1rem;
}
.tour-detail-content p {
  font-size: .9375rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.tour-detail-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.tour-detail-cta .btn--ghost {
  border: 1px solid var(--border);
  color: var(--primary);
}
.tour-detail-cta .btn--ghost:hover {
  background: var(--primary);
  color: #fff;
}
