*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #0071C2;
  --teal-hover: #005fa3;
  --teal-light: #EBF3FB;
  --red: #E8001C;
  --red-hover: #c0001a;
  --dark: #1A1A2E;
  --text: #1a1a2e;
  --text-mid: #444;
  --text-muted: #888;
  --border: #e0e0e0;
  --bg: #F5F5F5;
  --white: #FFFFFF;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.09);
  --card-shadow-hover: 0 6px 24px rgba(0,0,0,0.13);
  --max-w: 1200px;
  --radius: 4px;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Roboto", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER — Booking.com style, turkuaz ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #00848F;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* ── ROW 1: Logo + sağ araçlar ── */
.header-top {
  padding: 0.55rem 0;
}
.header-top .container {
  display: flex; align-items: center; gap: 0.5rem;
}
.header-logo {
  text-decoration: none;
  display: flex; align-items: baseline; gap: 0;
  flex-shrink: 0; margin-right: 1rem;
}
.logo-main {
  font-family: "Roboto Slab", serif;
  font-size: 1.6rem; font-weight: 700;
  color: white; line-height: 1; letter-spacing: -0.5px;
}
.logo-main span { color: #FFD700; }
.logo-dot {
  font-family: "Roboto Slab", serif;
  font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,0.8);
}
.header-top-right {
  margin-left: auto;
  display: flex; align-items: center; gap: 0.15rem;
}
.header-tool {
  display: flex; align-items: center; gap: 0.3rem;
  color: white; font-size: 0.82rem; font-weight: 500;
  padding: 0.42rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap; text-decoration: none;
  border: none; background: transparent;
  font-family: "Roboto", sans-serif;
}
.header-tool:hover { background: rgba(255,255,255,0.18); }
.header-divider {
  width: 1px; height: 22px;
  background: rgba(255,255,255,0.3);
  margin: 0 0.3rem; flex-shrink: 0;
}
.header-list-prop {
  font-size: 0.82rem; font-weight: 500;
  color: white; text-decoration: none;
  padding: 0.42rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s;
  white-space: nowrap;
}
.header-list-prop:hover { background: rgba(255,255,255,0.18); }
.header-btn-outline {
  font-size: 0.82rem; font-weight: 600;
  color: white; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.header-btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: white;
}
.header-btn-solid {
  font-size: 0.82rem; font-weight: 700;
  color: #00848F; text-decoration: none;
  background: white;
  border-radius: 4px;
  padding: 0.42rem 0.9rem;
  transition: background 0.15s;
  white-space: nowrap;
  border: 1.5px solid white;
}
.header-btn-solid:hover { background: #f0fafa; }

/* ── ROW 2: Sekme menüsü ── */
.header-nav {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.header-nav .container { padding: 0 20px; }
.header-tabs { display: flex; gap: 0; }
.header-tab {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 1.1rem 0.55rem;
  font-size: 0.83rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border: 2px solid transparent;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 0.15s;
  position: relative;
}
.header-tab svg { flex-shrink: 0; }
.header-tab:hover {
  color: white;
  background: rgba(255,255,255,0.12);
}
.header-tab.active {
  color: white;
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  border-bottom-color: transparent;
  font-weight: 700;
}
.header-tab.active::after {
  content: "";
  position: absolute; bottom: -2px; left: -2px; right: -2px;
  height: 2px;
  background: #00848F;
}
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: white; padding: 0.4rem;
}

/* ── SHARED BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem; font-weight: 500;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  cursor: pointer; border: none;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal-light); }
.btn-primary { background: var(--teal); color: white; border: 1.5px solid var(--teal); }
.btn-primary:hover { background: var(--teal-hover); }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-hover); }

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, #00848F 0%, #00727C 100%);
  padding: 3.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1541432901042-2d8bd64b4a9b?w=1600&q=70") center/cover no-repeat;
  opacity: 0.18;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 20px;
  position: relative; z-index: 1;
}
.hero-title {
  font-family: "Roboto Slab", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.hero-title span { color: #FFD700; }
.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 560px;
}

/* ── SEARCH BOX ── */
.search-box {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  margin-bottom: 0;
}
.search-box-title {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.85rem;
}
.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0;
  border: 2px solid #FFD700;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.search-field {
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--border);
  background: white;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal); margin-bottom: 0.3rem;
}
.search-field select, .search-field input {
  width: 100%; border: none; outline: none;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text);
  background: transparent;
  appearance: none; cursor: pointer;
}
.search-submit {
  background: var(--red); color: white; border: none;
  padding: 0 2rem; cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.5rem;
  transition: background 0.15s;
}
.search-submit:hover { background: var(--red-hover); }

