/* ============================================================
   ROTA TURİZM — Ziyaretçi Stili (v2, şablonla birebir uyumlu)
   Palet: ink #10303E · sea #0E6E8C · foam #F2F7F7 · sun #F5B32F
   ============================================================ */

:root {
  --ink: #15151E;
  --ink-soft: #56565F;
  --sea: #E10600;
  --sea-deep: #B00500;
  --sea-mist: #FDE8E7;
  --foam: #F6F6F8;
  --sun: #FFC906;
  --sun-deep: #E0AE00;
  --line: #E6E6EC;
  --danger: #C0392B;
  --ok: #1E8E5A;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 36px rgba(16, 48, 62, .12);
  --shadow-sm: 0 4px 16px rgba(16, 48, 62, .08);
  --font-display: 'Bricolage Grotesque', 'Figtree', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: #fff; line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--sea); text-decoration: none; transition: color .15s; }
a:hover { color: var(--sea-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.14; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 700; }
p { text-wrap: pretty; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.muted { color: var(--ink-soft); }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.center { text-align: center; display: block; }
s { color: var(--ink-soft); font-weight: 500; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 26px; border-radius: 999px; white-space: nowrap;
  font-family: var(--font-body); font-weight: 700; font-size: .94rem;
  border: 2px solid transparent; cursor: pointer; transition: all .18s; text-align: center;
}
.btn-sea { background: var(--sea); color: #fff; }
.btn-sea:hover { background: var(--sea-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-sun { background: var(--sun); color: var(--ink); }
.btn-sun:hover { background: var(--sun-deep); color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--sea); color: var(--sea); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-lg { padding: 15px 34px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Üst menü ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 15px 22px; position: relative; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.logo:hover { color: var(--ink); }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--sea); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(225,6,0,.4);
}
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .93rem; padding: 8px 13px; border-radius: 999px; }
.main-nav a:hover { background: var(--foam); color: var(--sea); }
.main-nav a.active { background: var(--sea-mist); color: var(--sea-deep); }
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { font-weight: 700; font-size: .9rem; color: var(--ink); white-space: nowrap; }
.header-phone:hover { color: var(--sea); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.55rem; cursor: pointer; color: var(--ink); line-height: 1; }

/* ---------- Flash ---------- */
.flash { padding: 13px 0; font-weight: 600; font-size: .94rem; }
.flash-success { background: #DDF3E7; color: #135F3C; }
.flash-error { background: #FBE3E0; color: #93261B; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(920px 460px at 88% -12%, rgba(225,6,0,.5), transparent 62%),
    radial-gradient(600px 300px at 8% 110%, rgba(225,6,0,.25), transparent 60%),
    linear-gradient(118deg, #0D0D14 0%, #15151E 52%, #23232E 100%);
}
.hero::before { /* damalı bayrak şeridi */
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 14px;
  background:
    repeating-conic-gradient(#fff 0% 25%, #15151E 0% 50%) 0 0 / 28px 28px;
  opacity: .5; pointer-events: none;
}
.hero-inner { padding: 84px 22px 96px; position: relative; }
.hero-copy { max-width: 640px; margin-bottom: 44px; }
.hero .eyebrow { color: var(--sun); }
.hero h1 { margin: 12px 0 16px; color: #fff; }
.hero p { font-size: 1.12rem; color: #C9C9D2; max-width: 540px; }

.eyebrow {
  display: inline-block; font-weight: 800; font-size: .76rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sea);
}
.eyebrow-light { color: var(--sun); }

/* ---------- Bilet stili arama (signature) ---------- */
.ticket-search {
  display: grid; grid-template-columns: 1.25fr 1.25fr 1fr auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  overflow: hidden; position: relative;
}
.ticket-field { padding: 20px 24px; position: relative; border-right: 2px dashed var(--line); min-width: 0; }
.ticket-field label {
  display: block; font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sea); margin-bottom: 5px;
}
.ticket-field select, .ticket-field input {
  width: 100%; border: 0; outline: 0; background: transparent;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--ink);
}
.ticket-field input::placeholder { color: #9AB2BC; font-weight: 500; }
/* bilet perforasyon delikleri */
.ticket-field::before, .ticket-field::after {
  content: ''; position: absolute; right: -10px; width: 18px; height: 18px;
  border-radius: 50%; background: #17171F; z-index: 2;
}
.ticket-field::before { top: -10px; }
.ticket-field::after { bottom: -10px; }
.ticket-btn { border-radius: 0 !important; align-self: stretch; padding: 0 36px; font-size: 1.02rem; }

/* ---------- Bölümler ---------- */
.section { padding: 78px 0; }
.section-gap { margin-top: 60px; }
.section-foam { background: var(--foam); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink h2 { color: #fff; }
.section-head { margin-bottom: 38px; }
.section-head h2 { margin-top: 8px; }
.row-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px; flex-wrap: wrap; }

/* ---------- Kategoriler ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 16px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 16px; text-align: center; color: var(--ink); transition: all .18s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.cat-card:hover { border-color: var(--sea); box-shadow: var(--shadow-sm); transform: translateY(-4px); color: var(--ink); }
.cat-icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--sea-mist);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 8px;
}
.cat-card strong { font-family: var(--font-display); font-size: 1.02rem; }
.cat-card small { color: var(--ink-soft); font-size: .8rem; line-height: 1.4; }

/* ---------- Destinasyonlar ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dest-grid-lg { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
  display: block; isolation: isolate; background: var(--ink);
}
.dest-card-lg { aspect-ratio: 4 / 3.4; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dest-card:hover img, .dest-card:hover .dest-ph { transform: scale(1.06); }
.dest-ph {
  width: 100%; height: 100%; transition: transform .4s;
  background:
    radial-gradient(340px 200px at 78% 18%, rgba(225,6,0,.65), transparent 60%),
    linear-gradient(150deg, #33333F, #15151E);
}
.dest-overlay {
  position: absolute; inset: 0; z-index: 2; padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(185deg, transparent 42%, rgba(13, 13, 20, .9));
  color: #fff;
}
.dest-overlay strong { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -.01em; }
.dest-overlay small { color: #C9C9D4; font-weight: 600; }
.dest-sum { display: block; color: #D9D9E2; font-size: .86rem; margin-top: 6px; line-height: 1.45; }

/* ---------- Tur kartları ---------- */
.tour-grid, .tour-grid-3 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tour-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tour-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: all .18s;
}
.tour-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.tour-card-media { position: relative; display: block; aspect-ratio: 16 / 11; overflow: hidden; }
.tour-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tour-card:hover .tour-card-media img { transform: scale(1.05); }
.tour-card-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; color: rgba(255,255,255,.85);
  background:
    radial-gradient(300px 170px at 22% 16%, rgba(225,6,0,.55), transparent 55%),
    linear-gradient(150deg, #2E2E3A, #15151E);
}
.badge {
  position: absolute; top: 12px; padding: 5px 13px; border-radius: 999px;
  font-size: .74rem; font-weight: 800; z-index: 2; letter-spacing: .02em;
}
.badge-off { left: 12px; background: var(--sun); color: var(--ink); box-shadow: 0 3px 10px rgba(0,0,0,.18); }
.badge-trend { right: 12px; background: rgba(16,48,62,.9); color: #fff; backdrop-filter: blur(4px); }
.tour-card-body { padding: 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.tour-card-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
.rating { color: var(--sun-deep); font-weight: 800; white-space: nowrap; }
.rating small { color: var(--ink-soft); font-weight: 600; }
.tour-card-body h3 { font-size: 1.06rem; line-height: 1.3; }
.tour-card-body h3 a { color: var(--ink); }
.tour-card-body h3 a:hover { color: var(--sea); }
.tour-card-info { display: flex; gap: 16px; font-size: .82rem; color: var(--ink-soft); flex-wrap: wrap; }
.tour-card-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.price-tag { display: flex; flex-direction: column; line-height: 1.25; }
.price-tag s { font-size: .8rem; }
.price-tag strong { font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--sea); white-space: nowrap; }
.price-tag small { color: var(--ink-soft); font-size: .74rem; }

/* ---------- Kampanya bandı ---------- */
.campaign {
  background:
    radial-gradient(700px 320px at 88% 0%, rgba(255,201,6,.28), transparent 55%),
    linear-gradient(115deg, #8F0400, var(--sea) 70%, #FF2D27);
  color: #fff; position: relative; overflow: hidden;
}
.campaign::after {
  content: '🏎'; position: absolute; right: -18px; bottom: -42px; font-size: 11rem;
  opacity: .1; transform: rotate(-16deg); pointer-events: none;
}
.campaign-inner {
  padding: 58px 22px; display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap; position: relative; z-index: 1;
}
.campaign h2 { color: #fff; max-width: 560px; }
.campaign p { color: #FFD9D7; max-width: 540px; margin-top: 8px; }

/* ---------- Görüşler ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius); padding: 28px; position: relative;
}
.testi-card::before {
  content: '“'; position: absolute; top: 6px; left: 18px; font-family: var(--font-display);
  font-size: 4.4rem; color: var(--sun); opacity: .35; line-height: 1;
}
.testi-card p { font-size: 1.02rem; color: #E8E8EF; position: relative; }
.testi-card footer { margin-top: 18px; display: flex; flex-direction: column; }
.testi-card footer strong { color: var(--sun); font-family: var(--font-display); }
.testi-card footer span { color: #9C9CA8; font-size: .84rem; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: all .18s; color: var(--ink);
}
.blog-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); color: var(--ink); }
.blog-card img, .blog-ph { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.blog-ph {
  background:
    radial-gradient(260px 150px at 75% 20%, rgba(225,6,0,.25), transparent 55%),
    linear-gradient(150deg, #E2E2EA, #F4F4F8);
}
.blog-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 7px; }
.blog-card-body small { color: var(--ink-soft); font-weight: 600; font-size: .8rem; }
.blog-card-body h3 { font-size: 1.06rem; line-height: 1.32; }
.blog-card-body p { font-size: .9rem; }
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  padding: 8px 18px; border-radius: 999px; border: 1px solid var(--line);
  font-size: .87rem; font-weight: 700; color: var(--ink); background: #fff; transition: all .15s;
}
.chip:hover { border-color: var(--sea); color: var(--sea); }
.chip.active { background: var(--sea); border-color: var(--sea); color: #fff; }
.post-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.post-cover img { width: 100%; max-height: 460px; object-fit: cover; }

/* ---------- Sayfa hero ---------- */
.page-hero {
  background:
    radial-gradient(700px 320px at 90% -20%, rgba(225,6,0,.45), transparent 60%),
    linear-gradient(118deg, #0D0D14, #15151E 58%, #262631);
  color: #fff; padding: 52px 0 56px;
}
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.page-hero p { color: #BDBDC7; margin-top: 8px; }
.crumbs { display: block; font-size: .84rem; color: #9A9AA6; margin-bottom: 10px; font-weight: 600; }
.crumbs a { color: var(--sun); }

/* ---------- Tur listeleme ---------- */
.listing-layout { display: grid; grid-template-columns: 272px 1fr; gap: 32px; align-items: start; }
.filters {
  background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; position: sticky; top: 86px;
}
.filters h3 { margin-bottom: 4px; }
.filters label { display: block; font-size: .78rem; font-weight: 800; color: var(--ink-soft); margin: 15px 0 5px; letter-spacing: .02em; }
.filters select, .filters input {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px;
  font-family: var(--font-body); font-size: .92rem; background: #fff; color: var(--ink);
}
.filters select:focus, .filters input:focus { outline: 2px solid var(--sea); border-color: var(--sea); }
.filters .btn { margin-top: 14px; }
.filters .btn + .btn { margin-top: 8px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---------- Sayfalama ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; padding: 0 13px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; border: 1px solid var(--line); color: var(--ink); font-weight: 700; background: #fff;
}
.pagination a:hover { border-color: var(--sea); color: var(--sea); }
.pagination a.active, .pagination .active { background: var(--sea); color: #fff; border-color: var(--sea); }

/* ---------- Tur detay ---------- */
.detail-layout { display: grid; grid-template-columns: 1fr 350px; gap: 36px; align-items: start; }
.detail-main h2 { margin: 34px 0 14px; font-size: 1.45rem; }
.detail-main h2:first-of-type { margin-top: 30px; }
.gallery-main {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.gallery-ph {
  aspect-ratio: 16 / 9; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,.85);
  background:
    radial-gradient(400px 220px at 24% 18%, rgba(225,6,0,.55), transparent 55%),
    linear-gradient(150deg, #2E2E3A, #15151E);
}
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 96px; height: 66px; object-fit: cover; border-radius: 9px;
  cursor: pointer; border: 2px solid transparent; transition: all .15s;
}
.gallery-thumbs img:hover { border-color: var(--sea); transform: translateY(-2px); }

.gallery { margin-bottom: 36px; }

/* ---------- Hero galeri grid + lightbox ---------- */
.hero-gallery-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 10px; height: 420px; margin-bottom: 6px; }
.hgg-col-small { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; height: 100%; }
.hgg-thumb, .hgg-main, .hgg-last {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--foam);
}
.hgg-thumb img, .hgg-main img, .hgg-last img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.hgg-thumb:hover img, .hgg-main:hover img, .hgg-last:hover img { transform: scale(1.06); }
.hgg-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,16,.35);
}
.hgg-play span {
  width: 58px; height: 58px; border-radius: 50%; background: #fff; color: var(--sea);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; box-shadow: var(--shadow-sm);
}
.hgg-more {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center;
  background: rgba(10,10,16,.6); color: #fff; font-weight: 700; font-size: .95rem; padding: 10px;
}
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,16,.94); z-index: 999;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0;
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 900px) {
  .hero-gallery-grid { height: auto; grid-template-columns: 1fr 1fr; }
  .hgg-col-small { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-column: span 2; }
  .hgg-col-small .hgg-thumb, .hgg-main, .hgg-last { aspect-ratio: 4 / 3; }
}
.ticket-budget input::-webkit-outer-spin-button, .ticket-budget input::-webkit-inner-spin-button { -webkit-appearance: none; }

.rich { color: #2B4552; }
.rich p { margin-bottom: 12px; }
.rich ul, .rich ol { margin: 0 0 12px 22px; }

.itinerary { display: grid; gap: 0; position: relative; }
.it-day {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  padding: 0 0 26px; position: relative; align-items: start;
}
.it-day:last-child { padding-bottom: 0; }
.it-day::before {
  content: ''; position: absolute; left: 25px; top: 44px; bottom: 0;
  width: 2px; background: repeating-linear-gradient(180deg, var(--line) 0 6px, transparent 6px 12px);
}
.it-day:last-child::before { display: none; }
.it-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--sea-mist); color: var(--sea-deep); font-weight: 800;
  font-size: .92rem; border-radius: 50%; white-space: nowrap;
  font-family: var(--font-display); position: relative; z-index: 1;
  border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line);
}
.it-day:first-child .it-num, .it-day:last-child .it-num { background: var(--sun); color: var(--ink); }
.it-day strong { font-family: var(--font-display); font-size: 1.05rem; display: block; margin-top: 4px; }
.it-day p { color: var(--ink-soft); font-size: .94rem; margin-top: 6px; }

.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
.inc-exc > div { background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.inc-exc h3 { margin-bottom: 12px; font-size: 1.02rem; }
.list-check, .list-x { list-style: none; display: grid; gap: 9px; font-size: .93rem; }
.list-check li { padding-left: 26px; position: relative; }
.list-check li::before { content: '✓'; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.list-x li { padding-left: 26px; position: relative; }
.list-x li::before { content: '✕'; position: absolute; left: 0; color: var(--danger); font-weight: 800; }

.review { display: flex; gap: 14px; border-bottom: 1px solid var(--line); padding: 20px 0; }
.review:last-of-type { border-bottom: 0; }
.review-avatar {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--sea);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-display); font-size: 1.1rem;
}
.review-content { flex: 1; min-width: 0; }
.review-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 5px; flex-wrap: wrap; }
.review-head strong { font-family: var(--font-display); }
.review-head span.muted { font-size: .82rem; font-weight: 600; }
.stars { color: var(--sun-deep); letter-spacing: 2px; font-size: .92rem; }
.review p { font-size: .95rem; }
.review-toggle-wrap { margin: 24px 0; }

/* ---------- Rezervasyon kutusu ---------- */
.booking-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 26px; position: sticky; top: 86px;
}
.price-big { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; padding-bottom: 16px; border-bottom: 2px dashed var(--line); }
.price-big strong { font-family: var(--font-display); font-weight: 800; font-size: 1.85rem; color: var(--sea); }
.price-big s { font-size: .98rem; }
.price-big small { color: var(--ink-soft); }
.booking-box label { display: block; font-size: .76rem; font-weight: 800; color: var(--ink-soft); margin: 13px 0 5px; letter-spacing: .03em; text-transform: uppercase; }
.booking-box select, .booking-box input, .booking-box textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px;
  font-family: var(--font-body); font-size: .93rem; color: var(--ink); background: #fff;
}
.booking-box select:focus, .booking-box input:focus, .booking-box textarea:focus { outline: 2px solid var(--sea); border-color: var(--sea); }
.booking-box .btn { margin-top: 18px; }
.booking-box small.muted { display: block; margin-top: 10px; font-size: .78rem; line-height: 1.5; }
.booking-contact {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  text-align: center; font-size: .9rem; font-weight: 600;
}
.booking-contact a { font-weight: 800; }

/* ---------- Form / kart ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.form-card { box-shadow: var(--shadow-sm); margin-top: 24px; }
.form-card h3 { margin-bottom: 6px; }
.form-card label { display: block; font-size: .8rem; font-weight: 800; color: var(--ink-soft); margin: 14px 0 5px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: 2px solid var(--sea); border-color: var(--sea); }
.form-card .btn { margin-top: 18px; }

/* ---------- Kenar kutuları ---------- */
.sidebar-box { background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-box h3 { margin-bottom: 12px; font-size: 1.05rem; }
.side-link { display: block; padding: 10px 0; border-bottom: 1px dashed var(--line); font-weight: 600; font-size: .92rem; color: var(--ink); }
.side-link:hover { color: var(--sea); }
.side-link:last-child { border-bottom: 0; }
.side-cta {
  background: linear-gradient(135deg, #15151E, #3A0503);
  color: #fff; border-radius: var(--radius); padding: 26px; text-align: center;
}
.side-cta strong { font-family: var(--font-display); font-size: 1.12rem; display: block; margin-bottom: 6px; }
.side-cta a { color: var(--sun); font-weight: 800; }

/* ---------- Başarı & boş durum ---------- */
.success-box { text-align: center; max-width: 580px; margin: 0 auto; padding: 30px 0; }
.success-icon {
  width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%;
  background: #DDF3E7; color: var(--ok); font-size: 2.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.success-box h1 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: 12px; }
.success-box p { margin-bottom: 12px; }
.success-box .btn { margin-top: 14px; }
.code-box {
  font-family: var(--font-display); background: var(--foam);
  border: 2px dashed var(--sea); border-radius: var(--radius);
  padding: 18px; margin: 22px 0; color: var(--ink); font-size: .95rem;
}
.code-box strong { font-size: 1.7rem; letter-spacing: .1em; color: var(--sea); }
.empty {
  text-align: center; color: var(--ink-soft); padding: 56px 22px;
  background: var(--foam); border: 1px dashed var(--line); border-radius: var(--radius);
}

/* ---------- Tur detay: yeni bölümler ---------- */
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.hchip {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #E4E4EC; padding: 6px 14px; border-radius: 999px; font-size: .84rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.hchip-sun { background: var(--sun); border-color: var(--sun); color: var(--ink); font-weight: 800; }

.hero-price-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.hero-location-rating { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: #E4E4EC; font-size: .92rem; font-weight: 600; }
.hero-location-rating .stars { color: var(--sun); }
.hero-actions { display: flex; gap: 10px; }
.hero-actions button {
  display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  color: #fff; padding: 9px 16px; border-radius: 999px; font-size: .86rem; font-weight: 700; cursor: pointer; transition: all .15s;
  font-family: var(--font-body);
}
.hero-actions button:hover { background: rgba(255,255,255,.18); }
.hero-actions button.fav-active { background: var(--sea); border-color: var(--sea); }
.hero-share-toast { position: relative; }
.hero-share-toast::after {
  content: 'Bağlantı kopyalandı'; position: absolute; bottom: 120%; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: .74rem; padding: 5px 10px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.hero-share-toast.show-toast::after { opacity: 1; }

.trip-info {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.trip-info-item { display: flex; gap: 12px; align-items: flex-start; }
.tii-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px; background: #fff;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.trip-info-item small { display: block; color: var(--ink-soft); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.trip-info-item strong { font-size: .9rem; line-height: 1.3; display: block; }

.highlights { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.highlights li { padding-left: 30px; position: relative; font-size: .95rem; }
.highlights li::before {
  content: '★'; position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 50%; background: var(--sun);
  color: var(--ink); font-size: .68rem; display: flex; align-items: center; justify-content: center;
}

.plan, .faq { display: grid; gap: 12px; }
.plan-day, .faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.plan-day summary, .faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; font-weight: 600; user-select: none;
}
.plan-day summary::-webkit-details-marker, .faq-item summary::-webkit-details-marker { display: none; }
.plan-day summary:hover, .faq-item summary:hover { background: var(--foam); }
.plan-num {
  flex-shrink: 0; background: var(--sea-mist); color: var(--sea-deep);
  font-family: var(--font-display); font-weight: 800; font-size: .78rem;
  border-radius: 999px; padding: 6px 12px; white-space: nowrap;
}
.plan-day strong { font-family: var(--font-display); font-size: 1rem; }
.plan-arrow { margin-left: auto; color: var(--ink-soft); transition: transform .2s; font-size: .85rem; }
.plan-day[open] .plan-arrow, .faq-item[open] .plan-arrow { transform: rotate(180deg); }
.plan-day p, .faq-item p { padding: 0 20px 18px; color: var(--ink-soft); font-size: .95rem; }
.plan-day[open] summary { border-bottom: 1px dashed var(--line); margin-bottom: 14px; }
.faq-item summary { font-family: var(--font-display); font-size: .98rem; }
.faq-q-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--sea-mist);
  color: var(--sea-deep); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; font-family: var(--font-display);
}

.map-embed, .video-embed {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9; background: var(--foam);
}
.map-embed iframe, .video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.review-summary {
  display: grid; grid-template-columns: 160px 1fr; gap: 26px; align-items: center;
  background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; margin-bottom: 10px;
}
.rs-score { text-align: center; }
.rs-score strong { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--sea); display: block; line-height: 1; }
.rs-score .stars { display: block; margin: 6px 0 4px; }
.rs-score small { color: var(--ink-soft); font-weight: 600; }
.rs-bars { display: grid; gap: 7px; }
.rs-row { display: grid; grid-template-columns: 38px 1fr 30px; gap: 10px; align-items: center; font-weight: 700; color: var(--ink-soft); }
.rs-track { height: 9px; background: #fff; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.rs-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--sun), var(--sun-deep)); border-radius: 999px; }

.policy-box { background: #FFF8E8; border-color: #F2E2B8; }

@media (max-width: 900px) {
  .trip-info { grid-template-columns: 1fr 1fr; }
  .review-summary { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .trip-info { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: #101017; color: #A6A6B2; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 38px;
  padding: 62px 22px 44px;
}
.footer-logo { color: #fff; margin-bottom: 14px; }
.footer-text { font-size: .92rem; line-height: 1.6; }
.footer-grid h4 { color: #fff; margin-bottom: 16px; font-size: .98rem; }
.footer-grid a { display: block; color: #A6A6B2; padding: 5px 0; font-size: .92rem; }
.footer-grid a:hover { color: var(--sun); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .82rem; color: #D4D4DE; padding: 0 !important;
}
.socials a:hover { background: var(--sun); border-color: var(--sun); color: var(--ink); }
.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input {
  flex: 1; min-width: 0; padding: 12px 14px; border-radius: 10px; border: 0;
  font-family: var(--font-body); font-size: .92rem;
}
.newsletter .btn { flex-shrink: 0; }
.footer-contact { margin-top: 18px; font-size: .88rem; line-height: 2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .84rem; text-align: center; color: #7B7B88; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .tour-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .ticket-search { grid-template-columns: 1fr 1fr; }
  .ticket-btn { grid-column: 1 / -1; padding: 17px; }
  .ticket-field::before, .ticket-field::after { display: none; }
  .ticket-field { border-right: 0; border-bottom: 2px dashed var(--line); }
  .listing-layout, .detail-layout { grid-template-columns: 1fr; }
  .filters, .booking-box { position: static; }
  .tour-grid, .tour-grid-3, .testi-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid, .dest-grid-lg { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone { display: none; }
}
@media (max-width: 640px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 14px 18px 20px; gap: 4px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); margin: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .hero-inner { padding: 58px 22px 72px; }
  .ticket-search { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .tour-grid, .tour-grid-3, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .dest-grid, .dest-grid-lg { grid-template-columns: 1fr; }
  .inc-exc { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 46px; }
  .campaign-inner { padding: 44px 22px; }
  .it-day { grid-template-columns: 1fr; gap: 8px; }
  .it-num { justify-self: start; }
  .row-between { align-items: flex-start; flex-direction: column; }
}

/* ---------- WhatsApp sabit buton ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff; font-weight: 800; font-size: .92rem;
  padding: 13px 20px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .18s, box-shadow .18s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); color: #fff; box-shadow: 0 14px 34px rgba(37,211,102,.55); }
.wa-float svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-float span { display: none; }
}