/* Stats bar */
.hero-stats-bar {
  display: flex; gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {
  padding: 0.9rem 2rem 0.9rem 0;
  margin-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 1.4rem; font-weight: 700; color: #FFD700;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.55);
  margin-top: 0.15rem;
}

/* ── BREADCRUMB / FILTERS BAR ── */
.filters-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.filters-bar .container {
  display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
}
.filter-chip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.8rem; font-weight: 500;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white; color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.filter-chip.active { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.filters-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-right: 0.25rem; }

/* ── MAIN LAYOUT ── */
.main-section { padding: 2rem 0; }
.main-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ── SIDEBAR FILTERS ── */
.sidebar { display: flex; flex-direction: column; gap: 1rem; }
.filter-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.filter-card-header {
  padding: 0.85rem 1rem;
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  background: #fafafa;
  display: flex; justify-content: space-between; align-items: center;
}
.filter-card-body { padding: 0.85rem 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.filter-option {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-mid);
  cursor: pointer;
}
.filter-option input[type="checkbox"] {
  width: 15px; height: 15px; accent-color: var(--teal); cursor: pointer;
}
.filter-option-count {
  margin-left: auto;
  font-size: 0.75rem; color: var(--text-muted);
  background: #f0f0f0; padding: 0.1rem 0.4rem; border-radius: 10px;
}
.price-range {
  display: flex; gap: 0.5rem; align-items: center;
}
.price-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.6rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem; color: var(--text);
  outline: none;
}
.price-input:focus { border-color: var(--teal); }
.filter-btn-apply {
  width: 100%; padding: 0.6rem;
  background: var(--teal); color: white; border: none;
  border-radius: var(--radius); cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem; font-weight: 700;
  margin-top: 0.4rem;
  transition: background 0.15s;
}
.filter-btn-apply:hover { background: var(--teal-hover); }

/* ── TOUR LISTINGS ── */
.listings-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap; gap: 0.75rem;
}
.listings-count {
  font-size: 0.9rem; color: var(--text-mid);
}
.listings-count strong { color: var(--text); }
.sort-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.75rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem; color: var(--text);
  outline: none; cursor: pointer;
  background: white;
}
.sort-select:focus { border-color: var(--teal); }
.tour-list { display: flex; flex-direction: column; gap: 1rem; }

/* Tour Card — horizontal list style like Booking.com */
.tour-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  transition: box-shadow 0.2s;
  position: relative;
}
.tour-card:hover { box-shadow: var(--card-shadow-hover); }
.tour-card-img {
  flex: 0 0 260px;
  position: relative; overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.tour-card:hover .tour-card-img img { transform: scale(1.05); }
.tour-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.tour-badge.region { background: var(--teal); color: white; }
.tour-badge.featured { background: #E8A000; color: white; }
.tour-badge.sale { background: var(--red); color: white; }
.quota-badge {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 0.68rem; font-weight: 700;
  background: rgba(232,0,28,0.9); color: white;
  padding: 0.2rem 0.5rem; border-radius: 2px;
}
.tour-card-body {
  flex: 1; padding: 1.1rem 1.25rem;
  display: flex; flex-direction: column;
}
.tour-card-header { display: flex; justify-content: space-between; gap: 1rem; }
.tour-card-title {
  font-family: "Roboto Slab", serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--teal); line-height: 1.3;
  text-decoration: none;
}
.tour-card-title:hover { text-decoration: underline; }
.wishlist-btn {
  flex-shrink: 0; background: none; border: none;
  cursor: pointer; color: var(--text-muted);
  padding: 0.2rem; transition: color 0.15s;
}
.wishlist-btn:hover { color: var(--red); }
.tour-card-meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin: 0.5rem 0;
  font-size: 0.8rem; color: var(--text-muted);
}
.tour-meta-item { display: flex; align-items: center; gap: 0.3rem; }
.tour-meta-item svg { color: var(--teal); }
.tour-rating {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin: 0.3rem 0 0.6rem;
}
.rating-score {
  background: var(--teal); color: white;
  font-size: 0.82rem; font-weight: 700;
  padding: 0.2rem 0.45rem; border-radius: 3px 3px 3px 0;
}
.rating-label { font-size: 0.8rem; font-weight: 500; color: var(--text-mid); }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }
.tour-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.tour-tag {
  font-size: 0.72rem; padding: 0.15rem 0.5rem;
  border: 1px solid var(--border); border-radius: 2px;
  color: var(--text-muted); background: #fafafa;
}
.tour-card-footer {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}
.tour-dates-preview {
  font-size: 0.78rem; color: var(--text-muted);
}
.tour-dates-preview strong { color: var(--text-mid); font-weight: 500; }
.tour-price-block { text-align: right; }
.tour-price-label { font-size: 0.72rem; color: var(--text-muted); }
.tour-price {
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark); line-height: 1;
}
.tour-price-sub { font-size: 0.72rem; color: var(--text-muted); }
.btn-book {
  background: var(--red); color: white;
  border: none; cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem; font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}
.btn-book:hover { background: var(--red-hover); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--teal-light);
  border-top: 1px solid #d0e8f5;
  border-bottom: 1px solid #d0e8f5;
  padding: 1rem 0;
}
.trust-bar .container {
  display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 500; color: var(--teal-hover);
}
.trust-item svg { color: var(--teal); }

/* ── DESTINATIONS ── */
.destinations-section { padding: 2.5rem 0; background: white; }
.section-title {
  font-family: "Roboto Slab", serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.3rem;
}
.section-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.dest-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  height: 160px;
}
.dest-card.large { grid-column: span 2; height: 200px; }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
}
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.85rem;
}
.dest-name {
  font-weight: 700; color: white;
  font-size: 1rem; line-height: 1.2;
}
.dest-card.large .dest-name { font-size: 1.3rem; }
.dest-count { font-size: 0.72rem; color: rgba(255,255,255,0.75); margin-top: 0.15rem; }

/* ── WHY US ── */
.why-section { padding: 2.5rem 0; background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.85rem;
  color: var(--teal);
}
.why-title { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.why-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 2.5rem 0; background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.t-header { display: flex; justify-content: space-between; margin-bottom: 0.75rem; }
.t-score {
  background: var(--teal); color: white;
  font-size: 0.9rem; font-weight: 700;
  padding: 0.3rem 0.55rem; border-radius: 3px 3px 3px 0;
  align-self: flex-start;
}
.t-stars { color: #FFB700; font-size: 0.85rem; }
.t-text { font-size: 0.85rem; line-height: 1.65; color: var(--text-mid); margin-bottom: 0.85rem; font-style: italic; }
.t-author { font-size: 0.78rem; font-weight: 700; color: var(--text-mid); }
.t-location { font-size: 0.72rem; color: var(--text-muted); }
.t-tour { font-size: 0.72rem; color: var(--teal); margin-top: 0.3rem; }

/* ── BLOG ── */
.blog-section { padding: 2.5rem 0; background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: var(--card-shadow-hover); }
.blog-img { height: 170px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1rem; }
.blog-cat {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal); margin-bottom: 0.4rem;
}
.blog-title {
  font-size: 0.92rem; font-weight: 700;
  color: var(--dark); line-height: 1.4;
  margin-bottom: 0.4rem;
}
.blog-excerpt { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.85rem; padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
  font-size: 0.75rem; color: var(--text-muted);
}
.blog-read { color: var(--teal); text-decoration: none; font-weight: 500; }
.blog-read:hover { text-decoration: underline; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--teal);
  padding: 2.5rem 0;
}
.newsletter-inner {
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: 0 20px;
}
.newsletter-inner h2 {
  font-family: "Roboto Slab", serif;
  font-size: 1.4rem; font-weight: 700;
  color: white; margin-bottom: 0.4rem;
}
.newsletter-inner p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-input {
  flex: 1; padding: 0.75rem 1rem;
  border: none; border-radius: var(--radius) 0 0 var(--radius);
  font-family: "Roboto", sans-serif; font-size: 0.9rem;
  outline: none;
}
.newsletter-btn {
  background: var(--dark); color: white; border: none;
  padding: 0.75rem 1.5rem; cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem; font-weight: 700;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background 0.15s;
}
.newsletter-btn:hover { background: #2d2d4e; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 3rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2rem;
}
.footer-brand .logo-text {
  font-family: "Roboto Slab", serif;
  font-size: 1.2rem; font-weight: 700; color: white;
  margin-bottom: 0.75rem; display: block;
}
.footer-brand .logo-text span { color: #FFD700; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1rem; }
.footer-contact-item {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.footer-contact-item svg { color: #FFD700; flex-shrink: 0; margin-top: 2px; }
.footer-heading {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 0.75rem;
}
.tursab-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.65rem; border-radius: var(--radius);
}
.tursab-badge svg { color: #FFD700; }

/* ── WHATSAPP ── */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 24px; height: 24px; fill: white; }

/* ── COOKIE BANNER (GDPR/KVKK) ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: #1a1a2e;
  border-top: 3px solid var(--teal);
  padding: 1.1rem 0;
  transform: translateY(100%);
  animation: slideUp 0.4s 1.8s forwards;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
@keyframes slideUp { to { transform: translateY(0); } }
.cookie-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-content { display: flex; align-items: flex-start; gap: 0.85rem; flex: 1; min-width: 280px; }
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text-block strong { font-size: 0.88rem; color: white; display: block; margin-bottom: 0.3rem; }
.cookie-text-block p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.cookie-text-block a { color: #FFD700; text-decoration: none; }
.cookie-text-block a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
.cookie-btn {
  font-size: 0.78rem; font-weight: 600; padding: 0.5rem 1rem;
  border-radius: 4px; border: none; cursor: pointer;
  font-family: "Roboto", sans-serif; transition: all 0.15s;
  white-space: nowrap;
}
.cookie-btn.accept { background: var(--teal); color: white; }
.cookie-btn.accept:hover { background: var(--teal-hover); }
.cookie-btn.decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn.decline:hover { background: rgba(255,255,255,0.18); }
.cookie-btn.settings { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.15); }
.cookie-btn.settings:hover { color: white; border-color: rgba(255,255,255,0.4); }

/* Cookie Modal */
.cookie-modal {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(3px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.cookie-modal.open { display: flex; }
.cookie-modal-box {
  background: white; border-radius: 8px;
  width: 100%; max-width: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}
.cookie-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid #eee;
}
.cookie-modal-header h3 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.cookie-modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: #888; padding: 0.2rem 0.4rem;
  border-radius: 3px; transition: background 0.15s;
}
.cookie-modal-close:hover { background: #f0f0f0; color: var(--dark); }
.cookie-modal-body { padding: 1.2rem 1.4rem; }
.cookie-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.9rem 0; border-bottom: 1px solid #f0f0f0; gap: 1rem;
}
.cookie-row:last-child { border-bottom: none; }
.cookie-row-title { font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 0.25rem; }
.cookie-required {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  color: var(--teal); background: var(--teal-light);
  padding: 0.1rem 0.45rem; border-radius: 3px; margin-left: 0.4rem;
}
.cookie-row-desc { font-size: 0.78rem; color: #888; line-height: 1.5; }
.cookie-toggle { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; cursor: pointer; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; inset: 0; background: #ccc; border-radius: 24px;
  transition: background 0.2s;
}
.cookie-slider::before {
  content: ""; position: absolute;
  width: 18px; height: 18px; left: 3px; top: 3px;
  background: white; border-radius: 50%; transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-slider { background: var(--teal); }
.cookie-toggle input:checked + .cookie-slider::before { transform: translateX(18px); }
.cookie-toggle.disabled { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-footer {
  display: flex; gap: 0.75rem; justify-content: flex-end;
  padding: 1rem 1.4rem; border-top: 1px solid #eee;
  background: #fafafa;
}
.cookie-modal-footer .cookie-btn.decline { background: #f0f0f0; color: var(--text-mid); border: 1px solid #ddd; }

/* Mobile cookie */
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .dest-card.large { height: 200px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-tabs { display: none; }
  .header-nav { display: none; }
  .hamburger { display: flex !important; }
  .header-top-right .header-tool:not(:last-of-type) { display: none; }
}
@media (max-width: 768px) {
  .tour-card { flex-direction: column; }
  .tour-card-img { flex: none; height: 200px; }
  .search-fields { grid-template-columns: 1fr; }
  .search-submit { padding: 0.9rem; justify-content: center; }
  .hero-stats-bar { display: none; }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .dest-card.large { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-radius: var(--radius); }
  .newsletter-btn { border-radius: var(--radius); }
}
